
From nobody Sun Sep  1 16:57: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 347FB1200E5 for <quic-issues@ietfa.amsl.com>; Sun,  1 Sep 2019 16:57:13 -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 BcpUU94HhzYn for <quic-issues@ietfa.amsl.com>; Sun,  1 Sep 2019 16:57: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 C78191200E0 for <quic-issues@ietf.org>; Sun,  1 Sep 2019 16:57:11 -0700 (PDT)
Date: Sun, 01 Sep 2019 16:57:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567382230; bh=toDg1t0ZaNpJ250Z/V/KUKxp42ANXeB9elSHYhxED6M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=q/4z8cwW8kIqI9ethaieq0ZxT7eiMRDaYWFODvz1SCOp+1hyOYVJ7CEOJJCwgnapH 1VmTO/c0Tunsynkr9dTKcOCwT9T2UTKV9WIsHxCefIQzUM1OlH9mNA0utdRFv1N2ny WaGa6Ljz3ZXoh2rLcOPmudUyDVm2Aj89sGP2seEM=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4OY6E7GTN5DPFMX2V3PGGVNEVBNHHBZ7DTNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2996/c526964033@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2996@github.com>
References: <quicwg/base-drafts/pull/2996@github.com>
Subject: Re: [quicwg/base-drafts] Collapse frame errors into HTTP_FRAME_ERROR (#2996)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6c5ad6b54ed_1cd43fc46f6cd96415088c"; 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/vSUEERxSj0xEpEQ5kVuS0Q_Ydq8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 01 Sep 2019 23:57:13 -0000

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

Even though I am happy to see UNEXPECTED_FRAME and WRONG_STREAM errors getting merged, I am not sure if I like the idea of merging them with FRAME_ERROR.

FRAME_ERROR has been a code that indicates a syntactic error, implying that there is an issue in the frame encoder / parser. The other two error codes are semantic errors of specific type. I think having these two classes of errors indicated clearly helps us resolve issues quickly.

Compared to that, I am not sure if there is any practical advantage in unifying these two classes of errors. I'd assume that all HTTP/3 stacks would have a piece of code decodes a frame (or a varint) and another piece of code that checks if the ID (or the stream that carried the frame) is correct - to paraphrase, the two classes of errors are raised from different locations. Then, what's the problem with using different codes?

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

<p>Even though I am happy to see UNEXPECTED_FRAME and WRONG_STREAM errors getting merged, I am not sure if I like the idea of merging them with FRAME_ERROR.</p>
<p>FRAME_ERROR has been a code that indicates a syntactic error, implying that there is an issue in the frame encoder / parser. The other two error codes are semantic errors of specific type. I think having these two classes of errors indicated clearly helps us resolve issues quickly.</p>
<p>Compared to that, I am not sure if there is any practical advantage in unifying these two classes of errors. I'd assume that all HTTP/3 stacks would have a piece of code decodes a frame (or a varint) and another piece of code that checks if the ID (or the stream that carried the frame) is correct - to paraphrase, the two classes of errors are raised from different locations. Then, what's the problem with using different codes?</p>

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


From nobody Sun Sep  1 17:03: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 A9C3D1200E9 for <quic-issues@ietfa.amsl.com>; Sun,  1 Sep 2019 17:03: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 qKpCmAiE8Dgv for <quic-issues@ietfa.amsl.com>; Sun,  1 Sep 2019 17:03:45 -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 845771200E0 for <quic-issues@ietf.org>; Sun,  1 Sep 2019 17:03:45 -0700 (PDT)
Date: Sun, 01 Sep 2019 17:03:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567382624; bh=4uJkBpnvhJj5G/nla9Y3GDb78lXGKQ50IN+MKzdf5sE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Li1xYwYbkHfjlQmUfwJ2StBNg1vcHxRUP1TLh4bBYtfiohzOsjJnJjEZoLgdy2yAN Usgw8ZtB28Db7gmopU1TFUNPujt2ejFNVfWLM97CQXKxPwAwf+RVTa02Qyz9tvkqZF OCRZvdL6H/JelsJnFFlRPQaWaVHKWmhhXKeYvMRM=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYIXFS3ODSKNLIBO5N3PGOPBEVBNHHBZ7DTNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2996/c526964570@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2996@github.com>
References: <quicwg/base-drafts/pull/2996@github.com>
Subject: Re: [quicwg/base-drafts] Collapse frame errors into HTTP_FRAME_ERROR (#2996)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6c5c607e54c_26e3ffd236cd9684844d6"; 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/9iKIyActWSxWZQq0JCK1ZNM3SB8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 02 Sep 2019 00:03:47 -0000

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

Thanks @kazuho, I do tend to agree with you. 



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2996#issuecomment-526964570
----==_mimepart_5d6c5c607e54c_26e3ffd236cd9684844d6
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=41567" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a>, I do tend to agree with you.</p>

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


From nobody Sun Sep  1 23:24: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 A965F120089 for <quic-issues@ietfa.amsl.com>; Sun,  1 Sep 2019 23:24:49 -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 XctPbJC7Fpiy for <quic-issues@ietfa.amsl.com>; Sun,  1 Sep 2019 23:24: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 D911012006F for <quic-issues@ietf.org>; Sun,  1 Sep 2019 23:24:47 -0700 (PDT)
Date: Sun, 01 Sep 2019 23:24:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567405486; bh=e63HWxAcL298zV1YMZFgOUhwZCSaX1lsDxfIegVwXLQ=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=TE/LUdzD62nlNH4QjNs86ysi4RCvBvXddJjQYquSmKdZs3gC6MAXhywsVxA79I43e 7xiRA2tHlZLMaOD8KfArhOPGRdKsDuYtyAEE//z1bmblOZwKyoWI3MuF7x6u8akrXO t5dj30Gkhq9BSO8R98IRvpQeTHspGD1QmycYSVOA=
From: Ainiroad <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7FR4PR7XWW57YLHFF3PHUC5EVBNHHB2FUSVI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3001@github.com>
Subject: [quicwg/base-drafts] There is no STOP_WATING frame in IETF quic (#3001)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6cb5aecd44d_54ec3fb78cecd9602213984"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: Ainiroad
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vO2ZxspyzMvfJTmHLZMKwZ9skBQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 02 Sep 2019 06:24:50 -0000

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

In google quic, there is STOP_WAITING frame, and it was designed to be that:
> To limit the NACK ranges to the ones that haven't yet been
   communicated to the peer, the peer periodically sends STOP_WAITING
   frames that signal the receiver to stop waiting for packets below a
   specified squence number

But there are no STOP_WAITING frame in IETF quic, what's your consideration about that?
Thanks a lot!

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

<p>In google quic, there is STOP_WAITING frame, and it was designed to be that:</p>
<blockquote>
<p>To limit the NACK ranges to the ones that haven't yet been<br>
communicated to the peer, the peer periodically sends STOP_WAITING<br>
frames that signal the receiver to stop waiting for packets below a<br>
specified squence number</p>
</blockquote>
<p>But there are no STOP_WAITING frame in IETF quic, what's your consideration about that?<br>
Thanks a lot!</p>

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


From nobody Sun Sep  1 23:27: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 3732F1200FD for <quic-issues@ietfa.amsl.com>; Sun,  1 Sep 2019 23:27: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 7bbM3kuLuNh8 for <quic-issues@ietfa.amsl.com>; Sun,  1 Sep 2019 23:27: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 CCD191200E9 for <quic-issues@ietf.org>; Sun,  1 Sep 2019 23:27:04 -0700 (PDT)
Date: Sun, 01 Sep 2019 23:27:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567405623; bh=fV6pjLWcIJNNwrIsfg+Z5IvNOPI8jts3XWuo6vQKJEg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rvSFqB2cRFo9vArBcMnPxgV0VTXNiZ3Up6FvryJUPyXqeOeiB74cGYdGTzgEr8+fj oLi92dDwoUug/PcKt1qPANYN3QVM8S0VHetR388wytOwY4VOhEfdvM6UPNjjeYeurz SDQhFwXi6nsOgTsLTjHqll/TJbZPO9WSBRFoVIkE=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5BF777U7CYXI6WMUN3PHULPEVBNHHB2FUSVI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3001/527018794@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3001@github.com>
References: <quicwg/base-drafts/issues/3001@github.com>
Subject: Re: [quicwg/base-drafts] There is no STOP_WATING frame in IETF quic (#3001)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6cb63797d5a_66eb3f9aee8cd96c1356280"; 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/XRDg0yzNNNWhu58xPCCctN1UYBQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 02 Sep 2019 06:27:06 -0000

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

See #358.

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

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


From nobody Mon Sep  2 06: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 C33E212013D for <quic-issues@ietfa.amsl.com>; Mon,  2 Sep 2019 06:34:31 -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 KDRmxHTZURRI for <quic-issues@ietfa.amsl.com>; Mon,  2 Sep 2019 06:34: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 3EA95120110 for <quic-issues@ietf.org>; Mon,  2 Sep 2019 06:34:30 -0700 (PDT)
Date: Mon, 02 Sep 2019 06:34:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567431269; bh=NN2yguYH6ZhUmVtrO+T0xnWDxdKhGUnFfCaImO9MfBg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Bt58pDuSGFN9FsYIcPPEiKPxdy7Xx7C1FPN1mF/vrY+RLakRqV4WAJwI51/N46FTl j7j+KK8oRsTRS5hkIOfX40CURQbl89X2qNprHgn5Ff+wsqyzpnSeVj2yp1vBIWBJKh 5AhvHEE8X/TlwPY02ghu2hQPcH9nC7Pkv64sO9fc=
From: Ainiroad <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7U3QILJZKUF26HNWN3PJGOLEVBNHHB2FUSVI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3001/527150387@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3001@github.com>
References: <quicwg/base-drafts/issues/3001@github.com>
Subject: Re: [quicwg/base-drafts] There is no STOP_WATING frame in IETF quic (#3001)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6d1a658e5fb_1cf23f968f4cd960156254"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: Ainiroad
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/nUGgrWuL43DfEzyepQgWydUPgoQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 02 Sep 2019 13:34:32 -0000

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

Thanks!

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

<p>Thanks!</p>

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


From nobody Mon Sep  2 06:34: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 822EF120110 for <quic-issues@ietfa.amsl.com>; Mon,  2 Sep 2019 06: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 MFSRP_Wi2ztu for <quic-issues@ietfa.amsl.com>; Mon,  2 Sep 2019 06:34:30 -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 35C0E1200A3 for <quic-issues@ietf.org>; Mon,  2 Sep 2019 06:34:30 -0700 (PDT)
Date: Mon, 02 Sep 2019 06:34:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567431269; bh=ct8vXBHA53ERRw7XaRrnG9dyMefd64TlWjUihheUidw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VD1R/a0NQCxqSl8ZYfjFYDogV/TywgHm8UmVcz2ATyADXlz/jqx/UGiK0wKiFhnLv +UzqklRTA262NPRIClTSrQ1oGLHl/9tXUH44kE4QzedbujkNRamN/zb7aEtjlwdgjL 4aJAG1nBngPep0EppYLGrNkEQ/mTD7mV/vVq9WeQ=
From: Ainiroad <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7U3QILJZKUF26HNWN3PJGOLEVBNHHB2FUSVI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3001/issue_event/2601132172@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3001@github.com>
References: <quicwg/base-drafts/issues/3001@github.com>
Subject: Re: [quicwg/base-drafts] There is no STOP_WATING frame in IETF quic (#3001)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6d1a655b497_407f3fce658cd96c188664"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: Ainiroad
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NuPZHsuh4H8n-gnMx1Jp6lme6Vs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 02 Sep 2019 13:34:32 -0000

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

Closed #3001.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3001#event-2601132172
----==_mimepart_5d6d1a655b497_407f3fce658cd96c188664
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="488018602" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3001" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3001/hovercard" href="https://github.com/quicwg/base-drafts/issues/3001">#3001</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/3001?email_source=notifications&amp;email_token=AFTOJK4SAXXBB64JQWRZ5SDQHUI6LA5CNFSM4ISZ7CTKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTMFCBDA#event-2601132172">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK36WJW7PHCLHCQMMSTQHUI6LANCNFSM4ISZ7CTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK43LQATJ6YW2OZJPETQHUI6LA5CNFSM4ISZ7CTKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTMFCBDA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3001?email_source=notifications\u0026email_token=AFTOJK4SAXXBB64JQWRZ5SDQHUI6LA5CNFSM4ISZ7CTKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTMFCBDA#event-2601132172",
"url": "https://github.com/quicwg/base-drafts/issues/3001?email_source=notifications\u0026email_token=AFTOJK4SAXXBB64JQWRZ5SDQHUI6LA5CNFSM4ISZ7CTKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTMFCBDA#event-2601132172",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6d1a655b497_407f3fce658cd96c188664--


From nobody Mon Sep  2 19:10: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 ED69E120074 for <quic-issues@ietfa.amsl.com>; Mon,  2 Sep 2019 19:10:20 -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 8awhMvaI_IgK for <quic-issues@ietfa.amsl.com>; Mon,  2 Sep 2019 19:10: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 6773F1200C4 for <quic-issues@ietf.org>; Mon,  2 Sep 2019 19:10:19 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 863176E11CE for <quic-issues@ietf.org>; Mon,  2 Sep 2019 19:10:18 -0700 (PDT)
Date: Mon, 02 Sep 2019 19:10:18 -0700
From: Ainiroad <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3PISUBEDMGDQUTLGV3PL7AVEVBNHHB2G6GK4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3002@github.com>
Subject: [quicwg/base-drafts] Some questions about Packet Number Encoding And Decoding (#3002)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6dcb8a76c08_172a3fa1b90cd95c9926d4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: Ainiroad
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/15jNV1qbIbRX8HEHiHs3SVrxUSU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 02:10:21 -0000

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

Thank you guys a lot! I have some questions about Packet Number Encoding And Decoding

In transport draft Section `17.1. Packet Number Encoding and Decoding`
>For example, if an endpoint has received an acknowledgment for packet 0xabe8bc, sending a packet with a number of 0xac5c02 requires a packet number encoding with 16 bits or more; whereas the 24-bit packet number encoding is needed to send a packet with a number of 0xace8fe.

1. What's the purpose of Packet Number Encoding? to be safe or save some bits space or something else?

> A peer receiving the packet will then correctly decode the packet number, unless the packet is delayed in transit such that it arrives after many higher-numbered packets have been received. An endpoint SHOULD use a large enough packet number encoding to allow the packet number to be recovered even if the packet arrives after packets that are sent afterwards.

2. How can an endpoint know to use a large enough packet number encoding? For example, as example 1 said, an endpoint can send 16 bits to send a number of 0xac5c02 if peer has received an acknowledgment for packet 0xabe8bc, which means it will send 0x5c02. So in the early time when it want to send 0x5c02 exactly(not 0xac5c02), How should it encode packet number to avoid conflict with 0xac5c02 if the packet is delay so much.

3. If an endpoint is not encoded packet number well, the peer will recover it as a wrong packet number, what happens next?

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

<p>Thank you guys a lot! I have some questions about Packet Number Encoding And Decoding</p>
<p>In transport draft Section <code>17.1. Packet Number Encoding and Decoding</code></p>
<blockquote>
<p>For example, if an endpoint has received an acknowledgment for packet 0xabe8bc, sending a packet with a number of 0xac5c02 requires a packet number encoding with 16 bits or more; whereas the 24-bit packet number encoding is needed to send a packet with a number of 0xace8fe.</p>
</blockquote>
<ol>
<li>What's the purpose of Packet Number Encoding? to be safe or save some bits space or something else?</li>
</ol>
<blockquote>
<p>A peer receiving the packet will then correctly decode the packet number, unless the packet is delayed in transit such that it arrives after many higher-numbered packets have been received. An endpoint SHOULD use a large enough packet number encoding to allow the packet number to be recovered even if the packet arrives after packets that are sent afterwards.</p>
</blockquote>
<ol start="2">
<li>
<p>How can an endpoint know to use a large enough packet number encoding? For example, as example 1 said, an endpoint can send 16 bits to send a number of 0xac5c02 if peer has received an acknowledgment for packet 0xabe8bc, which means it will send 0x5c02. So in the early time when it want to send 0x5c02 exactly(not 0xac5c02), How should it encode packet number to avoid conflict with 0xac5c02 if the packet is delay so much.</p>
</li>
<li>
<p>If an endpoint is not encoded packet number well, the peer will recover it as a wrong packet number, what happens next?</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/3002?email_source=notifications&amp;email_token=AFTOJK73A34YIKZAYJWHGSDQHXBQVA5CNFSM4ITBHNDKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HI3YZLQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3QIFJLWKSBC3JQGNTQHXBQVANCNFSM4ITBHNDA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZPX4QNEAHA7EATXB3QHXBQVA5CNFSM4ITBHNDKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HI3YZLQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3002?email_source=notifications\u0026email_token=AFTOJK73A34YIKZAYJWHGSDQHXBQVA5CNFSM4ITBHNDKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HI3YZLQ",
"url": "https://github.com/quicwg/base-drafts/issues/3002?email_source=notifications\u0026email_token=AFTOJK73A34YIKZAYJWHGSDQHXBQVA5CNFSM4ITBHNDKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HI3YZLQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6dcb8a76c08_172a3fa1b90cd95c9926d4--


From nobody Mon Sep  2 19: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 6D6E01200B9 for <quic-issues@ietfa.amsl.com>; Mon,  2 Sep 2019 19:14: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 po7nswb7yygs for <quic-issues@ietfa.amsl.com>; Mon,  2 Sep 2019 19:14:50 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3E726120074 for <quic-issues@ietf.org>; Mon,  2 Sep 2019 19:14:50 -0700 (PDT)
Date: Mon, 02 Sep 2019 19:14:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567476889; bh=4KmSmxDyzPM2n0WMrvDIBR0t+K6YSDJSXfwTGeCYG3c=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=E5ruiogbfxgCMAWGDXpl8D/fBKqHmwcLr185t5cyYYKQ/iNQ1argEfHxaPN5t3C7C y9T13/VM4pwbiQMOhwQnm4KuNd6/CPCMGDxdYebNdy3zegS0jpmNRT+6rJtT6CrfwU MpSXr5vuBNKRxSPEH7oL/pDvRgVVemRlYFIJwsD0=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3JLHDFQOHBSZPTJ253PLYQTEVBNHHB2G6GK4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3002/527277703@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3002@github.com>
References: <quicwg/base-drafts/issues/3002@github.com>
Subject: Re: [quicwg/base-drafts] Some questions about Packet Number Encoding And Decoding (#3002)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6dcc995b33f_17a73fc2ba0cd96c5505ec"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_YG5eXF2gRJ6h-6Gp_k4FGNJ8Co>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 02:14:52 -0000

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

@Ainiroad I'd like to request that you take these questions to our [mailing list](mailto:quic@ietf.org).  This issue list really isn't the best place for this sort of query.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3002#issuecomment-527277703
----==_mimepart_5d6dcc995b33f_17a73fc2ba0cd96c5505ec
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=10361713" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Ainiroad">@Ainiroad</a> I'd like to request that you take these questions to our <a href="mailto:quic@ietf.org">mailing list</a>.  This issue list really isn't the best place for this sort of query.</p>

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


From nobody Mon Sep  2 19:15: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 2B60F12012A for <quic-issues@ietfa.amsl.com>; Mon,  2 Sep 2019 19:14: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 WVWuXtG4hr-f for <quic-issues@ietfa.amsl.com>; Mon,  2 Sep 2019 19:14:53 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9B2B8120074 for <quic-issues@ietf.org>; Mon,  2 Sep 2019 19:14:53 -0700 (PDT)
Date: Mon, 02 Sep 2019 19:14:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567476893; bh=wZxjbk1z+LhQ0+/BxMjzzrN8klK9C1J+a7ayAHD6SGo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=k1P0RlwlwgbMjUcTOY/cVkLDZ/1eNF2DmVuqFuiwhtsqR7TOyboFosEdQHYJuOpv6 p21LanxQdPHnpWoMpujUKdXkmtFHw3k6/jU04l0GIfgydcxZZefHZ/eJwiwcQ4IFKR sUVM+JJmEnB386I31A+luswYeEN8UQUKqiwA4oec=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYFCXZHEEQTRZJUHWN3PLYQZEVBNHHB2G6GK4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3002/issue_event/2602059259@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3002@github.com>
References: <quicwg/base-drafts/issues/3002@github.com>
Subject: Re: [quicwg/base-drafts] Some questions about Packet Number Encoding And Decoding (#3002)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6dcc9cd5c8f_ac73fe19b8cd9641117115"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vjBqD8H_pAZo3M1oCUimBNWq0K8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 02:14:56 -0000

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

Closed #3002.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3002#event-2602059259
----==_mimepart_5d6dcc9cd5c8f_ac73fe19b8cd9641117115
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="488359511" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3002" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3002/hovercard" href="https://github.com/quicwg/base-drafts/issues/3002">#3002</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/3002?email_source=notifications&amp;email_token=AFTOJK2ARLEAV7CXEVZPCPDQHXCBZA5CNFSM4ITBHNDKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTMMEL6Y#event-2602059259">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ4V3IQPQJ525UOFE3QHXCBZANCNFSM4ITBHNDA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5Y35FMYTJSACSRSFLQHXCBZA5CNFSM4ITBHNDKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTMMEL6Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3002?email_source=notifications\u0026email_token=AFTOJK2ARLEAV7CXEVZPCPDQHXCBZA5CNFSM4ITBHNDKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTMMEL6Y#event-2602059259",
"url": "https://github.com/quicwg/base-drafts/issues/3002?email_source=notifications\u0026email_token=AFTOJK2ARLEAV7CXEVZPCPDQHXCBZA5CNFSM4ITBHNDKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTMMEL6Y#event-2602059259",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6dcc9cd5c8f_ac73fe19b8cd9641117115--


From nobody Mon Sep  2 19:16: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 1FB3D120074 for <quic-issues@ietfa.amsl.com>; Mon,  2 Sep 2019 19:16:45 -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 Zygvi8kBKjq0 for <quic-issues@ietfa.amsl.com>; Mon,  2 Sep 2019 19:16: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 15EC21200C4 for <quic-issues@ietf.org>; Mon,  2 Sep 2019 19:16:43 -0700 (PDT)
Date: Mon, 02 Sep 2019 19:16:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567477002; bh=1IlpWc8+GzmfIRdmCuQ+T2n9UFXCR2gCMWotod0rvjE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZY0zAFW8efaCJ5Cs4f3UbQosMi9n4YF+Hgf7W0EcVxihLCilNL6BI2LEVmDAk4QJa jYVvzJy9C4Wn5sYfSv0t98b44VbQUraQvodlTKHXlGtek2HnPomuABzcIrM+bscYFW MlcAESsAynddapPCeE+XXR2BuMs7xgkNJfTdRnKg=
From: Ainiroad <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYKPOBNYMJVOROWKDF3PL7YVEVBNHHB2G6GK4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3002/527278036@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3002@github.com>
References: <quicwg/base-drafts/issues/3002@github.com>
Subject: Re: [quicwg/base-drafts] Some questions about Packet Number Encoding And Decoding (#3002)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6dcd0a62346_64af3f94106cd96c6459b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: Ainiroad
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_jGhTCErG_NL0RBbq7aWzGmiob0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 02:16:45 -0000

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

Sorry for that!
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/3002#issuecomment-527278036
----==_mimepart_5d6dcd0a62346_64af3f94106cd96c6459b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Sorry for that!<br>
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/3002?email_source=notifications&amp;email_token=AFTOJKZKBEGM4BCCL7TAJDDQHXCIVA5CNFSM4ITBHNDKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5WZ7VA#issuecomment-527278036">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2LX6UJRPAXTTDGNH3QHXCIVANCNFSM4ITBHNDA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2P26K7RLGAONTCGM3QHXCIVA5CNFSM4ITBHNDKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5WZ7VA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3002?email_source=notifications\u0026email_token=AFTOJKZKBEGM4BCCL7TAJDDQHXCIVA5CNFSM4ITBHNDKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5WZ7VA#issuecomment-527278036",
"url": "https://github.com/quicwg/base-drafts/issues/3002?email_source=notifications\u0026email_token=AFTOJKZKBEGM4BCCL7TAJDDQHXCIVA5CNFSM4ITBHNDKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5WZ7VA#issuecomment-527278036",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6dcd0a62346_64af3f94106cd96c6459b--


From nobody Mon Sep  2 19:29: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 185B21201E0 for <quic-issues@ietfa.amsl.com>; Mon,  2 Sep 2019 19:29: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 FeWTR0C7tZAa for <quic-issues@ietfa.amsl.com>; Mon,  2 Sep 2019 19:29: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 82D6612022C for <quic-issues@ietf.org>; Mon,  2 Sep 2019 19:29:10 -0700 (PDT)
Date: Mon, 02 Sep 2019 19:29:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567477749; bh=PoC+duVlOYGpbqlZwtQvs/NcD6LNYTJHi+eWy4rfRq4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=AM7aU0lPoyau9Z4lbXRJ6GCImDKZ1F4/gKMTBPXJjqs+T0qJ5HFZ8KbBRm18JjMXg aVyPoEP5AgfsMg8etvVI5NHoQtonBi4oEAgno8DCCUoor+hTTkbEZVlCGeLLY5079m bK3zBF7qsVtis5P2I4tftmRitOqjG3rL8ZVFghXM=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK55TWXQWWMOZJAARBF3PL2GLEVBNHHB2G6GK4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3002/527280177@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3002@github.com>
References: <quicwg/base-drafts/issues/3002@github.com>
Subject: Re: [quicwg/base-drafts] Some questions about Packet Number Encoding And Decoding (#3002)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6dcff5867e7_5a2c3fe1b70cd9645688e0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QQD2WH0aD9F61sqEKWvRH4AU2XE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 02:29:25 -0000

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

No worries.  As [our contributing doc](https://github.com/quicwg/base-drafts/blob/master/CONTRIBUTING.md) says, we use this to track issues, not as a general discussion forum.

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

<p>No worries.  As <a href="https://github.com/quicwg/base-drafts/blob/master/CONTRIBUTING.md">our contributing doc</a> says, we use this to track issues, not as a general discussion forum.</p>

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


From nobody Tue Sep  3 08: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 AC00D120817 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 08:22: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 tzQYpOiFY1TR for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 08:22: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 DA950120046 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 08:22:11 -0700 (PDT)
Date: Tue, 03 Sep 2019 08:22:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567524131; bh=X2rK2k+JI62mcttU3/ly+SaHEoACUZ0M9YbfKeuWO90=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pkuaXYlKryGBXAiLE3J13MXoJl7EhnzPhsvxhQhbd14ITauOpx29CQ8NTukxxi03a PaxcYE8I4ZgE2JMwmnOup0RqWPca9KSVKuYk5uR2l77j8ZW2k6Xgiim06/o7ZUVEN7 jZihTCzTdr+1s0z3R7XNFFB11V6JkNcmhC6xEf3M=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3ZICT5B6EDSB2GWSF3PPC3FEVBNHHBZ7DTNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2996/c527507559@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2996@github.com>
References: <quicwg/base-drafts/pull/2996@github.com>
Subject: Re: [quicwg/base-drafts] Collapse frame errors into HTTP_FRAME_ERROR (#2996)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6e8522ed4c5_7bf3fb4d46cd9642587e3"; 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/0KMfyFIGm98dzcY4xhlKk1-sxRk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 15:22:14 -0000

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

I also agree with @kazuho 

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

<p>I also agree with <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>

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


From nobody Tue Sep  3 09: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 7F41A12012C for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 09:07: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 iXj8o-HNUiGc for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 09:07: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 C5D73120119 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 09:07:55 -0700 (PDT)
Date: Tue, 03 Sep 2019 09:07:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567526874; bh=qxJU5SpYmHfAIIqGlWiXp5ogvcBNWWs/DPxkhY+qYqk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NAnYAYIPsXnqBCFvESROAz3juRvyNpFfpmUVkkq3ugEX9TB1BktySkzR0E7GLh7pp SZU2zGeXiNIXVTIOcQ5hbp7WG0xlAlNtTdv2LbRYm4OHc1JwpQYsaMZYPEORBoEoRG 95uZYsv3LX7ONU4MKuMxuG5YUQIly2F/OII1Mhfo=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3TDA4XUPPZ7OWWEGF3PPIGVEVBNHHBZOCWUY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2977/c527527303@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2977@github.com>
References: <quicwg/base-drafts/pull/2977@github.com>
Subject: Re: [quicwg/base-drafts] forbid empty NEW_TOKEN frames (#2977)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6e8fdae1a10_ff33f8748ccd96819346"; 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/zLBdoHgXO7PnXBAh6NYEfIUfGqo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 16:07:58 -0000

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

Like @ianswett, I would like the spec to specify the error code. I don't care which 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/pull/2977#issuecomment-527527303
----==_mimepart_5d6e8fdae1a10_ff33f8748ccd96819346
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Like <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 would like the spec to specify the error code. I don't care which 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/pull/2977?email_source=notifications&amp;email_token=AFTOJK36VLJQXIVFRKOSTVLQH2DVVA5CNFSM4IMODKOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5YW3BY#issuecomment-527527303">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5GAUQXHEZD46Z5EN3QH2DVVANCNFSM4IMODKOA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZHU6ODPKMITCBMMATQH2DVVA5CNFSM4IMODKOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5YW3BY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2977?email_source=notifications\u0026email_token=AFTOJK36VLJQXIVFRKOSTVLQH2DVVA5CNFSM4IMODKOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5YW3BY#issuecomment-527527303",
"url": "https://github.com/quicwg/base-drafts/pull/2977?email_source=notifications\u0026email_token=AFTOJK36VLJQXIVFRKOSTVLQH2DVVA5CNFSM4IMODKOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5YW3BY#issuecomment-527527303",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6e8fdae1a10_ff33f8748ccd96819346--


From nobody Tue Sep  3 09:50: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 3B7BC12013A for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 09:50:46 -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 3YpyqNmCRGni for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 09:50:44 -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 48E03120071 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 09:50:44 -0700 (PDT)
Date: Tue, 03 Sep 2019 09:50:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567529443; bh=K4beHwHQl6bbtqc6JtJSHMqMgyN/gegzoJRK1tdHWNA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gmUej7BkTl9aQKKvLtMYGSjFi8QFO4sVdKCBM+vyoFXwMe5yWnTZJfkCHNrXSEuVj CRZRkXJTLjowlyNt0NtTzKWp34HoOgvALrk976thp3tWncHjG96RlUNffptauni/x4 yxFWBqJz/exx/miScOI3nilauf6rpCcU2V9SpI3k=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3GBZFTQDFQN5CNZIV3PPNHHEVBNHHBYHMRI4@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/c527543789@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_5d6e99e3862bb_5e2a3fa4b9ecd964811dd"; 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/Pi3WT9O-yXuxFqaacO17R2Qvi78>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 16:50:46 -0000

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

I don't understand what this is trying to specify. The stateless reset sender has no idea what CID length the peer has chosen (except for the 20 bytes limit), so I don't see how to guarantee that the Reset exceeds minimum size without allowing for the full 20 bytes.

Unless this PR is trying to say that it's OK to go smaller if you're willing to risk 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/2927#issuecomment-527543789
----==_mimepart_5d6e99e3862bb_5e2a3fa4b9ecd964811dd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I don't understand what this is trying to specify. The stateless reset sender has no idea what CID length the peer has chosen (except for the 20 bytes limit), so I don't see how to guarantee that the Reset exceeds minimum size without allowing for the full 20 bytes.</p>
<p>Unless this PR is trying to say that it's OK to go smaller if you're willing to risk 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/2927?email_source=notifications&amp;email_token=AFTOJK73FAVGDBEYLRXL2XTQH2IWHA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5Y233I#issuecomment-527543789">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4PTNPQMOJN66MN7ELQH2IWHANCNFSM4IGENO4A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7577ANC4WCZO26QBTQH2IWHA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5Y233I.gif" height="1" width="1" 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=AFTOJK73FAVGDBEYLRXL2XTQH2IWHA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5Y233I#issuecomment-527543789",
"url": "https://github.com/quicwg/base-drafts/pull/2927?email_source=notifications\u0026email_token=AFTOJK73FAVGDBEYLRXL2XTQH2IWHA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5Y233I#issuecomment-527543789",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6e99e3862bb_5e2a3fa4b9ecd964811dd--


From nobody Tue Sep  3 10:40: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 2611212006D for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 10:40:19 -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 RTKn84iqLrRU for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 10: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 AA3DA120043 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 10:40:17 -0700 (PDT)
Date: Tue, 03 Sep 2019 10:40:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567532416; bh=4Qj6twMkjEbulxb44MTP4qIr0Pkztb+PH5zHoFvMu3g=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=N9YUxL32CfctpV5K3QcumDI0zrAM4Uvns+PsSdN1+niciO4+f6wyagT76mepSg4Gy /5cZg/EX0mn+u+M6pGRUXcloV8z+UTcvdL03EUZLgk6v76uBXEhjdhgCsLoLs+yphe BDaWDTbBMozUtqQyuSdzJcUBsf0AJRblmwKub09M=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4ECCMPQ7DIF6A7FJN3PPTBBEVBNHHB2IMF5Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3003@github.com>
Subject: =?UTF-8?Q?[quicwg/base-drafts]_rename_HTTP=5FUNEXPECTED=5FFRAME_to?= =?UTF-8?Q?_HTTP=5FFRAME=5FUNEXPECTED_and_fold_HTTP=5FW=E2=80=A6_=28#3003=29?=
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6ea580ca959_7fde3fb94c4cd96c2895a2"; 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/g8USm_R75Sq-2ra8Voifk5UHgJw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 17:40:19 -0000

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

=E2=80=A6RONG_STREAM into it=0D
=0D
Renaming the error to align with a suggestion from @MikeBishop made somew=
here. This is a less drastic version of #2996.=0D
You can view, comment on, or merge this pull request online at:=0D
=0D
  https://github.com/quicwg/base-drafts/pull/3003=0D
=0D
-- Commit Summary --=0D
=0D
  * rename HTTP_UNEXPECTED_FRAME to HTTP_FRAME_UNEXPECTED and fold HTTP_W=
RONG_STREAM into it=0D
=0D
-- File Changes --=0D
=0D
    M draft-ietf-quic-http.md (81)=0D
=0D
-- Patch Links --=0D
=0D
https://github.com/quicwg/base-drafts/pull/3003.patch=0D
https://github.com/quicwg/base-drafts/pull/3003.diff=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/pull/3003=0D

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

<p>=E2=80=A6RONG_STREAM into it</p>=0D
<p>Renaming the error to align with a suggestion from <a class=3D"user-me=
ntion" data-hovercard-type=3D"user" data-hovercard-url=3D"/hovercards?use=
r_id=3D4273797" data-octo-click=3D"hovercard-link-click" data-octo-dimens=
ions=3D"link_type:self" href=3D"https://github.com/MikeBishop">@MikeBisho=
p</a> made somewhere. This is a less drastic version of <a class=3D"issue=
-link js-issue-link" data-error-text=3D"Failed to load issue title" data-=
id=3D"486306669" data-permission-text=3D"Issue title is private" data-url=
=3D"https://github.com/quicwg/base-drafts/issues/2996" data-hovercard-typ=
e=3D"pull_request" data-hovercard-url=3D"/quicwg/base-drafts/pull/2996/ho=
vercard" href=3D"https://github.com/quicwg/base-drafts/pull/2996">#2996</=
a>.</p>=0D
=0D
<hr>=0D
=0D
<h4>You can view, comment on, or merge this pull request online at:</h4>=0D=

<p>&nbsp;&nbsp;<a href=3D'https://github.com/quicwg/base-drafts/pull/3003=
'>https://github.com/quicwg/base-drafts/pull/3003</a></p>=0D
=0D
<h4>Commit Summary</h4>=0D
<ul>=0D
  <li>rename HTTP_UNEXPECTED_FRAME to HTTP_FRAME_UNEXPECTED and fold HTTP=
_WRONG_STREAM into it</li>=0D
</ul>=0D
=0D
<h4>File Changes</h4>=0D
<ul>=0D
  <li>=0D
    <strong>M</strong>=0D
    <a href=3D"https://github.com/quicwg/base-drafts/pull/3003/files#diff=
-0">draft-ietf-quic-http.md</a>=0D
    (81)=0D
  </li>=0D
</ul>=0D
=0D
<h4>Patch Links:</h4>=0D
<ul>=0D
  <li><a href=3D'https://github.com/quicwg/base-drafts/pull/3003.patch'>h=
ttps://github.com/quicwg/base-drafts/pull/3003.patch</a></li>=0D
  <li><a href=3D'https://github.com/quicwg/base-drafts/pull/3003.diff'>ht=
tps://github.com/quicwg/base-drafts/pull/3003.diff</a></li>=0D
</ul>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3003?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK67EAI5UW4OPK2KMLLQH2OQBA5CNFSM4ITJB4MKYY3PNVWWK3TUL52HS4DFUVEXG43VMW=
VGG33NNVSW45C7NFSM4HJBQXWA">view it on GitHub</a>, or <a href=3D"https://=
github.com/notifications/unsubscribe-auth/AFTOJKZGZXJFKKVUQOXQQNLQH2OQBAN=
CNFSM4ITJB4MA">mute the thread</a>.<img src=3D"https://github.com/notific=
ations/beacon/AFTOJK42LCR5DKAIZCIHLHLQH2OQBA5CNFSM4ITJB4MKYY3PNVWWK3TUL52=
HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HJBQXWA.gif" height=3D"1" width=3D"1" a=
lt=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/3003?email_source=3D=
notifications\u0026email_token=3DAFTOJK67EAI5UW4OPK2KMLLQH2OQBA5CNFSM4ITJ=
B4MKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HJBQXWA",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3003?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK67EAI5UW4OPK2KMLLQH2OQBA5CNFSM4ITJB4=
MKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HJBQXWA",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=0D

----==_mimepart_5d6ea580ca959_7fde3fb94c4cd96c2895a2--


From nobody Tue Sep  3 10: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 85B2E12006D for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 10:41: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 E_n_LzayZYxv for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 10:41: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 ED0AC120043 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 10:41:32 -0700 (PDT)
Date: Tue, 03 Sep 2019 10:41:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567532492; bh=35hQn6FdLNEgKn4KMeo1XwIocheFuIjaj849QgvXJGI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=C4crmjlFNWQdIRCilNErz01vKMKX4T6ZKoLAaTORWonshLwIBI4XTS/Y8IT76oPeg I+HlMSd8I6+nQvUC2ejSS5RUWfxeccM/rz7HHKc4Zc12tFFHvVtQKh8ocLzdvcqS8w bttb4FdcUCg2Jk3emfZEDUnXf5NWmIVqxxzki97g=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6DLWVJTI727B4DTA53PPTFZEVBNHHBZ7DTNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2996/c527563504@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2996@github.com>
References: <quicwg/base-drafts/pull/2996@github.com>
Subject: Re: [quicwg/base-drafts] Collapse frame errors into HTTP_FRAME_ERROR (#2996)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6ea5cc2fc7f_3b173f838b4cd96829348e"; 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/0WUBQs6MC3-tm32hw7E2J2SG5sc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 17:41:35 -0000

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

ok, I made #3003 as a middle ground.

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

<p>ok, I made <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="488736236" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3003" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3003/hovercard" href="https://github.com/quicwg/base-drafts/pull/3003">#3003</a> as a middle ground.</p>

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


From nobody Tue Sep  3 12:34: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 856D5120805 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 12:34:42 -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 XR5vjNHOxVYT for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 12:34: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 98598120233 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 12:34:40 -0700 (PDT)
Date: Tue, 03 Sep 2019 12:34:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567539279; bh=ukYJYqopfrfuIhrF0Y6V4YWX8KHlwr5bv1A4U7IO4v0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=sAhan9APcOZ3deEc4+o1ZzlLQhsbxIDLlJJwrBDv8BwAqV1829jbxEOE3IyYFcHw5 0YrEq+EXT2XA/co9EnyH3bw8E/zERGiW8k7YdkXIMTI9cWu1uyFeSD+ya2SVISb8ic UcdroAstk4yL+kDguG/6CNyD0T1NQzsu/VevFdWU=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ5UF4YJ3CEB53DKLF3PQAN7EVBNHHB2D4G5I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2999/527606375@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2999@github.com>
References: <quicwg/base-drafts/issues/2999@github.com>
Subject: Re: [quicwg/base-drafts] QPACK decoder stream buffer grows without bounds (#2999)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6ec04f81399_31153fc0ed0cd9681105a"; 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/hCNpjR4KWeDEFtzo90SA442OZGk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 19:34:53 -0000

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

Hypothetically, this limit would create a way to force the peer to kill the connection by starving the decoder stream of flow control credit and then cancelling lots of streams.  However, the consumer of (and therefore the entity which could fail to read) the decoder stream is the encoder, and the encoder can trivially cause the connection to close by emitting an invalid instruction anyway.  That seems fine.

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

<p>Hypothetically, this limit would create a way to force the peer to kill the connection by starving the decoder stream of flow control credit and then cancelling lots of streams.  However, the consumer of (and therefore the entity which could fail to read) the decoder stream is the encoder, and the encoder can trivially cause the connection to close by emitting an invalid instruction anyway.  That seems fine.</p>

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


From nobody Tue Sep  3 12: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 A3D63120043 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 12:49: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 kQmCfBzb8Zwm for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 12:49: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 1534712008B for <quic-issues@ietf.org>; Tue,  3 Sep 2019 12:49:00 -0700 (PDT)
Date: Tue, 03 Sep 2019 12:48:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567540139; bh=qn9iRstO5WVpOMG1Rig4IbGZHsgs9Hd0yWJsYwoWegI=; h=Date:From:To:Subject:From; b=Z21fbiE1wN+IGyeIMzfaOTwSPSoO7vxAYB24RHB4GI8h6yQu8jG989Ez0aWR5aRDR NBWlCE7ZJ79x6a3XoYbrp7KBUyTLe/fDK+bth6NJwb5CKX848zfDVoVbcuVUCdWM75 VSojDfmcmpA64cEYzDA2ILn04PaZ99vSfyCa/NnY=
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack/decoder_bounds/000000-f74c7f@github.com>
Subject: [quicwg/base-drafts] f74c7f: Security Considerations text for a memory limit
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/W5ffaD9G5nSvr4zQCUPMhHLUYnY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 19:49:02 -0000

  Branch: refs/heads/qpack/decoder_bounds
  Home:   https://github.com/quicwg/base-drafts
  Commit: f74c7faa455fc367f33988894d15f6b9ebe831ef
      https://github.com/quicwg/base-drafts/commit/f74c7faa455fc367f33988894d15f6b9ebe831ef
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-03 (Tue, 03 Sep 2019)

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

  Log Message:
  -----------
  Security Considerations text for a memory limit



From nobody Tue Sep  3 12:49: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 2C1FF120047 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 12:49: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 i5nE3NkMxbsx for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 12:49: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 9A914120043 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 12:49:27 -0700 (PDT)
Date: Tue, 03 Sep 2019 12:49:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567540166; bh=DhgifwkneTH6GpylvI8xE4Sr4pU1kfBQX9F3WepmzYE=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=DeC3xX/JjLni7/WiNCXgT5U1kX6nDH1khWWEaCm50kUPk6oDx/1Q2SFt2HgAjrBON Ir3aA+mNDv8qDl4lWvjFnr+u+/z82Tb/4wt4epsezriLcqQsszrvYOqkRNOI0vLOPG 5Kos0FtWKdJG9ycJPtjXLcTPk5jPVwoKR1lYH3So=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6MH45KQSES47OEG5V3PQCFNEVBNHHB2ISX3U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3004@github.com>
Subject: [quicwg/base-drafts] Security Considerations text for a memory limit (#3004)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6ec3c68b2ba_4c7c3ff51a0cd95c1248ba"; 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/O_va3TcxHu7GrZQlhCGL0iXo_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: Tue, 03 Sep 2019 19:49:29 -0000

----==_mimepart_5d6ec3c68b2ba_4c7c3ff51a0cd95c1248ba
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/3004

-- Commit Summary --

  * Security Considerations text for a memory limit

-- File Changes --

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

-- Patch Links --

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

----==_mimepart_5d6ec3c68b2ba_4c7c3ff51a0cd95c1248ba
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/3004'>https://github.com/quicwg/base-drafts/pull/3004</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Security Considerations text for a memory limit</li>
</ul>

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

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

----==_mimepart_5d6ec3c68b2ba_4c7c3ff51a0cd95c1248ba--


From nobody Tue Sep  3 12:50: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 27BA8120047 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 12:50: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 OwBmwLyE84uA for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 12:50: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 CE225120043 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 12:50:18 -0700 (PDT)
Date: Tue, 03 Sep 2019 12:50:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567540218; bh=gr/izv78aoVIkNpSiLlsEL9NP4kROAuGQmXoxRkYPy8=; h=Date:From:To:Subject:From; b=D7Vvt+alrqlYlHreHHNcDLYTQEvgEbPDjsuIhamq9K/R+GW9nk0K8grFrAxoO9anH gCemktx5XvHHZmgKPQLfZFvMQ0t39ZDwvuJCwZl180qjWYxtcfdOMF3uriQr1VpPmt E3kE1ruCVYJZVfU0plAjw85dGBOn1V9fLBFYZ4kI=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/09cb2a-b4e16f@github.com>
Subject: [quicwg/base-drafts] b4e16f: Script updating gh-pages from f74c7faa. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/MVjtI6iVtzT86d3bEV-wGHb-QhI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 19:50:20 -0000

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

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

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



From nobody Tue Sep  3 12: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 236C512084D for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 12: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 v6r4glcguqCe for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 12:52: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 728D9120154 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 12:52:16 -0700 (PDT)
Date: Tue, 03 Sep 2019 12:52:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567540335; bh=Moc2N7mbYXeaycNMPaGyvkc59phhPYAnr6Y0epbfOZE=; h=Date:From:To:Subject:From; b=CED+OQuDxb9Jn9oZsgJgyYgKoFw6QcyZk3y6D4iicdZXCw8JUYWUA1XjfAMzeKE6k 7Jxc7qeBaInbSgY1+VJhW/U9bgRA21sDkzMnmGa+t6cPozGbqD3MeB7dZ942xBTnAi eEmWt6S03WF40pMxz7wwZWwZ3OGQj+QoAU/VW+b8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b4e16f-de02b0@github.com>
Subject: [quicwg/base-drafts] de02b0: Script updating issues at 2019-09-03T19:52:09Z. [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/olaw4ujPcXQ4mNGqlXbtapIPyN0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 19:52:20 -0000

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

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-09-03T19:52:09Z. [ci skip]



From nobody Tue Sep  3 14: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 9D1C91200B6 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 14:22: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 ywutyeAcv0ST for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 14:22:43 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2B0AF120099 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 14:22:43 -0700 (PDT)
Date: Tue, 03 Sep 2019 14:22:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567545762; bh=bAThF0TEw5yBRcRPG79FJLfY11kQ5egepphfyqhZuNs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Oc/ctEdpoMICe0hBXUgpu4vuys0JItTbSepN8uFDZjA0QmXU7wOPiDdc8pUlRj9/m LkW+803Wl/9pTE+U7lc67uVvl3rII4G8bQuRtvK/qD+3xppW6t8Fn4QjQ86KEGoMY6 3bZZhPoMWEWMFAX3qDe4hc7LW55dRAx7jSLlU5LA=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5YQHMVUGTDLJ3F3YN3PQNDFEVBNHHB2ISX3U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3004/review/283268986@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3004@github.com>
References: <quicwg/base-drafts/pull/3004@github.com>
Subject: Re: [quicwg/base-drafts] Security Considerations text for a memory limit (#3004)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6ed9a266bd3_42823fe8adccd9605291ea"; 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/wLPqx3FRrZ3viEGA8-JN_k-P9Wo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 21:22:45 -0000

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

ianswett commented on this pull request.



> @@ -1126,6 +1126,13 @@ HTTP_QPACK_DECODER_STREAM_ERROR (0x202):
 
 TBD.
 
+While the negotiated limit on the dynamic table size accounts for much of the
+memory that can be consumed by a QPACK implementation, data which cannot be
+immediately sent due to flow control is not affected by this limit.
+Implementations MUST limit the size of unsent data, especially on the decoder

Does a MUST really make sense here?  I mean, it seems like the implementation's problem if they have an unbounded amount of memory buffered.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3004#pullrequestreview-283268986
----==_mimepart_5d6ed9a266bd3_42823fe8adccd9605291ea
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/3004#discussion_r320484214">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1126,6 +1126,13 @@ HTTP_QPACK_DECODER_STREAM_ERROR (0x202):
 
 TBD.
 
+While the negotiated limit on the dynamic table size accounts for much of the
+memory that can be consumed by a QPACK implementation, data which cannot be
+immediately sent due to flow control is not affected by this limit.
+Implementations MUST limit the size of unsent data, especially on the decoder
</pre>
<p>Does a MUST really make sense here?  I mean, it seems like the implementation's problem if they have an unbounded amount of memory buffered.</p>

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


From nobody Tue Sep  3 15:09: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 3B2DE12004F for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:09: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 G2mpg_sWO-EG for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:09: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 B3155120152 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:09:04 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:09:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567548543; bh=beC5/wqAuFq9zXFdUAZ8p+cYnZmvEPxr1j9tjqN7I3Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EtEwd098ZOGhd4a4kPcGmyNZpN/LYBTm9Sl132yeP9FK34e5vQ/xxQIs0fTuccZHx 2du7mvRUHFuXxCmKD4IuxOggxwo6m6z1BTI2X93Pwp2B+NTGR+l0deaxBbaO4DB3/2 L1bqlUuuvlomZsU89lbpTazYhj9oXmv1xguag9t4=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4OSVYLFC5LJZB6MGF3PQSQ7EVBNHHB2AE7TY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2998/review/283287625@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2998@github.com>
References: <quicwg/base-drafts/pull/2998@github.com>
Subject: Re: [quicwg/base-drafts] Error codes can't cause errors (#2998)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6ee47fabd27_2b263f7fbb6cd96c6232c8"; 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/XIsvYE4gSGc7520Nem9yNVQPsgE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:09:06 -0000

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

ianswett commented on this pull request.



> @@ -1394,6 +1394,12 @@ the entire connection when an error is encountered.  These are referred to as
 {{QUIC-TRANSPORT}}.  An endpoint MAY choose to treat a stream error as a
 connection error.
 
+Because new error codes can be defined without negotiation (see {{extensions}}),
+receipt of an unknown error code or use of an error code in an unexpected
+context MUST NOT be treated as an error.  However, the fact that a stream closed

This last sentence is a bit odd.  How about something like "However, closing a stream can constitute an error regardless of the error code -- see..."

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2998#pullrequestreview-283287625
----==_mimepart_5d6ee47fabd27_2b263f7fbb6cd96c6232c8
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/2998#discussion_r320499015">draft-ietf-quic-http.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1394,6 +1394,12 @@ the entire connection when an error is encountered.  These are referred to as
 {{QUIC-TRANSPORT}}.  An endpoint MAY choose to treat a stream error as a
 connection error.
 
+Because new error codes can be defined without negotiation (see {{extensions}}),
+receipt of an unknown error code or use of an error code in an unexpected
+context MUST NOT be treated as an error.  However, the fact that a stream closed
</pre>
<p>This last sentence is a bit odd.  How about something like "However, closing a stream can constitute an error regardless of the error code -- see..."</p>

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


From nobody Tue Sep  3 15:11: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 68538120271 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:11: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 7DrvWK60vPI6 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:11: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 D16DB120137 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:11:17 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:11:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567548676; bh=N/88YeT2itUBcNPbMCe+q+/qX74ERH0R2Tyff2QTPqk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=R5l4zJKV4WszGXIGn0S31rp45FcqluooCBr2gdnHo6nJhn0yrVStK0qp5Hqw+drIy nCzbzBDjHEt7FTWmw36LDB1MpS1WkZoQF+LNbPUrVrro9d7w+amz/qqrxi0MAu1hzk baMSJ/dGR4omWfocZXspU/++4CDa/glbDDVCgRhE=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5K3J5PLFJL4KYMVF53PQEXJEVBNHHBXIMFLY@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/issue_event/2605145201@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_5d6ee504c2ce5_42bf3fe8adccd960798179"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/14yj0hUHS5_wPh4d8cOGYB7qA18>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:11:20 -0000

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

Closed #2870.

-- 
You are receiving this 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#event-2605145201
----==_mimepart_5d6ee504c2ce5_42bf3fe8adccd960798179
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="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 style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK2POHYOMLQCKXWS3ZLQH3OIJA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTNDVY4I#event-2605145201">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4S335PG2V5GDT7S3DQH3OIJANCNFSM4H5CMCIQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7BOYUV3TLAGPS3IW3QH3OIJA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTNDVY4I.gif" height="1" width="1" 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=AFTOJK2POHYOMLQCKXWS3ZLQH3OIJA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTNDVY4I#event-2605145201",
"url": "https://github.com/quicwg/base-drafts/pull/2870?email_source=notifications\u0026email_token=AFTOJK2POHYOMLQCKXWS3ZLQH3OIJA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTNDVY4I#event-2605145201",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6ee504c2ce5_42bf3fe8adccd960798179--


From nobody Tue Sep  3 15: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 49854120152 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:11:24 -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 cJdu72BsteaO for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:11:22 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 53CE012081E for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:11:22 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:11:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567548681; bh=ol2cIUCmvLExxlREmGXPTJWxUZ+XIDFwi+ew8Z7fuGs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CQlMkHuovch/79RkYET7JB2r6usNdzeow8JCkxTfjl9R0BZCbwR03LsaSSLTZ3F66 PAIYxMkB/W3BhP7Ft9vxioMRW0kuTJJKwTdioGhp1vLOs9holjT7296dGUfqd9BINT 9waan/UcWYwwUy3/rjFCSBRV6rEaPBFpDw5/soqA=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5G4YWYLDBPU4VKWPV3PQEXTEVBNHHBXIMFLY@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/c527660755@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_5d6ee509655fe_4a4e3fd313ccd9601107e3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QmW2nlHz4ksnsIEN1XDQ7XHXk98>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:11:24 -0000

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

OBE

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

<p>OBE</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK27LGJ7LKCO4FV7PD3QH3OITA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5ZXNUY#issuecomment-527660755">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5AVEGWT35MXS2K4CDQH3OITANCNFSM4H5CMCIQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZLMEPJ4ZDZEF6Q6ITQH3OITA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5ZXNUY.gif" height="1" width="1" 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=AFTOJK27LGJ7LKCO4FV7PD3QH3OITA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5ZXNUY#issuecomment-527660755",
"url": "https://github.com/quicwg/base-drafts/pull/2870?email_source=notifications\u0026email_token=AFTOJK27LGJ7LKCO4FV7PD3QH3OITA5CNFSM4H5CMCI2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5ZXNUY#issuecomment-527660755",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6ee509655fe_4a4e3fd313ccd9601107e3--


From nobody Tue Sep  3 15:23: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 BBF53120152 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:23: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 0d4uoPCdY_jE for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:23: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 F0611120137 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:23:32 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:23:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567549411; bh=uT5q41CNIyOIM3NiWvJKkSvlnTLLxkP/K2WYtaSQ3fk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=AjtSMnqbvSUJ4+Xhzkg7EmXjdnJxjo8zUF7afz5m6YHbunDNYUjp5V6ww142zR10g fV2olsRhjbt3ldCHrs2gtUaTUezKas3wZ6Rspw8MzZ+1wpvxrDKubS74kU2pXiqAD4 H+J1YKgDYVtgnOpEwEzeM9H3SWU4gFh95eK0y6Hw=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3MEIQXOB75WFB6MLN3PQUHHEVBNHHB2IMF5Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3003/review/283292551@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3003@github.com>
References: <quicwg/base-drafts/pull/3003@github.com>
Subject: =?UTF-8?Q?Re:_[quicwg/base-drafts]_rename_HTTP=5FUNEXPECTED=5FFRAM?= =?UTF-8?Q?E_to_HTTP=5FFRAME=5FUNEXPECTED_and_fold_HTTP=5FW=E2=80=A6?= =?UTF-8?Q?_=28#3003=29?=
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6ee7e3a68cf_53283fe0ecacd96c60854"; 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/M6tK5vhTaPUIwTMKv_E-a5qShLU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:23:35 -0000

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


From nobody Tue Sep  3 15:29: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 2FCD612004F for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:29: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 xMtmh3WaMmMR for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:29: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 E6A9B120044 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:29:21 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:29:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567549761; bh=9TYu3jcmfRAcUs4IqLOOmFfubzZx94lkIC9ykobvGWY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GVC8koQ0rr4h16aSllammFXTAIyVK4tHXvg17FcUsy9hXvLMJnyFQE3aL6TuKHGBW GQZ1x+qhNbdjgm7i1/IvMznj+JKdKVAQH9+91ZgNkAIA0LTSO7UhosGhiveamCr79q +Sv0S8wxLNseCq/0vCVuoEcLB6W3Zq6COYzWb7fE=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6RERLPON3Q7IIDC5V3PQU5BEVBNHHBZ4IYAM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2993/review/283294497@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2993@github.com>
References: <quicwg/base-drafts/pull/2993@github.com>
Subject: Re: [quicwg/base-drafts] Perform stateless reset token comparisons in constant time (#2993)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6ee940f1a16_1e023fab54ecd9681175a0"; 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/8qQ8FDPyP9Diit8_VuaPSNu_it4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:29:23 -0000

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


From nobody Tue Sep  3 15:35: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 664EB12008A for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:35: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 xBH0SOLfeRkQ for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:35:41 -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 A678812004F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:35:41 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:35:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567550141; bh=stYDFuYTuICYGl2FbHDZQTcWC5UxpOpbexmgRKarghE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DxQR2McCbWWcoHIbLQsKbt9lahZ6d6xFkQL0+DPcWUyU+frxS8rMETO0FUKv/h0N0 5lkjkLqsyxDsB1j6Q9Hgbj+cuQb2j5J6CDiC/er1AO0huqUOS4GIb+oJcHocRKjHdd kW97I/jCU/rS2Ft6zPpuinEnyGT6beiOaH20N7iY=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY2LKWXJ6HG2SR2YW53PQVUZEVBNHHBZ4IYAM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2993/review/283296425@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2993@github.com>
References: <quicwg/base-drafts/pull/2993@github.com>
Subject: Re: [quicwg/base-drafts] Perform stateless reset token comparisons in constant time (#2993)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6eeabce9120_2e173fc07e8cd95c1137a7"; 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/MAv2XZhbxMsfdtOKkQpazqZ9BqU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:35:43 -0000

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

janaiyengar approved this pull request.

... modulo change to accommodate @kazuho 's 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/pull/2993#pullrequestreview-283296425
----==_mimepart_5d6eeabce9120_2e173fc07e8cd95c1137a7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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

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


From nobody Tue Sep  3 15:35: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 70D1012008A for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:35: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 ucab_aCQJ_4a for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:35: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 0F27812004F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:35:47 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:35:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567550146; bh=M2PsuruMfhqGtT+UOSS5YE0kkWxCSClBrJ5OiLDt85A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VrjYRRDVyJ/SRZw/Za4HyYXrg3JZ4NAjDNeacPrctSLoUVv78tEz//cNJsu675fzW HKJ2nbOUSz8soC5sTa0J/apEgAphMc4Wj1BY7t053UNTFSLA9xEKqj4ZW7PShuZGQb tXFz9NjwM0kRUKNcftn4/C3NEEWrr2Yer6Q2lHi8=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK62L7WTITLTC2ZDRQV3PQVVFEVBNHHBZ4IYAM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2993/review/283296452@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2993@github.com>
References: <quicwg/base-drafts/pull/2993@github.com>
Subject: Re: [quicwg/base-drafts] Perform stateless reset token comparisons in constant time (#2993)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6eeac21d47b_7d623fe3cb4cd9681581c"; 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/JSLUGWhWN-KmJolQcoc71B3Ju_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, 03 Sep 2019 22:35:50 -0000

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

ianswett approved this pull request.

Given how simple this is to do in practice, it seems worthwhile, even if the attack is not a very effective 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/2993#pullrequestreview-283296452
----==_mimepart_5d6eeac21d47b_7d623fe3cb4cd9681581c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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

<p>Given how simple this is to do in practice, it seems worthwhile, even if the attack is not a very effective 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/2993?email_source=notifications&amp;email_token=AFTOJK67AXY5CUGPTCBG23DQH3REFA5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRMFRA#pullrequestreview-283296452">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7FJ63CSPUTPTGGJ4TQH3REFANCNFSM4IP3T76Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5BI2NRGU3KZJ3UL7LQH3REFA5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRMFRA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2993?email_source=notifications\u0026email_token=AFTOJK67AXY5CUGPTCBG23DQH3REFA5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRMFRA#pullrequestreview-283296452",
"url": "https://github.com/quicwg/base-drafts/pull/2993?email_source=notifications\u0026email_token=AFTOJK67AXY5CUGPTCBG23DQH3REFA5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRMFRA#pullrequestreview-283296452",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6eeac21d47b_7d623fe3cb4cd9681581c--


From nobody Tue Sep  3 15:41: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 7973E12004A for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:41: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 qL0cKSxRebfd for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:41: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 049C9120044 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:41:16 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:41:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567550475; bh=WemAgNsyhMQVYvekFXBK8McRn0BxCesY/3221hLWrew=; h=Date:From:To:Subject:From; b=qpFuDfA9qyQBczrvOiWSgh/epuXU2gqH3GmN5S5wc6IReZOjhutb0bEFDi50zFzKk rl61tib+8z2LC6GVq76fkFh+I5I3+Oy6x8Lc+D2DcBEYC2TPAo4aX8hXktPAGaG+/D lzzypt5kwPZCBWhgApIix93ZxZh0zmihxGHOjC2I=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ct-sr/e4123f-9e7142@github.com>
Subject: [quicwg/base-drafts] 9e7142: Be a little clearer about what is being protected
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NQ-tl0yfMWE-AbfkIlSMVLANOpY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:41:17 -0000

  Branch: refs/heads/ct-sr
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9e7142b9989bad34fdd86cc9c7dec57abfe514ea
      https://github.com/quicwg/base-drafts/commit/9e7142b9989bad34fdd86cc9c7dec57abfe514ea
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-09-04 (Wed, 04 Sep 2019)

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

  Log Message:
  -----------
  Be a little clearer about what is being protected



From nobody Tue Sep  3 15:41: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 5BB2812004A for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:41: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 Y55LLrNbf9cS for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:41:25 -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 0ECD5120044 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:41:25 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:41:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567550484; bh=mU9xfMOlsiRJpWhPpa86FHux1hML9omy83iq9A3aXg0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rh8IT9USyfIUyS/QpkHOCmWnEA4I/r+JMJOR5xN7aZQEdSknQqKANtiWgPF3JNoif ruKrlkNfWx+RT2TVFw15gC11tbYeYY2KSAYw+QA0FiX4RohP7EInZmW/RPzVdAx1Yn 4v/0VUh3PY3vHKo6tIfLlzufomqYrhoMpPbBAOLY=
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/2993/push/3993498414@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2993@github.com>
References: <quicwg/base-drafts/pull/2993@github.com>
Subject: Re: [quicwg/base-drafts] Perform stateless reset token comparisons in constant time (#2993)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6eec142852f_61af3fe0770cd96419391a"; 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/Yd02-uew-sUdj09ilQBG9n3ws2o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:41:26 -0000

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

@martinthomson pushed 1 commit.

9e7142b9989bad34fdd86cc9c7dec57abfe514ea  Be a little clearer about what is being protected


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2993/files/e4123fc84870a688212a82b48fec71cc44d729ab..9e7142b9989bad34fdd86cc9c7dec57abfe514ea

----==_mimepart_5d6eec142852f_61af3fe0770cd96419391a
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/9e7142b9989bad34fdd86cc9c7dec57abfe514ea">9e7142b</a>  Be a little clearer about what is being protected</li>
</ul>


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

----==_mimepart_5d6eec142852f_61af3fe0770cd96419391a--


From nobody Tue Sep  3 15:42: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 22FA312008A for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:42:29 -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 NrqBytiYdne7 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:42: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 9DE9A120044 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:42:26 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:42:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567550545; bh=XYya/u4Tsly2Zxic6etdpmU2KAuO6053ipmk2l/+nFY=; h=Date:From:To:Subject:From; b=z3UEJxcLNHDlBC4jPFWAt+AhoFc/xkhlhc+kP/VS0Her7LZo9lcPFttILTs3YQAwj o8K0xguhMrFeTQmG+eAmDUWq6m6eODlaA564cH7NN5a/vE44BA1ikXaTpQLpsMM0v4 65a+G+LG5z/1P1FxPTFS3NwLS1VX6REJhn0idGyY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/de02b0-f40a9d@github.com>
Subject: [quicwg/base-drafts] f40a9d: Script updating gh-pages from 9e7142b9. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wOYpcbXV5PiXmEuqzRVFeMmEiPc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:42:29 -0000

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

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

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



From nobody Tue Sep  3 15:43: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 F1FC912004F for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:43: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 Pdr2tQdfgvkW for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:43:32 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 96476120044 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:43:32 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:43:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567550611; bh=CWti4tj2+kwUbH2R49mkkmCHyKOe6A+oSsk6Dxvsdok=; h=Date:From:To:Subject:From; b=p7OR8qtRrCgPxy7i9mMu9P1+pYy0M+HoEffeA/KErEjd81vic4QXd5VD4RyTC4nbt i+XpVEJ2mchhweisbvFirgo4YQnremPWYeBUTEgVf1d4yW/7Pjzx1/RaGSYZy2bJrq bRDfkD3uHJPCfJBOQY9HHCmC6bn4q6pYotH3ioys=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/b47dbb-617c4a@github.com>
Subject: [quicwg/base-drafts] 617c4a: 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/HyWL07DkLoXqdp05JFzcZnhsOfs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:43:34 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: 617c4a7d1b2cc2b254935e0a5c48753f00b030c9
      https://github.com/quicwg/base-drafts/commit/617c4a7d1b2cc2b254935e0a5c48753f00b030c9
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-03 (Tue, 03 Sep 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 Tue Sep  3 15: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 D913812008A for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:43:41 -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 2zDfX4T2YiNv for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:43: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 62585120044 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:43:40 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:43:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567550619; bh=MHakSPQZuH2zvBRgPHD4GBO13QMRQhMWn1nhS822iq4=; h=Date:From:To:Subject:From; b=i2HNRQmvG4MypY19bTNbgRis1UZGHz5SZy0R5kX7535+19SDe1NT9dy5Gk+574hML WHTczkisf2AhCyH1Zr7v0dBzPmZ8nPI4RNdQYixFsY0zf+lbq+vSFty68Cs2p3X7fO Uy11cD6ApmBhG4nEdpHTu4z+oiQbT4GQp8DgJiNU=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/617c4a-d2d1bb@github.com>
Subject: [quicwg/base-drafts] d2d1bb: 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/KSTmZqs8LvvL3WdCznnJ0cz35QY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:43:42 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: d2d1bb8075af5460de0bfd2d5e604fce502168c0
      https://github.com/quicwg/base-drafts/commit/d2d1bb8075af5460de0bfd2d5e604fce502168c0
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-03 (Tue, 03 Sep 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 Tue Sep  3 15:43: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 AF8B0120044 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:43:42 -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 B8DZxcN3_-yw for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:43: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 7BEA612004F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:43:41 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:43:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567550620; bh=L3kfVN80cPY6i8GNHvxgA5wqJ0tnS207xPubaUXqfII=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hqn8OsrQKVXjN7kQGx+lNdv3bXwrQKv2ph6PLPvdHuFtLpWBu+26qUpP91HtH4oVW MREI4ly24RjSFY/jNj/4M493IwFZRBmF0OAiWSLpaI87nq/nCu4/AUUUhSxrP4ZH1H VQTsih1e+5yOf1lMB5bIDbx7Wt7t1lPx0p4vmje4=
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/3993503402@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_5d6eec9cbf4cc_3cab3fc58c4cd95c22263b"; 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/p-fZ5bXoXMeni8XPmOwBfXI-R3s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:43:43 -0000

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

@ianswett pushed 1 commit.

617c4a7d1b2cc2b254935e0a5c48753f00b030c9  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/b47dbbc79b26d958d54146d09c0c172cd28db5d4..617c4a7d1b2cc2b254935e0a5c48753f00b030c9

----==_mimepart_5d6eec9cbf4cc_3cab3fc58c4cd95c22263b
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/617c4a7d1b2cc2b254935e0a5c48753f00b030c9">617c4a7</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/b47dbbc79b26d958d54146d09c0c172cd28db5d4..617c4a7d1b2cc2b254935e0a5c48753f00b030c9?email_source=notifications&amp;email_token=AFTOJK4VWEHTGTMIIZIYBATQH3SBZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJQGM2DAMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZZ5AUCPTYDWQMTKLTQH3SBZANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2NBIKWRIX5HQKDLJ3QH3SBZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJQGM2DAMQ.gif" height="1" width="1" 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/b47dbbc79b26d958d54146d09c0c172cd28db5d4..617c4a7d1b2cc2b254935e0a5c48753f00b030c9?email_source=notifications\u0026email_token=AFTOJK4VWEHTGTMIIZIYBATQH3SBZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJQGM2DAMQ",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/b47dbbc79b26d958d54146d09c0c172cd28db5d4..617c4a7d1b2cc2b254935e0a5c48753f00b030c9?email_source=notifications\u0026email_token=AFTOJK4VWEHTGTMIIZIYBATQH3SBZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJQGM2DAMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d6eec9cbf4cc_3cab3fc58c4cd95c22263b--


From nobody Tue Sep  3 15:43: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 0916812004F for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:43:50 -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 Mo16CqWJ6i1u for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:43:48 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 67470120044 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:43:48 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:43:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567550627; bh=qqxvApLJdhsgZ+NX5PDNAXGVPGSx77DPzLkYC7eN8/Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tZ50NIazUGO6Vyl8W32TaCDS1I3ciNCr/bHYGQ5L5qA7mEsEMijCvA9YifrjqXETk d5cSma2La3udV53TjOcbzRpCQLSjJ0lQ1wECKseusU0m2Upi+6X4u8dwiT9YF/vpXG SrTxQIKoIGI86GMoRnSjepE5AyjCicgl708ZqiAI=
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/3993503647@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_5d6eeca374391_169e3f94c40cd9683400f4"; 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/P6QBekczaqS9Sa65DJS6V-aFozw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:43:50 -0000

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

@ianswett pushed 1 commit.

d2d1bb8075af5460de0bfd2d5e604fce502168c0  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/617c4a7d1b2cc2b254935e0a5c48753f00b030c9..d2d1bb8075af5460de0bfd2d5e604fce502168c0

----==_mimepart_5d6eeca374391_169e3f94c40cd9683400f4
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/d2d1bb8075af5460de0bfd2d5e604fce502168c0">d2d1bb8</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/617c4a7d1b2cc2b254935e0a5c48753f00b030c9..d2d1bb8075af5460de0bfd2d5e604fce502168c0?email_source=notifications&amp;email_token=AFTOJKZX5RUKNA2HO5UQA63QH3SCHA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJQGM3DINY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK57VJTFEIGIFS4KO2TQH3SCHANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK46IONPQ5E3ZGZXGK3QH3SCHA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJQGM3DINY.gif" height="1" width="1" 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/617c4a7d1b2cc2b254935e0a5c48753f00b030c9..d2d1bb8075af5460de0bfd2d5e604fce502168c0?email_source=notifications\u0026email_token=AFTOJKZX5RUKNA2HO5UQA63QH3SCHA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJQGM3DINY",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/617c4a7d1b2cc2b254935e0a5c48753f00b030c9..d2d1bb8075af5460de0bfd2d5e604fce502168c0?email_source=notifications\u0026email_token=AFTOJKZX5RUKNA2HO5UQA63QH3SCHA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJQGM3DINY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d6eeca374391_169e3f94c40cd9683400f4--


From nobody Tue Sep  3 15:45: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 372D6120819 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:44: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 taffXPKX8KW1 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:44: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 9EE201208EA for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:44:49 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:44:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567550689; bh=B+v6Kn5NwqkuKxWzDW6WhK+wK87ulfGyqUiDBMp3HQs=; h=Date:From:To:Subject:From; b=i3kcUog+N6CbjbvgJ241XXfgURO5gqWzqjHFpOt0xq8YnuEnNnyFaca19zQ3KJB0r AO1PsV3ffojHQmt36dRcp0w4K8S9ZHHb744cGtzRtT7JFDjSUPYCBSjgweOoIa4znA z9DqdQJ0DrPaGX92SxSImFCn9cKIzQpDSr0Sn2vY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f40a9d-ea8cc2@github.com>
Subject: [quicwg/base-drafts] ea8cc2: Script updating gh-pages from 617c4a7d. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6yuaxrb3YHhNzwZQTbQ1q-gohMw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:45:02 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ea8cc269f18f2709594f1e0fde114953cfbb82ba
      https://github.com/quicwg/base-drafts/commit/ea8cc269f18f2709594f1e0fde114953cfbb82ba
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-03 (Tue, 03 Sep 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 617c4a7d. [ci skip]



From nobody Tue Sep  3 15: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 896F31208D4 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:45: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 xNYKkTB2YnVM for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:45: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 D1DE01208FF for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:45:05 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:45:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567550705; bh=OgeV6E+d3hx9q2FnVHDaHE8+97iQ4AJk7fTsRCwUzwY=; h=Date:From:To:Subject:From; b=WsPMdhQS/ikxLo9CNpjTbrZ8Gt0ZhQYQsp/Dk1BwWgqSJH1oORbNHpz1r/2Ghys5H F7v+A5A2IomjfvMfOUMc4cvW/NPuTz1cYecZyWAbiVPWRmJ8QQE4a/x01Bh6+6VR0D TPf8wTgVPESVllkepcdjnQFy1/8kbk3bKDZEStSM=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ea8cc2-b2095d@github.com>
Subject: [quicwg/base-drafts] b2095d: Script updating gh-pages from d2d1bb80. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/75_5sUvSTTKdd4yxGVW8I_KMpN0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:45:19 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: b2095d144a5dba3fe6d85cdb318ca9ec070ec9bb
      https://github.com/quicwg/base-drafts/commit/b2095d144a5dba3fe6d85cdb318ca9ec070ec9bb
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-03 (Tue, 03 Sep 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 d2d1bb80. [ci skip]



From nobody Tue Sep  3 15:45: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 2A2A712008A for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:45: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 tyJO4oonzz9p for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:45: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 CB9AA120044 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:45:34 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:45:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567550734; bh=rShRt+BfZVOxMt+bZP0KK4HQr9j8f4PZEbob25t0axY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IWmJtPT0EWnyYTIoXD1DYx7PKETHPeoy9smMiw/RCaaIRf8s+MN4VTREn9VqOljHB axmRoH3wL/PCKhF6f2oJmn8qr9KxsbdcRlpWzQUFeponBvdK+tue1j4HROF6GqO3+W 25pgGM6qwqoFq0C9oLF9svVYcmMc5U53r4MHvLOE=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZQHXMRDXMK7OCSZKF3PQPY5EVBNHHBZ4IYAM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2993/c527669147@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2993@github.com>
References: <quicwg/base-drafts/pull/2993@github.com>
Subject: Re: [quicwg/base-drafts] Perform stateless reset token comparisons in constant time (#2993)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6eed0e241ef_20703f8ddeecd960753b1"; 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/f67Lq2uNORWn_JBYVdInwLpcVHM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:45:36 -0000

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

Maybe I'm missing something obvious here, but how is this easy to implement?

In my implementation, I have a map of reset tokens -> connections. Unless I switch to a constant time map implementation (the standard library doesn't provide one, you'd have to write that yourself), the comparisons are (probably?) not constant time. Given that this would cause some considerable complexity, I don't think it's worth defending against this rather uninteresting attack, and I'm not sure if a MUST is the right way to go 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/2993#issuecomment-527669147
----==_mimepart_5d6eed0e241ef_20703f8ddeecd960753b1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Maybe I'm missing something obvious here, but how is this easy to implement?</p>
<p>In my implementation, I have a map of reset tokens -&gt; connections. Unless I switch to a constant time map implementation (the standard library doesn't provide one, you'd have to write that yourself), the comparisons are (probably?) not constant time. Given that this would cause some considerable complexity, I don't think it's worth defending against this rather uninteresting attack, and I'm not sure if a MUST is the right way to go 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/2993?email_source=notifications&amp;email_token=AFTOJKZQ5UVM6CTH2S7RUB3QH3SI5A5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5ZZPGY#issuecomment-527669147">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7P3MY6WUGVGE3ZQJDQH3SI5ANCNFSM4IP3T76Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5HVDOSRP5SNTFHTCLQH3SI5A5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5ZZPGY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2993?email_source=notifications\u0026email_token=AFTOJKZQ5UVM6CTH2S7RUB3QH3SI5A5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5ZZPGY#issuecomment-527669147",
"url": "https://github.com/quicwg/base-drafts/pull/2993?email_source=notifications\u0026email_token=AFTOJKZQ5UVM6CTH2S7RUB3QH3SI5A5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5ZZPGY#issuecomment-527669147",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6eed0e241ef_20703f8ddeecd960753b1--


From nobody Tue Sep  3 15:48: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 779D312008A for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:48:45 -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 NwmmKvq59Gdk for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:48: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 09E18120044 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:48:44 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:48:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567550923; bh=yEv49FXH5utKnVYupYU6juDlySUBFedx4H0hGWlBdpk=; h=Date:From:To:Subject:From; b=eHIx9zZdZJKpTxGxifNLOOfC/izsEmkerwPlZ84+jLrRHrc4q7govQCTMxdZy+OH+ 6VKNaLOw7ker5qJZivAAndl8k1I3+RymjIj7bDi2W2gLziLI/aJqzviSdXwPe9MAG9 gQrRjrvoWkFsaEnHjWZA7I7uSq+rln3nAfJ2vheM=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/d2d1bb-fd8bdd@github.com>
Subject: [quicwg/base-drafts] fd8bdd: 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/EMLXSOMvJgIl1SYa_uvyscKt9_o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:48:46 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: fd8bdd7adecd6f5fde89e440d1ae18eb28743d7a
      https://github.com/quicwg/base-drafts/commit/fd8bdd7adecd6f5fde89e440d1ae18eb28743d7a
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-03 (Tue, 03 Sep 2019)

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

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



From nobody Tue Sep  3 15: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 C7BCF12004F for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:48:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.28
X-Spam-Level: 
X-Spam-Status: No, score=-6.28 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, 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 QhmmCbByyCVZ for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:48:52 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 36190120044 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:48:52 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 5563C2C0E76 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:48:51 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:48:51 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2907/push/3993514843@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_5d6eedd345509_3f583fe1a2ccd9681443e5"; 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/sLEO3NxhO4PJ4Z9VCYlV6M45L5M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:48:54 -0000

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

@ianswett pushed 1 commit.

fd8bdd7adecd6f5fde89e440d1ae18eb28743d7a  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/d2d1bb8075af5460de0bfd2d5e604fce502168c0..fd8bdd7adecd6f5fde89e440d1ae18eb28743d7a

----==_mimepart_5d6eedd345509_3f583fe1a2ccd9681443e5
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/fd8bdd7adecd6f5fde89e440d1ae18eb28743d7a">fd8bdd7</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/d2d1bb8075af5460de0bfd2d5e604fce502168c0..fd8bdd7adecd6f5fde89e440d1ae18eb28743d7a?email_source=notifications&amp;email_token=AFTOJK6P3DWX5Y6L6BHFNJDQH3SVHA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJRGQ4DIMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6XJZB5J2AE2IQPHUDQH3SVHANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7JTWNUZ3PIVSY4GK3QH3SVHA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJRGQ4DIMY.gif" height="1" width="1" 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/d2d1bb8075af5460de0bfd2d5e604fce502168c0..fd8bdd7adecd6f5fde89e440d1ae18eb28743d7a?email_source=notifications\u0026email_token=AFTOJK6P3DWX5Y6L6BHFNJDQH3SVHA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJRGQ4DIMY",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/d2d1bb8075af5460de0bfd2d5e604fce502168c0..fd8bdd7adecd6f5fde89e440d1ae18eb28743d7a?email_source=notifications\u0026email_token=AFTOJK6P3DWX5Y6L6BHFNJDQH3SVHA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJRGQ4DIMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d6eedd345509_3f583fe1a2ccd9681443e5--


From nobody Tue Sep  3 15:49: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 CD42012008A for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:49: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 taqLZI4hXlsx for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:49: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 AF2D012004F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:49:55 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:49:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567550994; bh=2MD5LlHn+vVuodY3aYSCwXGlH2w7ukeFGzjsmLoG1w4=; h=Date:From:To:Subject:From; b=fTxI+Y6+k6kj0KAANaOzz6n5JHfY8ZMMzsrv7FoktHtCJcv4fm+edQmJm8CJ6yOf+ 8rZPG/6Mm4UpVKyRyakxbMyGWZ+udWvhJ+fteGdnCVcH13vn3xQlAAJ4+nXKDmXUhC 0ArRnxGyXvO8PhU1hIEjZR31Iy2pYfuQj0X5u/Ys=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b2095d-cf97d2@github.com>
Subject: [quicwg/base-drafts] cf97d2: Script updating gh-pages from fd8bdd7a. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PfhOg0Pp4d3m5xTs2Zqv2lc53DY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:49:57 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: cf97d26e3c8037d62e08f309bc5a110e98248b22
      https://github.com/quicwg/base-drafts/commit/cf97d26e3c8037d62e08f309bc5a110e98248b22
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-03 (Tue, 03 Sep 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 fd8bdd7a. [ci skip]



From nobody Tue Sep  3 15:50: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 E488212004F for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:50:40 -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 n5JZKYsOSx1p for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:50:39 -0700 (PDT)
Received: from out-14.smtp.github.com (out-14.smtp.github.com [192.30.254.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 73B02120044 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:50:39 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:50:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567551039; bh=x2flG6/ZPyFx5EuBxtnFbRjgrWacujc8Vm92NYcUack=; h=Date:From:To:Subject:From; b=qeRCUhXISZQt0FEFwGy5JfOIIjXngbevQst/EcjjovXf54/0fTszk533sPuHn7yNt B0EtyENVvxDN2StfMm7lI0fJywwQE/Ubnm6XRQO9NqXedLHm03W9umyen064EaDPDF TAyIOh7fzTqPO3GFyY7inK8eGVfijGraWr5b4mG0=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/fd8bdd-9a77e2@github.com>
Subject: [quicwg/base-drafts] 9a77e2: 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/aqrqhcaT8yHmFcVx6VzSYZfUahU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:50:41 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9a77e26fa76c8290d1738c53f07666de75ebad47
      https://github.com/quicwg/base-drafts/commit/9a77e26fa76c8290d1738c53f07666de75ebad47
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-03 (Tue, 03 Sep 2019)

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

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



From nobody Tue Sep  3 15:50: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 5CA91120044 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:50: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, HTML_IMAGE_ONLY_24=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 3AXsQbGKsvvY for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:50:47 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D13071200B4 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:50:46 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:50:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567551046; bh=5AVD2SFWbCPJOCuOzZR880IWi4Oz+IJ+d8GiZ33bUDk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Jf5nE1ah9lX7V5rheo8RxnXiPYCbd94SS9hCEpBr9zrSlXjWh/nbhIDZyCMlNhby+ WpRFKdEs20tacrhGCcHl1yrzjfZru5zxdwUGYnb16rx5A7YP23FQjTUuy1YOPV1OYm kcXh6JTUaU7mXrcNjhjusJ1K+sDYH7SVy23p8CyE=
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/3993518956@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_5d6eee46f227_47583ff0db6cd96c69490"; 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/AlTpcvjuRj2ctx5Us1kI8w1poYM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:50:49 -0000

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

@ianswett pushed 1 commit.

9a77e26fa76c8290d1738c53f07666de75ebad47  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/fd8bdd7adecd6f5fde89e440d1ae18eb28743d7a..9a77e26fa76c8290d1738c53f07666de75ebad47

----==_mimepart_5d6eee46f227_47583ff0db6cd96c69490
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/9a77e26fa76c8290d1738c53f07666de75ebad47">9a77e26</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/fd8bdd7adecd6f5fde89e440d1ae18eb28743d7a..9a77e26fa76c8290d1738c53f07666de75ebad47?email_source=notifications&amp;email_token=AFTOJK3ZSTJR4BWC6U4G2QDQH3S4NA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJRHA4TKNQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK64OWGK7DUZVG3F6TTQH3S4NANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4RQODWRS342EA6R6DQH3S4NA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJRHA4TKNQ.gif" height="1" width="1" 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/fd8bdd7adecd6f5fde89e440d1ae18eb28743d7a..9a77e26fa76c8290d1738c53f07666de75ebad47?email_source=notifications\u0026email_token=AFTOJK3ZSTJR4BWC6U4G2QDQH3S4NA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJRHA4TKNQ",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/fd8bdd7adecd6f5fde89e440d1ae18eb28743d7a..9a77e26fa76c8290d1738c53f07666de75ebad47?email_source=notifications\u0026email_token=AFTOJK3ZSTJR4BWC6U4G2QDQH3S4NA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJRHA4TKNQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d6eee46f227_47583ff0db6cd96c69490--


From nobody Tue Sep  3 15:58: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 B98BE12008A for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:58: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 So_fnsWtpa-t for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:58: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 D496212004F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:58:18 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:58:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567551497; bh=tL5zuBAPvbeOMIR3ABDf2IeQvK13mipYaTxX9u+v8wA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BuS5HB1plaSL/DSH2ChxZ1+gzlYGyce3gbdCF2510z48KCWnfuuZJQWyhfZBY/1Hi /TnZ/xk00Tlkz4bqUNuXdITjm9hQr/XpFwl6SZFnMxjAK8bgvhZqqwY+4GcQ8b/kEj OwgzwRkUl2hFSkY2uJ0vQPiBroC9cbL4xNWPjFmU=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3FMCDVBOHNH23V5Z53PQYJTEVBNHHBX66EHQ@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/283303146@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_5d6ef009bfb28_12963f84afccd968129316"; 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/V3DaBuA5_sV4YXsSskvbwVHQ4BM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:58:21 -0000

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

janaiyengar commented on this pull request.



> @@ -1189,10 +1191,13 @@ SetLossDetectionTimer():
     loss_detection_timer.update(loss_time)
     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):
+  // Cancel the timer if there are no ack-eliciting packets
+  // in flight and the endpoint is a server. Do not cancel the
+  // timer until the client has received a Handshake or 1-RTT ACK.
+  if (no ack-eliciting packets in flight &&
+      (endpoint is server ||
+       has received Handshake ACK ||
+       has received 1-RTT ACK)):

Suggestion: if !(ack-eliciting packet in flight || (endpoint is client && has not received handshake ACK && has not received 1-RTT ACK))

-- 
You are receiving this 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-283303146
----==_mimepart_5d6ef009bfb28_12963f84afccd968129316
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_r320511894">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1189,10 +1191,13 @@ SetLossDetectionTimer():
     loss_detection_timer.update(loss_time)
     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):
+  // Cancel the timer if there are no ack-eliciting packets
+  // in flight and the endpoint is a server. Do not cancel the
+  // timer until the client has received a Handshake or 1-RTT ACK.
+  if (no ack-eliciting packets in flight &amp;&amp;
+      (endpoint is server ||
+       has received Handshake ACK ||
+       has received 1-RTT ACK)):
</pre>
<p>Suggestion: if !(ack-eliciting packet in flight || (endpoint is client &amp;&amp; has not received handshake ACK &amp;&amp; has not received 1-RTT ACK))</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK2OH7REVZFBCL53OLDQH3TYTA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRNZ2Q#pullrequestreview-283303146">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK67VZRXVTIHCZGCED3QH3TYTANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5KVWQJNXYXX5BTXRLQH3TYTA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRNZ2Q.gif" height="1" width="1" 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=AFTOJK2OH7REVZFBCL53OLDQH3TYTA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRNZ2Q#pullrequestreview-283303146",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK2OH7REVZFBCL53OLDQH3TYTA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRNZ2Q#pullrequestreview-283303146",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6ef009bfb28_12963f84afccd968129316--


From nobody Tue Sep  3 15:58: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 0A0D81200B4 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:58: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 WJ97RYnddpA8 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:58: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 D4F431200CE for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:58:23 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:58:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567551503; bh=Yj5SWPwcYM179+JEvN8hrGj5IC0AeiEFUPt8g/9wVh8=; h=Date:From:To:Subject:From; b=u2PvYFnt8zLTSgY1loR74vQ8jQmLW1T3K3P+yp3BKtd2cHpfV+HC/piPQxT864dI3 caDbTUd2SasmccpEnOS/jjqRE/qrUkSOEXlXEIkUPvyU2sVvpWzEqpcNSJWyDjProZ qoxpWzUMwtx17OEkBBlj7UOUOZhKjOmcbIOaKxmU=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/9a77e2-8eab33@github.com>
Subject: [quicwg/base-drafts] 8eab33: 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/gY5StMpi3f4ZfMPegEhH-YFHFjc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:58:26 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8eab33dad32d29fa10b618312b995eaf7c329e12
      https://github.com/quicwg/base-drafts/commit/8eab33dad32d29fa10b618312b995eaf7c329e12
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-03 (Tue, 03 Sep 2019)

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

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



From nobody Tue Sep  3 15:58: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 8EF4612004F for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:58: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, HTML_IMAGE_ONLY_24=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 3fQ0BpVvywqg for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:58: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 DCA3712008A for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:58:31 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:58:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567551510; bh=VCxonDeXAYPWWaz0qfiLKO4X5cf74cVcDQ9zTFa+Jh4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ml8vqY/iahih28SBualpsxP7+EkimARnF3CiPoLD6m7U2ptDmfVcL2RqWC9iiGWje DCw4Gak/JpVSugyZi0uuMBrtWkXCEfRZUvhgaQqgyiWQIb0W6DKebwZYVfIGD6eqW9 5HsI/l9P0zJ9doD7wp58vlXXaAQU5br8/FVcUb/o=
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/3993536248@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_5d6ef016c7b76_206c3f8ddeecd960108466"; 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/HbUK7YI4noi5CA0Sx3XV5e-VSlM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:58:34 -0000

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

@ianswett pushed 1 commit.

8eab33dad32d29fa10b618312b995eaf7c329e12  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/9a77e26fa76c8290d1738c53f07666de75ebad47..8eab33dad32d29fa10b618312b995eaf7c329e12

----==_mimepart_5d6ef016c7b76_206c3f8ddeecd960108466
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/8eab33dad32d29fa10b618312b995eaf7c329e12">8eab33d</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/9a77e26fa76c8290d1738c53f07666de75ebad47..8eab33dad32d29fa10b618312b995eaf7c329e12?email_source=notifications&amp;email_token=AFTOJK4RWTH7YKQ2SNTTYYLQH3TZNA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJTGYZDIOA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5B23QU5ERX6MX7AZLQH3TZNANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY4IN76PMV3G2UFKTLQH3TZNA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJTGYZDIOA.gif" height="1" width="1" 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/9a77e26fa76c8290d1738c53f07666de75ebad47..8eab33dad32d29fa10b618312b995eaf7c329e12?email_source=notifications\u0026email_token=AFTOJK4RWTH7YKQ2SNTTYYLQH3TZNA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJTGYZDIOA",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/9a77e26fa76c8290d1738c53f07666de75ebad47..8eab33dad32d29fa10b618312b995eaf7c329e12?email_source=notifications\u0026email_token=AFTOJK4RWTH7YKQ2SNTTYYLQH3TZNA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJTGYZDIOA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d6ef016c7b76_206c3f8ddeecd960108466--


From nobody Tue Sep  3 15:59: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 9C41C12008A for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:59:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.992
X-Spam-Level: 
X-Spam-Status: No, score=-6.992 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.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 PGh2pwH9s4YX for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 15:59:49 -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 C321512004F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 15:59:49 -0700 (PDT)
Date: Tue, 03 Sep 2019 15:59:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567551589; bh=3vAHfjlmMi7EIfSEsWntvz+8nDqAh2CBUV2FioLwhjM=; h=Date:From:To:Subject:From; b=arEfpNOOD13KNUKfX7KeLleOAmOMWW/YbXNZ588Xc8ZUtdfip0tcco+caArv1BIg9 ptf68EvBYvP0ZQYQv/W+zJcIFDk9Hs66kV/rM2k1gl4nWOo7MEavSmmXsulfPSzgPI /fv9wLaqwc3JagawYWsfKdBUQGNHNmFUy5if2MWE=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/cf97d2-13c931@github.com>
Subject: [quicwg/base-drafts] 13c931: Script updating gh-pages from 8eab33da. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/otNA23udWaBfGmg46cRWvi2hHRQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 22:59:52 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 13c931ff0033bd05586624ed559d20b579ad51ce
      https://github.com/quicwg/base-drafts/commit/13c931ff0033bd05586624ed559d20b579ad51ce
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-03 (Tue, 03 Sep 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 8eab33da. [ci skip]



From nobody Tue Sep  3 16:03: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 71CB812084D for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:03:15 -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 Yq4iXHkhIhGw for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:03: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 915FB120152 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:03:13 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:03:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567551792; bh=+ugpFVD4QygIYpCdTRGx7ITjYKMjJWpHGgkEvf2ok7I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NUSpKnsr2gaapUYG6llkr0fJYaoJ6PU7zLzdZQYKWgdWAGTw4owqSApfkDWD7ZBsS CEzHT7Sw/jXv6gaz4IvFmVnMJDYhcx/FcHmhHetZY/c1AhlzkDp0V91Bl2UDFo2EBP E8OyfO4GIroVKFpDPxEgT9yli3BES8qDnGO3tkuY=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK43QMR7DZZIQL5HIS53PQY4BEVBNHHBX66EHQ@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/283304506@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_5d6ef130845fd_faf3f83c16cd96c132114"; 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/bTCVrkq0HmXrfhSBdvrt3BQqZTk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:03:28 -0000

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

janaiyengar commented on this pull request.



> @@ -1189,10 +1191,14 @@ SetLossDetectionTimer():
     loss_detection_timer.update(loss_time)
     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):
+  // Cancel the timer if there are no ack-eliciting packets
+  // in flight and the endpoint is a server. Do not cancel the

```suggestion
  // in flight, with the following exception. Do not cancel the
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2907#pullrequestreview-283304506
----==_mimepart_5d6ef130845fd_faf3f83c16cd96c132114
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_r320513049">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1189,10 +1191,14 @@ SetLossDetectionTi=
mer():=0D
     loss_detection_timer.update(loss_time)=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
+  // Cancel the timer if there are no ack-eliciting packets=0D
+  // in flight and the endpoint is a server. Do not cancel the=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-  // in flight and the endpoint is a server. =
Do not cancel the=0D
+  // in flight, with the following exception. Do not cancel the=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/2907?email_source=3Dnotifications&amp;email_token=3DA=
FTOJKZGH5EAVOKDMUD54DTQH3ULBA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDROEOQ#pullrequestreview-283304506=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK6JKBR6VSYFU4XHQXTQH3ULBANCNFSM4IEVHR7A">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJKZX2XGY=
45YHH2Q2ZYLQH3ULBA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCDROEOQ.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=3DAFTOJKZGH5EAVOKDMUD54DTQH3ULBA5CNFSM4IEV=
HR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
DROEOQ#pullrequestreview-283304506",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=3Dno=
tifications\u0026email_token=3DAFTOJKZGH5EAVOKDMUD54DTQH3ULBA5CNFSM4IEVHR=
7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDR=
OEOQ#pullrequestreview-283304506",=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_5d6ef130845fd_faf3f83c16cd96c132114--


From nobody Tue Sep  3 16:03: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 8B69612084D for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:03: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 Dxba7Oo7xqhY for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:03: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 86E3D1208E7 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:03:36 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:03:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567551815; bh=hRIASorrqMV1ta/eSI8XWESBWnIpxC1s+SFTs5IyqUw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kVNm5VmVbKpwzcvLAGMvgA/QyC7OF5uY3ju1uHIexVcz/02S6Bl5CXso73P8l1GGK 8SNgeNv2Daplt7CCxwSxf2cxPcGuE3Ka1996PBDt2nUInZuQqMBH2eXoj+ylddq5Ak qFDPuNSctzkh2w0qb7VFDnO2p7Ky9PMI+0hhesKY=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6F76XNWZBQT7PMS453PQY5PEVBNHHBX66EHQ@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/283304626@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_5d6ef1476c5e5_3c93fc1998cd9681597ab"; 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/0ex4iuiwuPeUAKR6PPats2hFCVo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:03:51 -0000

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

janaiyengar commented on this pull request.



> @@ -1189,10 +1191,14 @@ SetLossDetectionTimer():
     loss_detection_timer.update(loss_time)
     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):
+  // Cancel the timer if there are no ack-eliciting packets
+  // in flight and the endpoint is a server. Do not cancel the
+  // timer until the client has received an acknowledgement that

```suggestion
  // timer at a client until the client has received an acknowledgement 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#pullrequestreview-283304626
----==_mimepart_5d6ef1476c5e5_3c93fc1998cd9681597ab
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_r320513138">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1189,10 +1191,14 @@ SetLossDetectionTi=
mer():=0D
     loss_detection_timer.update(loss_time)=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
+  // Cancel the timer if there are no ack-eliciting packets=0D
+  // in flight and the endpoint is a server. Do not cancel the=0D
+  // timer until the client has received an acknowledgement that=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-  // timer until the client has received an a=
cknowledgement that=0D
+  // timer at a client until the client has received an acknowledgement =
that=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=
FTOJK2ZIWTI7OSMEZXBJYLQH3UMPA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDROFMQ#pullrequestreview-283304626=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK42LCCZQNXBASY6SM3QH3UMPANCNFSM4IEVHR7A">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJKYTVKYH=
3YY73HHQ3KDQH3UMPA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCDROFMQ.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=3DAFTOJK2ZIWTI7OSMEZXBJYLQH3UMPA5CNFSM4IEV=
HR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
DROFMQ#pullrequestreview-283304626",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK2ZIWTI7OSMEZXBJYLQH3UMPA5CNFSM4IEVHR=
7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDR=
OFMQ#pullrequestreview-283304626",=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_5d6ef1476c5e5_3c93fc1998cd9681597ab--


From nobody Tue Sep  3 16:04: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 A1FBB1200B8 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:04: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 P2c2P27vSQ8d for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:04:18 -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 6419B12004F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:04:18 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:04:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567551857; bh=0EQWZWQd+xQ/t3elKOntT0MOqPPw8AEh3RlgE2wSd5k=; h=Date:From:To:Subject:From; b=ARTozkQwSpcuKsg5FA+POBohNtE5Ido3EvhpnHadPed5oen2z+LRGBTxRsIAragKY eQHj2xubJdRpj9RWibOZZOQoqWVZzVzxraTTNRBH5FY6YocxZRgf26/m6KGs2jbOeZ b5jB/32upoyqh6rnTDir8F6ZvUrLr/XIZMXVkeAg=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/8eab33-4df749@github.com>
Subject: [quicwg/base-drafts] 4df749: 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/94MH1bRVtxV9B8SIvZQQEvPXdmk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:04:20 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4df749464d69b8239d173a2a183c0a7491436448
      https://github.com/quicwg/base-drafts/commit/4df749464d69b8239d173a2a183c0a7491436448
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-03 (Tue, 03 Sep 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 Tue Sep  3 16:04: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 7F3E0120096 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:04: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 HTQz-_jffN3O for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:04:26 -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 2952212004F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:04:26 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:04:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567551865; bh=/eT9h1zlrDGbJ70anyPW7cG1ty6xBNwEBhl+7r1k6Jc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=t3DWRZFSfDk3UEROFGQMELN5F2OxGJDL3HzBd/F2QPkvYLniVs/6M0VGTwJry1D1N WAfI8uP/9RSpPRWsgpKSFLAvKBZOG3ZElE5Yyv2I2DPlM+WG207OW43EStHToTrp7c 0L31dpc0qSngUx6pag8Mntd8aeDPsZy12rmbE2Vg=
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/3993549593@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_5d6ef17964e4e_288e3fb114acd960190135"; 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/280XKhvdADeEBMVgYskkppaOXDA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:04:29 -0000

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

@ianswett pushed 1 commit.

4df749464d69b8239d173a2a183c0a7491436448  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/8eab33dad32d29fa10b618312b995eaf7c329e12..4df749464d69b8239d173a2a183c0a7491436448

----==_mimepart_5d6ef17964e4e_288e3fb114acd960190135
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/4df749464d69b8239d173a2a183c0a7491436448">4df7494</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/8eab33dad32d29fa10b618312b995eaf7c329e12..4df749464d69b8239d173a2a183c0a7491436448?email_source=notifications&amp;email_token=AFTOJK4TFIBZBPBWOYP2HQTQH3UPTA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJUHE2TSMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3LYZRVGOTR6GNRGPDQH3UPTANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK64FBF2PXX27IQWEVLQH3UPTA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJUHE2TSMY.gif" height="1" width="1" 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/8eab33dad32d29fa10b618312b995eaf7c329e12..4df749464d69b8239d173a2a183c0a7491436448?email_source=notifications\u0026email_token=AFTOJK4TFIBZBPBWOYP2HQTQH3UPTA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJUHE2TSMY",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/8eab33dad32d29fa10b618312b995eaf7c329e12..4df749464d69b8239d173a2a183c0a7491436448?email_source=notifications\u0026email_token=AFTOJK4TFIBZBPBWOYP2HQTQH3UPTA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJUHE2TSMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d6ef17964e4e_288e3fb114acd960190135--


From nobody Tue Sep  3 16:04: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 AC1FF120096 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:04:30 -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 KpaozmSRNC0O for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:04: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 2CA8512004F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:04:29 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:04:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567551868; bh=ko+EdGn9OXfE5DH35XvQwqNRUbHaWA1ljDDh/3SZuIw=; h=Date:From:To:Subject:From; b=GdLlfKYjtbYpRf20aMfejK75A18Mt2TBsldiLtEDPshQ55Oz8UNiEiaxwfoNUkQmY VRLMQxImtttNoF+39nVy3YsfD4apAFkmv/ITVoXY9E5dcCe38xZ7TNfCkGBkJrxJqH E2AoO8UNRlo0mY7HPfXTZ9pQx3o2R8bGWAJ4JPX8=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/4df749-04ac7b@github.com>
Subject: [quicwg/base-drafts] 04ac7b: 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/gVFw8pt39a_nYfsU7R9FXPW690Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:04:31 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: 04ac7b29c94e168a4bc7589420d1038a709ed876
      https://github.com/quicwg/base-drafts/commit/04ac7b29c94e168a4bc7589420d1038a709ed876
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-03 (Tue, 03 Sep 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 Tue Sep  3 16:04: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 99C35120152 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:04: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 J6ZAjnWFuSzM for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:04: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 1AB9D120819 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:04:37 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:04:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567551876; bh=8bL+mihoECOkw5czhE39RyWR+g13O4mPb7LqzPhWoxY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=o/XK7m0i3jB5uK7PdDr1m5QRSxCtkYR1aF9vgvj0TWOvecBSc8wOCQTNFVH/UUMm+ f4fLMS15DQlIs6mXF7f7T8KmnVK3yrHosesJltlWsdyaDMVvGJjXMdI7WQoJuTrtjx /CX+4aVCEOVIR6U2NCQ5RS6SfmPwEX0f0Yf8aIYY=
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/3993549938@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_5d6ef18426f65_7b5a3fd6bd2cd96c96413"; 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/0wy7eulYSLtZVUCDMZAE8zgVMYg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:04:39 -0000

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

@ianswett pushed 1 commit.

04ac7b29c94e168a4bc7589420d1038a709ed876  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/4df749464d69b8239d173a2a183c0a7491436448..04ac7b29c94e168a4bc7589420d1038a709ed876

----==_mimepart_5d6ef18426f65_7b5a3fd6bd2cd96c96413
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/04ac7b29c94e168a4bc7589420d1038a709ed876">04ac7b2</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/4df749464d69b8239d173a2a183c0a7491436448..04ac7b29c94e168a4bc7589420d1038a709ed876?email_source=notifications&amp;email_token=AFTOJKZQEG47323CXVHEJC3QH3UQJA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJUHE4TGOA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK764RMJINGBFUKM54TQH3UQJANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5OMBYSQJK6LL3SDG3QH3UQJA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJUHE4TGOA.gif" height="1" width="1" 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/4df749464d69b8239d173a2a183c0a7491436448..04ac7b29c94e168a4bc7589420d1038a709ed876?email_source=notifications\u0026email_token=AFTOJKZQEG47323CXVHEJC3QH3UQJA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJUHE4TGOA",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/4df749464d69b8239d173a2a183c0a7491436448..04ac7b29c94e168a4bc7589420d1038a709ed876?email_source=notifications\u0026email_token=AFTOJKZQEG47323CXVHEJC3QH3UQJA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJUHE4TGOA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d6ef18426f65_7b5a3fd6bd2cd96c96413--


From nobody Tue Sep  3 16:06: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 B05AD120829 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:05: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 tL8_Eh1x2J18 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:05:57 -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 312DB1208E2 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:05:57 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:05:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567551956; bh=MYFmlxH9H9bdodUjsMkvvpiadyLawgGpeZA6tQz8FUU=; h=Date:From:To:Subject:From; b=pVOaitUjFjC6AgKDWJXh3aC9EOmkKL62dLdUQiD0OBReSmIEgLmIpt2GMLemqo+2Y 13HR8qq5b+uJjzTzQodi/rFGbFjCWq+iWUei6e+etT+uoINhQkCNi8A37/e7eHPaa1 CSBAAQkovnI3Q7ASOx0hUNkfz9h9j8lGJq4KIxU0=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/13c931-9f865d@github.com>
Subject: [quicwg/base-drafts] 9f865d: Script updating gh-pages from 4df74946. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZiTMpNKtS83XNTcb2LBajfLAuRc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:06:10 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9f865d0e8dcd04c7f9136bddf77304240aa69b77
      https://github.com/quicwg/base-drafts/commit/9f865d0e8dcd04c7f9136bddf77304240aa69b77
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-03 (Tue, 03 Sep 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 4df74946. [ci skip]



From nobody Tue Sep  3 16: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 AA2CE120096 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:06: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 NQvp7UwiVdPe for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:06: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 0532A12004F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:06:32 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:06:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567551991; bh=PFmMxMIVRv8AVvvrzYNn7peQAU9mLz6/jVfGCnJckn8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=i6EPmlmnmQQaQLl7nuRwqZdAQmjTlYloC3ANsUr0TxplXOMyb+cEmqL/NNwE5SUYS zTFsRjLWb+eetk18HdnKLs9FCPiu4/GROAnj59v7BTGT8bL5Zvi1xLPcttP4XG3Kf6 /hxE0VKQ1OU5EZ456xm8326rnENwMOGPigxMfISI=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ5J7YG32EOARLUWZ53PQZIPEVBNHHBX66EHQ@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/283305427@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_5d6ef1f745156_12883f84afccd96813113"; 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/EEJ23XmgpOBg3RL8VPICcwo5dWM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:06:34 -0000

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

janaiyengar commented on this pull request.



> @@ -1189,10 +1191,14 @@ SetLossDetectionTimer():
     loss_detection_timer.update(loss_time)
     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):
+  // Cancel the timer if there are no ack-eliciting packets
+  // in flight, with the following exception. Do not cancel the
+  // timer at a client until the client has received an acknowledgement that

```suggestion
  // timer at a client until it has received an acknowledgement 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#pullrequestreview-283305427
----==_mimepart_5d6ef1f745156_12883f84afccd96813113
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_r320513795">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1189,10 +1191,14 @@ SetLossDetectionTi=
mer():=0D
     loss_detection_timer.update(loss_time)=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
+  // Cancel the timer if there are no ack-eliciting packets=0D
+  // in flight, with the following exception. Do not cancel the=0D
+  // timer at a client until the client has received an acknowledgement =
that=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-  // timer at a client until the client has r=
eceived an acknowledgement that=0D
+  // timer at a client until it has received an acknowledgement that=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=
FTOJKYY2BSUVSRMV2DW5K3QH3UXPA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDROLUY#pullrequestreview-283305427=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJKZB3QL5O36DOC7FHHTQH3UXPANCNFSM4IEVHR7A">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK34OMH3=
MGATS6LAHODQH3UXPA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCDROLUY.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=3DAFTOJKYY2BSUVSRMV2DW5K3QH3UXPA5CNFSM4IEV=
HR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
DROLUY#pullrequestreview-283305427",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=3Dno=
tifications\u0026email_token=3DAFTOJKYY2BSUVSRMV2DW5K3QH3UXPA5CNFSM4IEVHR=
7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDR=
OLUY#pullrequestreview-283305427",=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_5d6ef1f745156_12883f84afccd96813113--


From nobody Tue Sep  3 16:07: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 0D0C8120096 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:06: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, 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 rBxq_gW-0T0R for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:06: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 843EF12004F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:06:57 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:06:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567552016; bh=ItyUQLaL8VzoR7hYVaAz+Fj9wFcvOvZNm8xVnpzGPHQ=; h=Date:From:To:Subject:From; b=uivdZNsuxNiI2zJSDwcbPUkT7BgqEVuPq2WVFYxkYHzdfjLBr2oqHBHPtHUu8gd5s QlS9pCX/ElINTlJMsgOKmlzBRbJtQ3WLd1JxHYYBZE9QqDoK0OsfFXg7rjIpvmNIDD UjhUiSbBKaD4JuYUYnXEhdo84zc20cKgztu1PeXc=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/04ac7b-9f0d6e@github.com>
Subject: [quicwg/base-drafts] 9f0d6e: 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/X7QLGKZe4nmlUMN37LVCrEHQmaI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:06:59 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9f0d6eccdc61b7d4e45d64356b69a75f01e452bc
      https://github.com/quicwg/base-drafts/commit/9f0d6eccdc61b7d4e45d64356b69a75f01e452bc
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-03 (Tue, 03 Sep 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 Tue Sep  3 16:07: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 13FE4120096 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:07: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 ScpAOtC9H46V for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:07: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 1B73212004F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:07:06 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:07:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567552025; bh=GCKmeHWGWtMBwV4YggDlU+BWfkQnFzJCSzb/NATnROE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tIddh2gwZyU+ESpP2H58nI8AezaA29gI13w6CX+7DpI3lpu81qoFhnU2RYZuvb1HH VIjrI4wMnIem5QxTNQL+zO6iDGl7L0bINbl3GBoxTFoS6Oi7bhbcsb4yYNkzgmePQ7 hq1QVeTWL2f3KyoZSrFIQemWN64qfFRMsfuKkDlE=
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/3993555168@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_5d6ef219234b6_7c823fc7acecd96c154757"; 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/pNRedjvPc-ROjXqKT1nTkLdzG5s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:07:08 -0000

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

@ianswett pushed 1 commit.

9f0d6eccdc61b7d4e45d64356b69a75f01e452bc  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/04ac7b29c94e168a4bc7589420d1038a709ed876..9f0d6eccdc61b7d4e45d64356b69a75f01e452bc

----==_mimepart_5d6ef219234b6_7c823fc7acecd96c154757
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/9f0d6eccdc61b7d4e45d64356b69a75f01e452bc">9f0d6ec</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/04ac7b29c94e168a4bc7589420d1038a709ed876..9f0d6eccdc61b7d4e45d64356b69a75f01e452bc?email_source=notifications&amp;email_token=AFTOJKZUQ46H37T5K2S7MPLQH3UZTA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJVGUYTMOA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6T6KUZ22QVJLQ6E7LQH3UZTANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZM53TO5TGGM77E22LQH3UZTA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJVGUYTMOA.gif" height="1" width="1" 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/04ac7b29c94e168a4bc7589420d1038a709ed876..9f0d6eccdc61b7d4e45d64356b69a75f01e452bc?email_source=notifications\u0026email_token=AFTOJKZUQ46H37T5K2S7MPLQH3UZTA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJVGUYTMOA",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/04ac7b29c94e168a4bc7589420d1038a709ed876..9f0d6eccdc61b7d4e45d64356b69a75f01e452bc?email_source=notifications\u0026email_token=AFTOJKZUQ46H37T5K2S7MPLQH3UZTA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJVGUYTMOA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d6ef219234b6_7c823fc7acecd96c154757--


From nobody Tue Sep  3 16:08: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 7D136120096 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:08: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 32jl2xgVhtkc for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:08:18 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0E5BF12004F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:08:18 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:08:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567552097; bh=oU6CIiRfkWHrAf+Kd7iTs1C0tilqaiS48aXQ3IeXWe8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=M+Am14av1+6ZNBNEgiUjBk39W0eMYzfN6gQfQ6SokvPOlPGkyqrr2sbxRKyFU+6Bz wm5xlbwez1Xai7VbVyprmhKqr4Lc8NzRgypQ3Lb9MuAARl44RvXmXVhAv4PEsz58yC /Y6GPN8SH3yGM9tl8p+XzPPnieT0Tx/hChY/IUjw=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4ZNHVWGY3BXSUPW3F3PQZPBEVBNHHBX66EHQ@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/283305882@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_5d6ef260f0228_3c263f85a2ccd9601469c5"; 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/EbvMqC3ttDuXcR1jdEdfxhzFjqw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:08:20 -0000

----==_mimepart_5d6ef260f0228_3c263f85a2ccd9601469c5
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/2907#pullrequestreview-283305882
----==_mimepart_5d6ef260f0228_3c263f85a2ccd9601469c5
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/2907?email_source=notifications&amp;email_token=AFTOJK64IHVLD5IU3P4WTPLQH3U6BA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDROPGQ#pullrequestreview-283305882">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6XQOMWQTH5QRHWN6DQH3U6BANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4LBCLEFYO4JSTJPELQH3U6BA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDROPGQ.gif" height="1" width="1" 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=AFTOJK64IHVLD5IU3P4WTPLQH3U6BA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDROPGQ#pullrequestreview-283305882",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK64IHVLD5IU3P4WTPLQH3U6BA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDROPGQ#pullrequestreview-283305882",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6ef260f0228_3c263f85a2ccd9601469c5--


From nobody Tue Sep  3 16:12: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 F17DD120096 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:12:41 -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 K2MmRBRnlCGI for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:12: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 E204412004F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:12:40 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:12:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567552360; bh=YHoG6xmyrS/haNfRHhrrOoKIam7Cha49PJlEtH9L1PA=; h=Date:From:To:Subject:From; b=MtHlxxrcPS0kIzJUp+KftBP10UBGI+GOehmdAERuNWKT3SV2HtkSYOcf3AgjjTFIK 7ieP8l231czHq+0Fzxex0QXdi46ZafCdUPyMZvtlFmNKJIYWiPAdHe1YcXIoKbPPKU VgqcHM30jwEws6iFmLink9CLMG1FSThdZMo+Usww=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/9f0d6e-26119b@github.com>
Subject: [quicwg/base-drafts] 26119b: 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/YHifBxuBTNl9krhjUc0T68277cQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:12:42 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: 26119bd0403ead534f6bc303df56559b16e49abf
      https://github.com/quicwg/base-drafts/commit/26119bd0403ead534f6bc303df56559b16e49abf
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-03 (Tue, 03 Sep 2019)

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

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



From nobody Tue Sep  3 16:13: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 9D93712004F for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:12: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 wFY6fNC1zmZA for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:12: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 857791200B8 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:12:49 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:12:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567552368; bh=KwGqYpS56SK5tZA1LB2s/tdqHdsncnel78y02yADgHc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=o3iQXbrznv9zaJRd2cOaSRmF6Z3Zf9jNTp8P3FVuzHC9KB1OsAksFR1nwKwT30mQl U4dEcPJ7oqbQvNWOkLRHV0KS9aVqcID+Es8N/MpT/Va8im0G/rbM5AdwAYA8rWSs3f jk9fI/LZ+MC9ydJOCZatqH6NLFx/mBpuKgLPYNf8=
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/3993567523@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_5d6ef3709045b_289e3fb114acd960181818"; 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/pOMLaz6Z-mw7vws_4ohsgzsdzMg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:12:52 -0000

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

@ianswett pushed 1 commit.

26119bd0403ead534f6bc303df56559b16e49abf  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/9f0d6eccdc61b7d4e45d64356b69a75f01e452bc..26119bd0403ead534f6bc303df56559b16e49abf

----==_mimepart_5d6ef3709045b_289e3fb114acd960181818
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/26119bd0403ead534f6bc303df56559b16e49abf">26119bd</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/9f0d6eccdc61b7d4e45d64356b69a75f01e452bc..26119bd0403ead534f6bc303df56559b16e49abf?email_source=notifications&amp;email_token=AFTOJK3ZZAXGHVEDU4RNRW3QH3VPBA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJWG42TEMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7MM4YD7OH4FPXUVKDQH3VPBANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6LQDVNLWG562QS2X3QH3VPBA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJWG42TEMY.gif" height="1" width="1" 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/9f0d6eccdc61b7d4e45d64356b69a75f01e452bc..26119bd0403ead534f6bc303df56559b16e49abf?email_source=notifications\u0026email_token=AFTOJK3ZZAXGHVEDU4RNRW3QH3VPBA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJWG42TEMY",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/9f0d6eccdc61b7d4e45d64356b69a75f01e452bc..26119bd0403ead534f6bc303df56559b16e49abf?email_source=notifications\u0026email_token=AFTOJK3ZZAXGHVEDU4RNRW3QH3VPBA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNJWG42TEMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d6ef3709045b_289e3fb114acd960181818--


From nobody Tue Sep  3 16:14: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 CBEA41208E3 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:14: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 CisLc1fiM118 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:14: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 341B91208F1 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:14:06 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:14:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567552445; bh=gmKNsiI4JZ4LMJ2jO/S3NBTBPz8Py0/4K7aN/onVG0Q=; h=Date:From:To:Subject:From; b=OzHWXlLnJP3jj64zq6IyF+EnS9YmTJSr2qAZv36xGhRXmaLn26ZPWvbatOfu6Uhg4 LwAoo5MX0E3rLQZpi7qsdT9YgJ97v99vZ36RGuaqbNR36oQwqHVcCwFNshox+38GlH 6L8SoG/sLlnQ18UCMDLvgttyWsyOQvEq3Ga4pW54=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/9f865d-953a0d@github.com>
Subject: [quicwg/base-drafts] 953a0d: Script updating gh-pages from 26119bd0. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lZEnNk-NdhSndWZjuM9844rt2WI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:14:20 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 953a0d0b2de466cdd2b5912466722b38133267d5
      https://github.com/quicwg/base-drafts/commit/953a0d0b2de466cdd2b5912466722b38133267d5
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-03 (Tue, 03 Sep 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 26119bd0. [ci skip]



From nobody Tue Sep  3 16:16: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 57CB7120096 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:16: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 JdaMZ09bf4Km for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:16: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 AFD9112004F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:16:16 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:16:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567552576; bh=5C9ZXI1NExKalio2AMCFykW8TIpYpa50MKqCRORvNVw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ETUZ3qSPKp9r3Q9SPqeODahTCzirJLpeaLnhxipNLp3yf9eicPiDdZl04UZCu+JPO 1b9qyXAshszOEinKD0BvR4CpM8PlBeRrK3Zpi/eP0a129Wm+LkM23v7cIu3KbnGLPz HNp3HjyYMwMCTZI5Y5uIcVFDs+DLGfJSBMKa0mU4=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2WD2Q66A5IOUJG4353PQ2NBEVBNHHBZ4IYAM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2993/c527676016@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2993@github.com>
References: <quicwg/base-drafts/pull/2993@github.com>
Subject: Re: [quicwg/base-drafts] Perform stateless reset token comparisons in constant time (#2993)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6ef440495c_3c1e3f85a2ccd960315289"; 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/50gEEskGxTy5rR5FGrGW2VR3qHE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:16:18 -0000

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

To support @marten-seemann point, a SHOULD and a comment about why you should do it and the impact of not doing so seems fine to me.

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

<p>To support <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> point, a SHOULD and a comment about why you should do it and the impact of not doing so seems fine to me.</p>

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


From nobody Tue Sep  3 16:46: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 044491200C3 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:46: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 oZZMK7A-u03s for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:46: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 5299F1200CE for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:46:52 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:46:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567554411; bh=l14eP+EkMY0hUMxs7QvtpLIb232aZ6V39d8LKOJD7aw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eZy+SATKKUBI+230NVYKANev/O9ensj4vHHcW73ojn1HXSd7IWoofYF4GVmKpW4UW N7Tk2M1eYIm6i0ni2Y1YlWg+7coQCUQ7b6cJTvAt0RN73jTgjPPIrBIXRVoiVPF0lY zMwCs81JGGPhHlEun7F5J9yeTIlI0+MxIyjzA7EE=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYW6JMHJUOS2ZJQ3RV3PQ57XEVBNHHBYGSUE4@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/283315813@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_5d6efb6b747cf_26503fe0adecd95c709d8"; 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/zzhNfAgpm5dBwCyHRjVnhYOEAU4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:46:54 -0000

----==_mimepart_5d6efb6b747cf_26503fe0adecd95c709d8
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.

Removed all of the "we" from this diff, great suggestions as well, 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/2925#discussion_r320522329
----==_mimepart_5d6efb6b747cf_26503fe0adecd95c709d8
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_r320522329">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>Removed all of the "we" from this diff, great suggestions as well, 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/2925?email_source=notifications&amp;email_token=AFTOJK3BD4K7IACYVBYDEXDQH3ZOXA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRQ4ZI#discussion_r320522329">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ2VDH5QV5672YJISLQH3ZOXANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6LCKPDOAKL364QDYTQH3ZOXA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRQ4ZI.gif" height="1" width="1" 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=AFTOJK3BD4K7IACYVBYDEXDQH3ZOXA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRQ4ZI#discussion_r320522329",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK3BD4K7IACYVBYDEXDQH3ZOXA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRQ4ZI#discussion_r320522329",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6efb6b747cf_26503fe0adecd95c709d8--


From nobody Tue Sep  3 16:47: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 D63991200B3 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:47:13 -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 SqwGNeOxKh6n for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:47:12 -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 2270812004C for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:47:12 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:47:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567554431; bh=Z4kDgWjDBWDVzGNPv9fV7NQtu1k4MP9Rs6DZKpd6HQg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cKbH2T4bz9vWKUaban8psyMV9BwGllbNAIyeQY4faBcOfNLinzaqrT7x3HjdGsHsq mNGjWsQ6y/49H3SU1O99pUudirtMkNas1olFXa0SuuzdhwRyRJM7vAVARSLnl6+VJ0 1pN5JnxUu2qNJ/mq4hrqnEErH48wm8gn8qtU2mKg=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6XZ7D4AA6SLUKEKUV3PQ6A7EVBNHHBYGSUE4@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/283315892@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_5d6efb7f1c29e_7ba83ff8c06cd95c236421"; 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/O4GwIpzyuoiizfQPaD8C5OdXUe4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:47:14 -0000

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

erickinnear commented on this pull request.



> +
+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

Updated this a bit, I suspect further discussion will also be in the security properties of short/long 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/pull/2925#discussion_r320522387
----==_mimepart_5d6efb7f1c29e_7ba83ff8c06cd95c236421
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_r320522387">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>Updated this a bit, I suspect further discussion will also be in the security properties of short/long headers.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications&amp;email_token=AFTOJKY7QHFBIBLP3IY7PPDQH3ZP7A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRQ5NA#discussion_r320522387">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ3BHFF3MSHQYEPQRDQH3ZP7ANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4WQT46KHU7FJLV2QDQH3ZP7A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRQ5NA.gif" height="1" width="1" 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=AFTOJKY7QHFBIBLP3IY7PPDQH3ZP7A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRQ5NA#discussion_r320522387",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJKY7QHFBIBLP3IY7PPDQH3ZP7A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRQ5NA#discussion_r320522387",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6efb7f1c29e_7ba83ff8c06cd95c236421--


From nobody Tue Sep  3 16:50: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 0E3F41200B8 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:50: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 2a_YQ2h0teDM for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:50: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 0EF0712004C for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:50:42 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:50:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567554641; bh=sdq9HTW0n6kMdljorPN44x4WyI+cO+CAX/lseNWZSFQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=fkkhMn71alATuEyF5vZF/SuETSZp5nF2zOf+/GZQV/w7CRvFoI9OvYDDsWCCp9zFa YdpKEVK/Ktd1L6RXEitDFoKZOKC5ADB9Zm4r+/0oPpYK8q0UbA1aZ+pOPdWr6iO6dG DAQ3a43kLzPvOkO8YpAJXL6JEveX/lHw2Bzw5taY=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK42BIJLO6PUTCCO3Q53PQ6ODEVBNHHBYGSUE4@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/283316700@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_5d6efc5131f28_5ae33f86506cd96c112946"; 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/ykKP_CC7SljjH-A2LjCTRjoyu58>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:50:44 -0000

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

erickinnear commented on this pull request.



> +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

Updated, very good point, I think here I'm focusing mostly on the worst-case type of behavior (for example, assume an attacker can _always_ win a race), but I think there would be room to cover additional situations, both in the case where that changes the considerations or simply as a note that "these people also fall into this bucket".

-- 
You are receiving this 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_r320523046
----==_mimepart_5d6efc5131f28_5ae33f86506cd96c112946
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_r320523046">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>Updated, very good point, I think here I'm focusing mostly on the worst-case type of behavior (for example, assume an attacker can <em>always</em> win a race), but I think there would be room to cover additional situations, both in the case where that changes the considerations or simply as a note that "these people also fall into this bucket".</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK6ICNJNFHJPG3LN25DQH3Z5DA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRDXA#discussion_r320523046">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4NJAL5WOXKDVJTEITQH3Z5DANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK346FMBIBULZSOVY3LQH3Z5DA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRDXA.gif" height="1" width="1" 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=AFTOJK6ICNJNFHJPG3LN25DQH3Z5DA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRDXA#discussion_r320523046",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK6ICNJNFHJPG3LN25DQH3Z5DA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRDXA#discussion_r320523046",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6efc5131f28_5ae33f86506cd96c112946--


From nobody Tue Sep  3 16: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 3D3C31200B8 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:53:15 -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 O7r3vA1rN9Zb for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:53: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 0866A12004C for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:53:12 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:53:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567554791; bh=1m42qRlMG+oy/6v6mooaowGHYlqdN+YZ1U9vTZNOnN8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0JZKwMyelsIICuanaRgKuqp4i/Fbm73eHgFtRqC+mtnRTi3MJXxMJYTvotYVWCsdW 76Da7OpJRJhu9Fp2Q5dTQ9UCQbUkrlvX/qw7a4RcVKmubpebIlkt0XBQubvjp0J+7O kw6Tz4L/H1D1TBkbXlV+ol9obiOmvuwtGHghSauo=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3XXJY27YBXZYIVB253PQ6XPEVBNHHBYGSUE4@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/283317318@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_5d6efce7da3fa_a7b3fb07d6cd96078094"; 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/cc0P4s3NkoKL_k1Gbiu34ZqjIik>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:53:15 -0000

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

erickinnear commented on this pull request.



> +- 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

I've changed some "the attacker" to "an attacker" to be more specific, we've got "an" for endpoint everywhere except one place where it's a packet between "the endpoints" that are having a conversation. 

There's a few places where we say something along the lines of 
> 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.

Which is a case where we use both "an" and "the", but otherwise it's all the same now. (And suggestions welcome for those cases, it started to sound very wrong when I switched those 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/pull/2925#discussion_r320523563
----==_mimepart_5d6efce7da3fa_a7b3fb07d6cd96078094
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_r320523563">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>I've changed some "the attacker" to "an attacker" to be more specific, we've got "an" for endpoint everywhere except one place where it's a packet between "the endpoints" that are having a conversation.</p>
<p>There's a few places where we say something along the lines of</p>
<blockquote>
<ol start="2">
<li>An on-path attacker can prevent migration to a new path for which the<br>
attacker is also on-path by causing path validation to fail on the new path.</li>
</ol>
</blockquote>
<p>Which is a case where we use both "an" and "the", but otherwise it's all the same now. (And suggestions welcome for those cases, it started to sound very wrong when I switched those 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/pull/2925?email_source=notifications&amp;email_token=AFTOJK5ZLFFQCJBNLDBPWYTQH32GPA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRIRQ#discussion_r320523563">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5JZ5GBJHX5TPQZZ3LQH32GPANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3WIHOA52B6HW6AC3DQH32GPA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRIRQ.gif" height="1" width="1" 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=AFTOJK5ZLFFQCJBNLDBPWYTQH32GPA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRIRQ#discussion_r320523563",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK5ZLFFQCJBNLDBPWYTQH32GPA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRIRQ#discussion_r320523563",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6efce7da3fa_a7b3fb07d6cd96078094--


From nobody Tue Sep  3 16:53: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 46A4412004F for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:53:29 -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 52rt4ZBUvgVC for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:53:27 -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 7E4A012004C for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:53:27 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:53:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567554807; bh=el+097bUiV9K7VaMfL/09NXcajiGwpNKnSZCsYsecb4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=M57HqWUbO2ICdydIfyfGLrihtXUOKm2X4bjRAop5IGlszt4CuFl08QvwnTcbJesb8 sYu1fW6Z8wpWlWey34blV13LwGyztB35Rz/d9sKtR9p1v9kpA4DQA3Y2kPCmK7zcu2 K9/tn8UjQlD9uOGxuOYDMvDrKCAb184GBcMv9rjI=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYWA5KM2SIRUG3RG2V3PQ6YNEVBNHHBYGSUE4@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/283317360@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_5d6efcf6bc7bb_5eb23fd127acd964498b"; 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/RJ_EPPF2hHgky2-DoHTE0LFsvAI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:53:30 -0000

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

erickinnear commented on this pull request.



> +separately.
+
+## Handshake {#handshake-properties}
+
+TBD.
+
+## Short Headers {#short-headers-properties}
+
+TBD.
+
+## Connection Migration {#migration-properties}
+
+Connection Migration ({{migration}}) provides endpoints with the ability to
+transition between IP addresses and ports on multiple paths, using one path at a
+time for sending non-probing frames.  Path validation helps to establish
+bidirectional connectivity with the peer over a new path and prevents source

Updated with that text, much nicer, 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/2925#discussion_r320523599
----==_mimepart_5d6efcf6bc7bb_5eb23fd127acd964498b
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_r320523599">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +separately.
+
+## Handshake {#handshake-properties}
+
+TBD.
+
+## Short Headers {#short-headers-properties}
+
+TBD.
+
+## Connection Migration {#migration-properties}
+
+Connection Migration ({{migration}}) provides endpoints with the ability to
+transition between IP addresses and ports on multiple paths, using one path at a
+time for sending non-probing frames.  Path validation helps to establish
+bidirectional connectivity with the peer over a new path and prevents source
</pre>
<p>Updated with that text, much nicer, 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/2925?email_source=notifications&amp;email_token=AFTOJK3GF6G5OHN5AZNTTI3QH32HNA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRI4A#discussion_r320523599">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3YBNFCSBLWTOSXJW3QH32HNANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYLF3EZZF7JXG5EEEDQH32HNA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRI4A.gif" height="1" width="1" 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=AFTOJK3GF6G5OHN5AZNTTI3QH32HNA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRI4A#discussion_r320523599",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK3GF6G5OHN5AZNTTI3QH32HNA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRI4A#discussion_r320523599",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6efcf6bc7bb_5eb23fd127acd964498b--


From nobody Tue Sep  3 16:53: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 A2E8912004C for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:53: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 M3HQl6XaM4Ep for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:53:35 -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 9733C12004F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:53:35 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:53:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567554814; bh=RwdtNTUuT6b/g6ztuf6cYozfHM8fI80A9VPgfB61jDQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qOgBFjsDvHTzrw9OIwGf8nh/TuB4iYba5IhICgV63d8cdDKGk63kMhSR0B6CgxMMC 6Ohs2ady3bf78LmD1WzmRa94wcXjpSQhWYqNbT8lVeJSP1sLJ0noyvlYcarZeaymkk LJBMHMI/PTxVXH+rNDcQevv+PWy8F6GHwSH6FdzI=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYFQL2KQOSEIWPTUQF3PQ6Y5EVBNHHBYGSUE4@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/283317391@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_5d6efcfee0938_72a83fdc8eacd9601266c9"; 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/QjgJk3thniuYM5PsSaAEHLFR0wI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:53:38 -0000

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

erickinnear commented on this pull request.



> +## Handshake {#handshake-properties}
+
+TBD.
+
+## Short Headers {#short-headers-properties}
+
+TBD.
+
+## Connection Migration {#migration-properties}
+
+Connection Migration ({{migration}}) provides endpoints with the ability to
+transition between IP addresses and ports on multiple paths, using one path at a
+time for sending non-probing frames.  Path validation helps to establish
+bidirectional connectivity with the peer over a new path and prevents source
+address spoofing from being used in a denial-of-service attack.  Migration is
+further restricted to be initiated only by QUIC clients.

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/pull/2925#discussion_r320523629
----==_mimepart_5d6efcfee0938_72a83fdc8eacd9601266c9
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_r320523629">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +## Handshake {#handshake-properties}
+
+TBD.
+
+## Short Headers {#short-headers-properties}
+
+TBD.
+
+## Connection Migration {#migration-properties}
+
+Connection Migration ({{migration}}) provides endpoints with the ability to
+transition between IP addresses and ports on multiple paths, using one path at a
+time for sending non-probing frames.  Path validation helps to establish
+bidirectional connectivity with the peer over a new path and prevents source
+address spoofing from being used in a denial-of-service attack.  Migration is
+further restricted to be initiated only by QUIC clients.
</pre>
<p>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/pull/2925?email_source=notifications&amp;email_token=AFTOJK27N7YG5CAQC7NRYRDQH32H5A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRJDY#discussion_r320523629">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3PK6TMHIXJX6FR4M3QH32H5ANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYBDWF7UFVHPUPG673QH32H5A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRJDY.gif" height="1" width="1" 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=AFTOJK27N7YG5CAQC7NRYRDQH32H5A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRJDY#discussion_r320523629",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK27N7YG5CAQC7NRYRDQH32H5A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRJDY#discussion_r320523629",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6efcfee0938_72a83fdc8eacd9601266c9--


From nobody Tue Sep  3 16:53: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 2460E12009E for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:53: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 4GRjQEouJikK for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:53:55 -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 B662012004C for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:53:55 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:53:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567554835; bh=Y+wlpQ1mxCbjIZjBNKWg8tZ3HqgpvdTgpTRF7FvRbhU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qXWwEKYwmzQFk186fPy0XohayLfuq5tP631fnBIoL4o/80rnrL4zjKOeNX7IFU7tj Jmfht/gL1nr4oiJeims4yLLqV2sp9xvxPQZS8OQx9FQysxBNvJ5ccnFd0vHjvUt0a2 zO9J6aws41q5IqHMEkkVj3mxjt7wLy6jI9MQHM6E=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZAHRZBIZHRUZU3MS53PQ62HEVBNHHBYGSUE4@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/283317477@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_5d6efd13a80e_46723fa4a00cd9686949c"; 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/w7Nu3PigCCPkyRjhjJ69ppuR8Lk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:53:57 -0000

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

erickinnear commented on this pull request.



> +attacks, requiring injection of packets into the network, as described in
+{{?RFC3552}}.
+
+### On-Path Attacker
+
+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

Good point! Hopefully we'll catch some other cases that got left out like this one -- I've added 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#discussion_r320523701
----==_mimepart_5d6efd13a80e_46723fa4a00cd9686949c
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_r320523701">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +attacks, requiring injection of packets into the network, as described in
+{{?RFC3552}}.
+
+### On-Path Attacker
+
+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
</pre>
<p>Good point! Hopefully we'll catch some other cases that got left out like this one -- I've added 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=AFTOJK7H5DZOKEUHE7I5W63QH32JHA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRJZI#discussion_r320523701">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2SWRRF3RRXHBSI53TQH32JHANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3IQNWVYGJBGBOJHVTQH32JHA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRJZI.gif" height="1" width="1" 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=AFTOJK7H5DZOKEUHE7I5W63QH32JHA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRJZI#discussion_r320523701",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK7H5DZOKEUHE7I5W63QH32JHA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRJZI#discussion_r320523701",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6efd13a80e_46723fa4a00cd9686949c--


From nobody Tue Sep  3 16: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 EB5D612004C for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:54:05 -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 eYpIkXVMxy5u for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:54: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 ECC3512009E for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:54:03 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 216198C0055 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:54:03 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:54:03 -0700
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4D5XET6H3EDSPTXF53PQ62XEVBNHHBYGSUE4@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/283317517@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_5d6efd1b129bf_65833fcfba2cd96c63444"; 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/cXr2sCj37yI3KVo-UHqH3j4whlQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:54:06 -0000

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

erickinnear commented on this pull request.



> +
+This section describes the intended security properties of connection migration
+when under attack by the following attackers.  These attackers all mount active
+attacks, requiring injection of packets into the network, as described in
+{{?RFC3552}}.
+
+### On-Path Attacker
+
+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

Nice, updated

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2925#discussion_r320523732
----==_mimepart_5d6efd1b129bf_65833fcfba2cd96c63444
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_r320523732">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +
+This section describes the intended security properties of connection migration
+when under attack by the following attackers.  These attackers all mount active
+attacks, requiring injection of packets into the network, as described in
+{{?RFC3552}}.
+
+### On-Path Attacker
+
+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
</pre>
<p>Nice, updated</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications&amp;email_token=AFTOJK6FD4IVWQCUWEX2VCLQH32JXA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRKDI#discussion_r320523732">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2Y7O3UVIFO5VCCFUDQH32JXANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2U2SNVR63JJYQNOQ3QH32JXA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRKDI.gif" height="1" width="1" 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=AFTOJK6FD4IVWQCUWEX2VCLQH32JXA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRKDI#discussion_r320523732",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK6FD4IVWQCUWEX2VCLQH32JXA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRKDI#discussion_r320523732",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6efd1b129bf_65833fcfba2cd96c63444--


From nobody Tue Sep  3 16:54: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 B9BE412004F for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:54: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 eV09PKlsE7-I for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 16:54:34 -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 47B9E12004C for <quic-issues@ietf.org>; Tue,  3 Sep 2019 16:54:34 -0700 (PDT)
Date: Tue, 03 Sep 2019 16:54:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567554873; bh=BACYVuxLAyjG5BxD6vyFrzy2g16slXIvnz5PhtxODHE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=S/KbjNLdg3tSoklPM1NfjWobWTkNILJopztzLe1+xHPe+8WzyH1PXWVThPaFMrtDo NjfyUzwsLYdFwDptOTuUzhf/Yqq09tmfi8NrBupNy7hf3k8T6Jkk7WvW+f/zwr5kGC BnNwGCM/TwXK831HJUR1SKaLjvwQzFNfxMQ+ieqA=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7SDA4UKCWGE2UUAGV3PQ64TEVBNHHBYGSUE4@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/283317651@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_5d6efd3951a8b_34193fde2aacd96840283"; 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/NfMN0sqp5sC2paPiGIuMQ24cxxI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 03 Sep 2019 23:54:36 -0000

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

erickinnear commented on this pull request.



> +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
+
+In the presence of an on-path attacker, QUIC aims to provide the following
+properties.
+
+1. An on-path attacker can interrupt a QUIC connection, causing it to fail if it

Reworded this to be a bit more clear about exactly what's getting broken (that path, not the whole thing). 

The establishment case I think I'm going to leave for the section on the handshake 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/2925#discussion_r320523841
----==_mimepart_5d6efd3951a8b_34193fde2aacd96840283
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_r320523841">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +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
+
+In the presence of an on-path attacker, QUIC aims to provide the following
+properties.
+
+1. An on-path attacker can interrupt a QUIC connection, causing it to fail if it
</pre>
<p>Reworded this to be a bit more clear about exactly what's getting broken (that path, not the whole thing).</p>
<p>The establishment case I think I'm going to leave for the section on the handshake 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/2925?email_source=notifications&amp;email_token=AFTOJK4SD23KEPVRKEATGUDQH32LTA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRLEY#discussion_r320523841">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY5UHIADVG3ASNCPXDQH32LTANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZZM2N6GPP3PUVA2XDQH32LTA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRLEY.gif" height="1" width="1" 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=AFTOJK4SD23KEPVRKEATGUDQH32LTA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRLEY#discussion_r320523841",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK4SD23KEPVRKEATGUDQH32LTA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRRLEY#discussion_r320523841",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6efd3951a8b_34193fde2aacd96840283--


From nobody Tue Sep  3 17:15: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 6164E12009C for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 17:15:23 -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 fuau0WlBv9tf for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 17:15: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 7A7FF12006F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 17:15:21 -0700 (PDT)
Date: Tue, 03 Sep 2019 17:15:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567556120; bh=FXPv2fx+noh+gsN1WLPfo7mrkwiWVlQz1hEnji+BVOA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oXVxJLL6yA4k+dc+jMrto8wXpDWbYF7xAJu6WIWB2bcyJtq7p8M4/QV16VR0rJnJa TV2b3BNlkoYn3jDwTyatTQUXlmKQsCcpcP1tBJk60qPFoCXZwZOrqVUML59soUb70E DblrJrbowSoz5v1GoCoxIf9bGOBqsR8M7rMw/c+g=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYUTWDOYYP6ZZM5PAN3PRBKREVBNHHBX66EHQ@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/283322372@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_5d6f02186fdd8_6ac63f7e330cd9601685bc"; 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/CUZkpkMNiq8E0dbW-nsabmczF2A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 00:15:24 -0000

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

ianswett commented on this pull request.



> @@ -1189,10 +1191,13 @@ SetLossDetectionTimer():
     loss_detection_timer.update(loss_time)
     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):
+  // Cancel the timer if there are no ack-eliciting packets
+  // in flight and the endpoint is a server. Do not cancel the
+  // timer until the client has received a Handshake or 1-RTT ACK.
+  if (no ack-eliciting packets in flight &&
+      (endpoint is server ||
+       has received Handshake ACK ||
+       has received 1-RTT ACK)):

As a code reviewer, I'd request a method like PeerAwaitingAddressValidation() and say 

if (no ack-eliciting packets in flight &&
     !PeerAwaitingAddressValidation()):

-- 
You are receiving this 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_r320527773
----==_mimepart_5d6f02186fdd8_6ac63f7e330cd9601685bc
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_r320527773">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1189,10 +1191,13 @@ SetLossDetectionTimer():
     loss_detection_timer.update(loss_time)
     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):
+  // Cancel the timer if there are no ack-eliciting packets
+  // in flight and the endpoint is a server. Do not cancel the
+  // timer until the client has received a Handshake or 1-RTT ACK.
+  if (no ack-eliciting packets in flight &amp;&amp;
+      (endpoint is server ||
+       has received Handshake ACK ||
+       has received 1-RTT ACK)):
</pre>
<p>As a code reviewer, I'd request a method like PeerAwaitingAddressValidation() and say</p>
<p>if (no ack-eliciting packets in flight &amp;&amp;<br>
!PeerAwaitingAddressValidation()):</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK4UFLYMOH6ZT6TOG53QH34ZRA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRSQBA#discussion_r320527773">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3LBEP2V7O4WTU5NS3QH34ZRANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6UJ2F5I4HE3VFJMT3QH34ZRA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRSQBA.gif" height="1" width="1" 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=AFTOJK4UFLYMOH6ZT6TOG53QH34ZRA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRSQBA#discussion_r320527773",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK4UFLYMOH6ZT6TOG53QH34ZRA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRSQBA#discussion_r320527773",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6f02186fdd8_6ac63f7e330cd9601685bc--


From nobody Tue Sep  3 17:20: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 0B3E0120822 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 17:20:16 -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 uJTqDyDoy317 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 17:20: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 60F3E120804 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 17:20:14 -0700 (PDT)
Date: Tue, 03 Sep 2019 17:20:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567556413; bh=ScMBj3yMMPb7W3voAP6nrBGglm+cQBzR66sqWUwSCoA=; h=Date:From:To:Subject:From; b=0rmjQUSmB0iXz7QPvH8QzKyJQa06hqjxinBv1EP9uDAbjmExJp4BvhszX401RFeOq 5U+KHgWounkpcjXIUH2iN66zTrdEAj3EtSFKL7CDsmEsnEbJGDTVLtJUD+lnxmn3MJ vHpdJfwSyrNXXKCfDFVhYV3kVN2IPQCjz+1/Jtmk=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/26119b-ec34d0@github.com>
Subject: [quicwg/base-drafts] ec34d0: Add PeerAwaitingAddressValidation
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/rx7sMyWjr0MDSVnkIcSHX5NChKI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 00:20:27 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: ec34d084545d8831abf6d5f89c09f4bc0d8be911
      https://github.com/quicwg/base-drafts/commit/ec34d084545d8831abf6d5f89c09f4bc0d8be911
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-03 (Tue, 03 Sep 2019)

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

  Log Message:
  -----------
  Add PeerAwaitingAddressValidation



From nobody Tue Sep  3 17:20: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 EE0B312006F for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 17:20: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 CDwaGszlPF9X for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 17:20: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 E46AB1208E3 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 17:20:21 -0700 (PDT)
Date: Tue, 03 Sep 2019 17:20:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567556421; bh=+TRKeeozga+U9MrguywAlJJZuLm7rR/hP1IVCG+BBMY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TCzTZKUWSScH3uC2lE46xdnEPLMf8bjPjkupTqqmYFheYczbw0rE9bc2SYEMASYHy BLBPY+Mcdy4jgRWCCpnXyXPI0Knr/bNUAvaJl9ewI0/4QMcLxnbVbwNq5xyCnMz25v Zi7JB/XHhmbbIPwU/NDpLGwCN2Vlye4WaUgsXH2A=
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/3993703094@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_5d6f0345241_34c83fa0166cd964124734"; 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/NS1fvoywfROjvUSkf4AZqrG8KW8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 00:20:35 -0000

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

@ianswett pushed 1 commit.

ec34d084545d8831abf6d5f89c09f4bc0d8be911  Add PeerAwaitingAddressValidation


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2907/files/26119bd0403ead534f6bc303df56559b16e49abf..ec34d084545d8831abf6d5f89c09f4bc0d8be911

----==_mimepart_5d6f0345241_34c83fa0166cd964124734
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/ec34d084545d8831abf6d5f89c09f4bc0d8be911">ec34d08</a>  Add PeerAwaitingAddressValidation</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#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/26119bd0403ead534f6bc303df56559b16e49abf..ec34d084545d8831abf6d5f89c09f4bc0d8be911?email_source=notifications&amp;email_token=AFTOJK555Z4ZPFDTHTQ6BFLQH35MJA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNZQGMYDSNA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZXFKPDSWTYQSWEZH3QH35MJANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZDC5MJLHREEDX2IJ3QH35MJA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNZQGMYDSNA.gif" height="1" width="1" 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/26119bd0403ead534f6bc303df56559b16e49abf..ec34d084545d8831abf6d5f89c09f4bc0d8be911?email_source=notifications\u0026email_token=AFTOJK555Z4ZPFDTHTQ6BFLQH35MJA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNZQGMYDSNA",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/26119bd0403ead534f6bc303df56559b16e49abf..ec34d084545d8831abf6d5f89c09f4bc0d8be911?email_source=notifications\u0026email_token=AFTOJK555Z4ZPFDTHTQ6BFLQH35MJA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGNZQGMYDSNA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d6f0345241_34c83fa0166cd964124734--


From nobody Tue Sep  3 17: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 17F2812009C for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 17:21: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 992Z-hA1Nk4x for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 17:21: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 A66C512004C for <quic-issues@ietf.org>; Tue,  3 Sep 2019 17:21:36 -0700 (PDT)
Date: Tue, 03 Sep 2019 17:21:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567556495; bh=hJ93ZkoS9kUXcoqIzhWuE/AJzJD8xcz5Y/Km4uOlOcU=; h=Date:From:To:Subject:From; b=MiYzbCwtZo2lOWTuN4tMs+1mLnWlXyTdNDqaXL4XfmXhLab58zxBhfeBpcab3LLrI 5OUsrVoKXEjgC3bg/88JBhD4YBL+uUCXNhQLPQ3qmn+L5BUUfaMPTYkqP6PEgKkGHB vqTXq7apYitjIXRBzIV6/mk7YxjVOZedn2WF4Oq4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/953a0d-041040@github.com>
Subject: [quicwg/base-drafts] 041040: Script updating gh-pages from ec34d084. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/WTo7i0_Z4NjX_6gRNi13OpAFfBw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 00:21:38 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 041040c97a8f7ba500a14291c92e10ed4bfa894b
      https://github.com/quicwg/base-drafts/commit/041040c97a8f7ba500a14291c92e10ed4bfa894b
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-04 (Wed, 04 Sep 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 ec34d084. [ci skip]



From nobody Tue Sep  3 17: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 48A3C120829 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 17:42:05 -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 JTunQZIxiZYY for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 17:42: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 3C2E012081E for <quic-issues@ietf.org>; Tue,  3 Sep 2019 17:42:03 -0700 (PDT)
Date: Tue, 03 Sep 2019 17:42:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567557722; bh=06hINkb0joHHveI4Wk0A/8WNBVCmY2hX+a5Tv9F+nVc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NuDKNls6EOY5VZslNlBA/mGM/vb0nc4QVoC78M87/mHs2Y3tvizCP5kYmrtq4W+57 j0bS1MZqoyrKnl/NJgyb4HMHd3oi/Y6ZHcq8hagRI8xMHIgnXZsS6g/3ROqtoXBKwk hxL8TQbtY1QxVzF6oVSe9h6AW3w/qFd+KX6KpQks=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4CX7KDIEF5J64XCJN3PQWMVEVBNHHBYHMRI4@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/c527692685@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_5d6f085a2e012_59be3fa84c2cd95c20062"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EcEgRWgruyV9uuwQtZSHxqbZmVk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 00:42:17 -0000

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

It's pretty much "it's OK to go smaller if you are willing to risk stateless reset messages being identifiable", but a little stronger than that.  The sender of a stateless reset is now no longer bound by the upper limit on connection ID size.  That allows for a smaller packet to be sent and still have it get a stateless reset in response.

However, the onus for ensuring that the resulting stateless reset is indistinguishable from regular packets moves to the endpoint that would receive the stateless reset.  It has to ensure that it never sends a packet small enough that a stateless reset packet would be too small to appear as valid.

For instance, take the case where a client needs at least 8 bytes of connection ID, but the server had no connection ID.  Though the client has no real need to send larger packets toward the server, it has to pad outbound packets so that the server, should it be forced to send a stateless reset, wouldn't end up sending a packet that appears to have a 7 byte connection ID (which, assuming an observer knows about the client's constraints, would be easy to identify as a 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/pull/2927#issuecomment-527692685
----==_mimepart_5d6f085a2e012_59be3fa84c2cd95c20062
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>It's pretty much "it's OK to go smaller if you are willing to risk stateless reset messages being identifiable", but a little stronger than that.  The sender of a stateless reset is now no longer bound by the upper limit on connection ID size.  That allows for a smaller packet to be sent and still have it get a stateless reset in response.</p>
<p>However, the onus for ensuring that the resulting stateless reset is indistinguishable from regular packets moves to the endpoint that would receive the stateless reset.  It has to ensure that it never sends a packet small enough that a stateless reset packet would be too small to appear as valid.</p>
<p>For instance, take the case where a client needs at least 8 bytes of connection ID, but the server had no connection ID.  Though the client has no real need to send larger packets toward the server, it has to pad outbound packets so that the server, should it be forced to send a stateless reset, wouldn't end up sending a packet that appears to have a 7 byte connection ID (which, assuming an observer knows about the client's constraints, would be easy to identify as a 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/pull/2927?email_source=notifications&amp;email_token=AFTOJK2HHJBDNC4AVZSWAH3QH375VA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5Z7HDI#issuecomment-527692685">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3SAQ7AFECFB6KGWOTQH375VANCNFSM4IGENO4A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYYBLLSPTXDTMA6XW3QH375VA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5Z7HDI.gif" height="1" width="1" 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=AFTOJK2HHJBDNC4AVZSWAH3QH375VA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5Z7HDI#issuecomment-527692685",
"url": "https://github.com/quicwg/base-drafts/pull/2927?email_source=notifications\u0026email_token=AFTOJK2HHJBDNC4AVZSWAH3QH375VA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5Z7HDI#issuecomment-527692685",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6f085a2e012_59be3fa84c2cd95c20062--


From nobody Tue Sep  3 17: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 C96FD12006F for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 17:50:24 -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 U17gX8MrUWmw for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 17:50: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 213A612004C for <quic-issues@ietf.org>; Tue,  3 Sep 2019 17:50:23 -0700 (PDT)
Date: Tue, 03 Sep 2019 17:50:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567558222; bh=EwH7QH2SBM3EgCisll1AaFAcH8xkn44iOMLu5f/LxmI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cBt5gU+g5hbMkG8jhVZaXh5mlLDIhBr5UkLpT9O8vloHrTJm5SFIdR+7IvMIddhtW Bybv3HPg/eKYgWCrk5KNbHtxcFnbSTIa9Wpmqup9Cy1/K7GzSrMr+D8DxcUQZ9Sg56 tuzcLCjPWnC5nU1UoHAHLNiKriw46QUG8S8w0A4k=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5LBG5JZEQ43272IPN3PQXL5EVBNHHBZ4IYAM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2993/c527694231@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2993@github.com>
References: <quicwg/base-drafts/pull/2993@github.com>
Subject: Re: [quicwg/base-drafts] Perform stateless reset token comparisons in constant time (#2993)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6f0a4e2a585_236e3fdbfa6cd96c3557b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/r3N1v5o8bu9oHHGoo_Yq02Pjwpc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 00:50:25 -0000

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

One thing that I'm trying to protect is the integrity of the specification and the analysis that (I hope) will come.  If we allow weaseling out of this sort of requirement, then the analysis has to allow for that too.

If you are using a hash map, then you can do as @kazuho suggests: use a PRP (a PRF would also work) to produce an intermediate value from the incoming value and compare that in non-constant time.  As long as the operation cannot be reversed by an attacker and the secret input to the PRP (i.e., the token) are handled in constant time, the secret doesn't leak.

We can't assume that resetting a connection is without cost.  QUIC has the nice property that connections can survive network flutters, which means that a lot of investment could be made in a connection.  (That's probably still inadvisable.)  A well-positioned attacker doesn't have to perform a huge amount of work to recover a stateless reset token, relative to the value they might gain in disrupting a "high-value" connection of that sort.

If we use a "MUST", then we're not stopping someone from deciding that this requirement doesn't apply to them.  But they would take responsibility for that, hopefully with some awareness of what is being risked.  Yes, we could use "MUST avoid leaking through timing side channels unless <X>", but determining what X needs to be is tricky as it depends so much on application protocol and other contextual stuff.

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

<p>One thing that I'm trying to protect is the integrity of the specification and the analysis that (I hope) will come.  If we allow weaseling out of this sort of requirement, then the analysis has to allow for that too.</p>
<p>If you are using a hash map, then you can do as <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> suggests: use a PRP (a PRF would also work) to produce an intermediate value from the incoming value and compare that in non-constant time.  As long as the operation cannot be reversed by an attacker and the secret input to the PRP (i.e., the token) are handled in constant time, the secret doesn't leak.</p>
<p>We can't assume that resetting a connection is without cost.  QUIC has the nice property that connections can survive network flutters, which means that a lot of investment could be made in a connection.  (That's probably still inadvisable.)  A well-positioned attacker doesn't have to perform a huge amount of work to recover a stateless reset token, relative to the value they might gain in disrupting a "high-value" connection of that sort.</p>
<p>If we use a "MUST", then we're not stopping someone from deciding that this requirement doesn't apply to them.  But they would take responsibility for that, hopefully with some awareness of what is being risked.  Yes, we could use "MUST avoid leaking through timing side channels unless ", but determining what X needs to be is tricky as it depends so much on application protocol and other contextual stuff.</p>

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


From nobody Tue Sep  3 17: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 64DC212009E for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 17:54: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 PE-uBCESew0O for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 17:54: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 AD1FD12009C for <quic-issues@ietf.org>; Tue,  3 Sep 2019 17:54:43 -0700 (PDT)
Date: Tue, 03 Sep 2019 17:54:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567558482; bh=s5fnT/bFObpfLGpbo7ak1a1gENgPh9bTvsnN3P44E+k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xk/zafBDEfMOJ7u571xBlkbwKELrVg3kggl3ebf8EBgtprZbTX6MFaPuz9LciRJHD Gl8yIzxfqQOYZVWmBa17lfbRV0Y+zbianzoRhWyAdCoop8FQDeAbe//e5h/9l7FGxI LSPumj8QROLP9cgaJYwn/dagl8i7fOfPzfVb5vls=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7XOPX4DJIXHTE6N6N3PQX4FEVBMPHAEFJDPU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/commit/ec34d084545d8831abf6d5f89c09f4bc0d8be911/34939773@github.com>
In-Reply-To: <quicwg/base-drafts/commit/ec34d084545d8831abf6d5f89c09f4bc0d8be911@github.com>
References: <quicwg/base-drafts/commit/ec34d084545d8831abf6d5f89c09f4bc0d8be911@github.com>
Subject: Re: [quicwg/base-drafts] Add PeerAwaitingAddressValidation (ec34d08)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6f0b52d244a_c973fc00a2cd968745d5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qAGZuG2EstadD8fB7tRVZocP9RM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 00:54:46 -0000

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

As a code reviewer, I would then suggest:

```
  if endpoint is server:
    return false
  return has received Handshake ACK ||
         has received 1-RTT ACK
```

-- 
You are receiving 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/ec34d084545d8831abf6d5f89c09f4bc0d8be911#commitcomment-34939773
----==_mimepart_5d6f0b52d244a_c973fc00a2cd968745d5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>As a code reviewer, I would then suggest:</p>
<pre><code>  if endpoint is server:
    return false
  return has received Handshake ACK ||
         has received 1-RTT ACK
</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/commit/ec34d084545d8831abf6d5f89c09f4bc0d8be911?email_source=notifications&amp;email_token=AFTOJK6XDO7V3ZU6STJEDULQH4BNFA5CNFSM4ITMFUHKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBBKI35#commitcomment-34939773">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK476QYRHODM6HT3IKTQH4BNFANCNFSM4ITMFUHA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6U6TUR72ATLMSJCSDQH4BNFA5CNFSM4ITMFUHKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBBKI35.gif" height="1" width="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/ec34d084545d8831abf6d5f89c09f4bc0d8be911?email_source=notifications\u0026email_token=AFTOJK6XDO7V3ZU6STJEDULQH4BNFA5CNFSM4ITMFUHKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBBKI35#commitcomment-34939773",
"url": "https://github.com/quicwg/base-drafts/commit/ec34d084545d8831abf6d5f89c09f4bc0d8be911?email_source=notifications\u0026email_token=AFTOJK6XDO7V3ZU6STJEDULQH4BNFA5CNFSM4ITMFUHKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBBKI35#commitcomment-34939773",
"name": "View Commit"
},
"description": "View this Commit on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6f0b52d244a_c973fc00a2cd968745d5--


From nobody Tue Sep  3 18:00: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 D5752120098 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:00:50 -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 rtkb1buMZjCa for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:00:47 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B11E812006F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:00:47 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:00:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567558846; bh=k/9GOcKpJS8+Uzbbvavx2S4iWpH9bvBws0A1ThRGQ2s=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DPoq1cr49jrKaawvEg2VuGrwHbvPCBR1R+wkSw5ypBCDtxk/f2mz6NG9Xy5UGvJok VKuEzaEIQ0AjrPOdhI0iIT5ln9GW/q8sZpSz1mz3s9ZE9xRZY90OLJeUBdTiFNbOm0 Bk+3WMJ4EUVT5S38bDyYcu1lEMbK9ump9i1ZNm68=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYTFQL4VX2FLVMFGVN3PRGU5EVBNHHBX66EHQ@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/283331379@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_5d6f0cbeba034_48ec3f80e04cd95c107639"; 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/5GvbCLAd8WtlCDoxc3npSnOMZ4w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 01:00:51 -0000

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

janaiyengar approved this pull request.

Thanks for the change -- looks MUCH better now.

>        time = loss_time[pn_space];
       space = pn_space
   return time, space
 
+PeerAwaitingAddressValidation():

```suggestion
IsPeerAwaitingAddressValidation():
```

>  SetLossDetectionTimer():
   loss_time, _ = GetEarliestLossTime()
   if (loss_time != 0):
     // Time threshold loss detection.
     loss_detection_timer.update(loss_time)
     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):
+  if (no ack-eliciting packets in flight &&
+      !PeerAwaitingAddressValidation()):

```suggestion
      !IsPeerAwaitingAddressValidation()):
```

-- 
You are receiving this 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-283331379
----==_mimepart_5d6f0cbeba034_48ec3f80e04cd95c107639
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><b>@janaiyengar</b> approved this pull request.</p>=0D
=0D
<p>Thanks for the change -- looks MUCH better now.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2907#discussi=
on_r320535458">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;        time =3D loss_time[pn_space];=0D
       space =3D pn_space=0D
   return time, space=0D
 =0D
+PeerAwaitingAddressValidation():=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-PeerAwaitingAddressValidation():=0D
+IsPeerAwaitingAddressValidation():=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2907#discussi=
on_r320535568">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  SetLossDetectionTimer():=0D
   loss_time, _ =3D GetEarliestLossTime()=0D
   if (loss_time !=3D 0):=0D
     // Time threshold loss detection.=0D
     loss_detection_timer.update(loss_time)=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
+  if (no ack-eliciting packets in flight &amp;&amp;=0D
+      !PeerAwaitingAddressValidation()):=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-      !PeerAwaitingAddressValidation()):=0D
+      !IsPeerAwaitingAddressValidation()):=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=
FTOJKZZTDHKNHSEIB5EX5LQH4CD5A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRUWMY#pullrequestreview-283331379=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK6D3SJIM6W2K72JFXDQH4CD5ANCNFSM4IEVHR7A">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK5U5CRN=
ZEWAQQQGH3DQH4CD5A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRUWMY.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=3DAFTOJKZZTDHKNHSEIB5EX5LQH4CD5A5CNFSM4IEV=
HR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
DRUWMY#pullrequestreview-283331379",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=3Dno=
tifications\u0026email_token=3DAFTOJKZZTDHKNHSEIB5EX5LQH4CD5A5CNFSM4IEVHR=
7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDR=
UWMY#pullrequestreview-283331379",=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_5d6f0cbeba034_48ec3f80e04cd95c107639--


From nobody Tue Sep  3 18:02: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 2F928120839 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18: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 LeRyAAvUKwXT for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:02: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 74798120137 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:02:28 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:02:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567558947; bh=ax9DKpsCePU0qnWkm7gc/+3TEvkzy87H083SFVyPChs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=sFT3RnOWXiaZisYV6C5AxJmzzA27WthPmVWE8WSqLYyphCLRb2OLOMe5auQ6Ntnyv 320a7ZCWjjgwwebyv92N1foYeVUmcjtNLl9sE8+FC0I1J0kHxmuXyEQ9q2B9d2VO8h hQXcuAEbiZLXb+FenKmzBYW0uy1p7kdPI3ViBCrM=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZPD5O4CEB5VTGSF353PQYZHEVBNHHBX66EHQ@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/c527696467@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_5d6f0d23c36b3_48f93f80e04cd95c11608b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/w6HClzdbF23LQUo-DgRwUpQUzJA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 01:02:42 -0000

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

I shouldn't have commented on the changeset.  Here's my alternative to Jana's:

```
PeerCompletedAddressValidation():
  if endpoint is server:
    return true
  return has received Handshake ACK ||
           has received 1-RTT ACK
...

  if (no ack-eliciting packets in flight &&
      PeerCompletedAddressValidation()): 
```

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

<p>I shouldn't have commented on the changeset.  Here's my alternative to Jana's:</p>
<pre><code>PeerCompletedAddressValidation():
  if endpoint is server:
    return true
  return has received Handshake ACK ||
           has received 1-RTT ACK
...

  if (no ack-eliciting packets in flight &amp;&amp;
      PeerCompletedAddressValidation()): 
</code></pre>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications&amp;email_token=AFTOJK6L4QNLFKMLLQ2TTEDQH4CKHA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD52AEUY#issuecomment-527696467">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK72QYWXB2PHIEGRJL3QH4CKHANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3ZVJSXGGMBDYDELCTQH4CKHA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD52AEUY.gif" height="1" width="1" 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=AFTOJK6L4QNLFKMLLQ2TTEDQH4CKHA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD52AEUY#issuecomment-527696467",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK6L4QNLFKMLLQ2TTEDQH4CKHA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD52AEUY#issuecomment-527696467",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6f0d23c36b3_48f93f80e04cd95c11608b--


From nobody Tue Sep  3 18: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 88F5A120098 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:13: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 WpOpVCxyhV-x for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:13:21 -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 3531212007C for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:13:21 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:13:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567559600; bh=yO6aiHBdA31cPd6ISNGXyDv80G81QEiIJ3EknMyd0Lg=; h=Date:From:To:Subject:From; b=GWVTRrooCnhZy0QHtKhJjVlMnqKQqe3aXRfKwqrCYH/oNF0HwNrTxq66kyqV2Tn6C GehfA/vAC2Z3XWCFrBokSA5ObWj5RMdEv0LkTVmj5WV+CksepTeiPWJT82KpErJetH 9z1x6n51yQUbNhLFmIUWEMeV83EYmgfWARLOE+wM=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/ec34d0-e8e778@github.com>
Subject: [quicwg/base-drafts] e8e778: 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/ooRB0XjSa8gAHZJH1YCDI3juLIA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 01:13:23 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: e8e778cb0cbd934132d6be4e8e316f4ef7c7b970
      https://github.com/quicwg/base-drafts/commit/e8e778cb0cbd934132d6be4e8e316f4ef7c7b970
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-03 (Tue, 03 Sep 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 Tue Sep  3 18:13: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 80DC312007C for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:13: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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gLJNRaHQguDW for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:13: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 473D912004A for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:13:33 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:13:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567559612; bh=Ms4PhYnKgElRcz4wzx2NOJxJQaRd7FD2uQnEAJmRcgI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ds61PGSUWxYgPeHxbKos/BQbFIEuif3b3IVrUh/60XiBtxl8dEbauPQ6tyfkPvvhD YAkNmF4ZsggWWKbDaTCZLRY5hIsVip+mPzLyMzdGQERyuaMjGPdKTys98OSKbYuWBQ +6CKQZFZ5cP2DufLr7ioHQaQFgs+cFD923fYmBMs=
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/3993808604@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_5d6f0fbc3b3a6_410a3fd5aaccd96c156834"; 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/XZNoEe432RDp3rQoQhRtJoE4gNE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 01:13:35 -0000

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

@ianswett pushed 1 commit.

e8e778cb0cbd934132d6be4e8e316f4ef7c7b970  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/ec34d084545d8831abf6d5f89c09f4bc0d8be911..e8e778cb0cbd934132d6be4e8e316f4ef7c7b970

----==_mimepart_5d6f0fbc3b3a6_410a3fd5aaccd96c156834
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/e8e778cb0cbd934132d6be4e8e316f4ef7c7b970">e8e778c</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/ec34d084545d8831abf6d5f89c09f4bc0d8be911..e8e778cb0cbd934132d6be4e8e316f4ef7c7b970?email_source=notifications&amp;email_token=AFTOJK5PRSV2KYREI2XLVDLQH4DTZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBQHA3DANA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYBBSD7XAQA4D4E3VLQH4DTZANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYNTSNH4F6JLGKG3MLQH4DTZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBQHA3DANA.gif" height="1" width="1" 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/ec34d084545d8831abf6d5f89c09f4bc0d8be911..e8e778cb0cbd934132d6be4e8e316f4ef7c7b970?email_source=notifications\u0026email_token=AFTOJK5PRSV2KYREI2XLVDLQH4DTZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBQHA3DANA",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/ec34d084545d8831abf6d5f89c09f4bc0d8be911..e8e778cb0cbd934132d6be4e8e316f4ef7c7b970?email_source=notifications\u0026email_token=AFTOJK5PRSV2KYREI2XLVDLQH4DTZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBQHA3DANA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d6f0fbc3b3a6_410a3fd5aaccd96c156834--


From nobody Tue Sep  3 18:13: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 7368E1200D7 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:13:38 -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 JqHUcS9AgkPb for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:13: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 97FE312004A for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:13:36 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:13:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567559615; bh=vebna70mWz6HkOV4PT3ZYSda6uxi7k4LJiB4Wf3iIgE=; h=Date:From:To:Subject:From; b=xCjqgK6B3tnogzA17qnVoyPQzPCAH8bcY1jRa/yBQ5WzKm4MlcvFa+XZ3wp4W4VJb 0FuQVgN8fJqH2wEE/NdvaGikLSxeLQdIVFWuImyOuODpdssCDljHzfE6D7HigWe+lg PonYawUZx7AkLG34OCE/MasJS5D/gC7xLvVRyvhI=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/e8e778-d0b549@github.com>
Subject: [quicwg/base-drafts] d0b549: 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/ulIzqelEgaBxlzhpdsFJk0uhOX8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 01:13:39 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: d0b5498f344d7e60e94cfcb9637c356f6474e9d7
      https://github.com/quicwg/base-drafts/commit/d0b5498f344d7e60e94cfcb9637c356f6474e9d7
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-03 (Tue, 03 Sep 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 Tue Sep  3 18: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 E871F12007C for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:13:50 -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 6cfbu_GFav0l for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:13: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 3906812004A for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:13:49 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:13:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567559628; bh=++M9Je4F9hOZ/7PewvLSKFgo8viFuCaARerFpd95SzI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GaEthuofZY8ONGZBcWCKAop499xMoWe1hzY6K0x3D7pYjMKDjMQE5bhMjNBLAFubr 8qaSxvdKOnUtdf2U9zuQxvSXB3B59Zbhj+G3PN2xK7HyBqqrykbIL/eKXM5Td92IWk zidVn+dcBSIOa6MotH3+hNT8Jy7D4JvQMnS++Yxo=
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/3993809117@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_5d6f0fcc8bc6f_7ad53f8d7fccd96c1102be"; 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/mDz8u92qOPz6b197YjB0jxhvVE0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 01:13:51 -0000

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

@ianswett pushed 1 commit.

d0b5498f344d7e60e94cfcb9637c356f6474e9d7  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/e8e778cb0cbd934132d6be4e8e316f4ef7c7b970..d0b5498f344d7e60e94cfcb9637c356f6474e9d7

----==_mimepart_5d6f0fcc8bc6f_7ad53f8d7fccd96c1102be
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/d0b5498f344d7e60e94cfcb9637c356f6474e9d7">d0b5498</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/e8e778cb0cbd934132d6be4e8e316f4ef7c7b970..d0b5498f344d7e60e94cfcb9637c356f6474e9d7?email_source=notifications&amp;email_token=AFTOJKZ3YOMYHX47HZVYCUTQH4DUZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBQHEYTCNY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2L5SXK7A42NGMETMTQH4DUZANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5YUDQT4SK6SXWO4WTQH4DUZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBQHEYTCNY.gif" height="1" width="1" 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/e8e778cb0cbd934132d6be4e8e316f4ef7c7b970..d0b5498f344d7e60e94cfcb9637c356f6474e9d7?email_source=notifications\u0026email_token=AFTOJKZ3YOMYHX47HZVYCUTQH4DUZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBQHEYTCNY",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/e8e778cb0cbd934132d6be4e8e316f4ef7c7b970..d0b5498f344d7e60e94cfcb9637c356f6474e9d7?email_source=notifications\u0026email_token=AFTOJKZ3YOMYHX47HZVYCUTQH4DUZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBQHEYTCNY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d6f0fcc8bc6f_7ad53f8d7fccd96c1102be--


From nobody Tue Sep  3 18:14: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 3F1C51200D7 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:14: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 vHt05UbDbyGq for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:14:41 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 762E6120825 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:14:41 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:14:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567559680; bh=iJikPifqnQBn0hpIeciV//BeBrFDjR258eYozvue3NM=; h=Date:From:To:Subject:From; b=tdXt3J8dHTiVoEoskWLLb9FnumKELe+WVhU+1c9mvw3I6LcEMja7behNTX6vgz1pr tPnUOrGLBYzcMzUNwEAg3xhZ3WGCzeG9DfppW6qWlW3BrM0FgBeSmOXXgbswuzerrr /cUCKhtB1AfBCTnHg3g/k18Am2emllF0fEfcnDeY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/041040-6a75c3@github.com>
Subject: [quicwg/base-drafts] 6a75c3: Script updating gh-pages from e8e778cb. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CUPUHGJmVlt0JBdmuYlciBH2e_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: Wed, 04 Sep 2019 01:14:55 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6a75c3150d02bceb89a392a8a16d839aaa79751d
      https://github.com/quicwg/base-drafts/commit/6a75c3150d02bceb89a392a8a16d839aaa79751d
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-04 (Wed, 04 Sep 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 e8e778cb. [ci skip]



From nobody Tue Sep  3 18:15: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 4A5A9120804 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:14: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, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dq30UVXXRsN0 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:14: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 AB4621200C7 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:14:52 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:14:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567559691; bh=XkqvoYVBjh1Bw+W/x9AWlHpD1pvuQ76vHb/hoXXaW90=; h=Date:From:To:Subject:From; b=yhETxnlSb7ly8YHiHkI4RJFtBK1oSXyIRo9LdM3phrXHzXy0iGlZ10N8Yt4LDARGH oP0UtM7abkKSMeZfEaRmhyW4b13gO97EyljeTQJXYDdvDYEFbaZRyX/ueetYxwldn0 5Om/4s2XnemIG62ObwYMPl19ri01ZjWBERWDUw50=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/6a75c3-103392@github.com>
Subject: [quicwg/base-drafts] 103392: Script updating gh-pages from d0b5498f. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/eekcSCG9dhu1MlFZa1zwfkdVInk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 01:15:06 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 103392a5088e5a0eca65548bf7a0d6d3290da54d
      https://github.com/quicwg/base-drafts/commit/103392a5088e5a0eca65548bf7a0d6d3290da54d
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-04 (Wed, 04 Sep 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 d0b5498f. [ci skip]



From nobody Tue Sep  3 18:21: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 8386612004A for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:21: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 Fp-ximwS_iky for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:21: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 449AD120098 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:21:31 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:21:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567560090; bh=KGGCLtZhYHWa5vCPLoh5XF5/bz71txi4R/L+FHnfMsI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=18/rv55t/+cWrDEZj5seWarvYpLvlrCFIq7wXNrOpAedNxTDfOPTs1wGcB+ti4Qg7 MDY7DdxytTvhLw9Gy2cMjOQvECyZDUhfq5H+tYNBW3tQ+1jl7xS+p8joFQvr4TuWdU uAs3+cPpHX09DS5w9bdbmuXcIOmdItKkzxufN+RY=
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/3993824252@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_5d6f119a39d18_41143fd5aaccd96c4767"; 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/JiSNvDrGbRM4BdB2dRUlME9OAt8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 01:21:33 -0000

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

@erickinnear pushed 3 commits.

9f3b4214e6e96a57a66cb9cff7e995528cbcd450  Review comments
3610a785d1a7289d2add2775d2b8ae43aaa5cc5f  Move under security considerations
285020522eb63efa392c1fbdfe66898136ef7111  Remove other "we" instances


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2925/files/c22e24fb18b952d4ce2ceb7447d5d8c355c2508a..285020522eb63efa392c1fbdfe66898136ef7111

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

<p><a href="https://github.com/erickinnear" class="user-mention">@erickinnear</a> pushed 3 commits.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/9f3b4214e6e96a57a66cb9cff7e995528cbcd450">9f3b421</a>  Review comments</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/3610a785d1a7289d2add2775d2b8ae43aaa5cc5f">3610a78</a>  Move under security considerations</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/285020522eb63efa392c1fbdfe66898136ef7111">2850205</a>  Remove other &quot;we&quot; instances</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#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/c22e24fb18b952d4ce2ceb7447d5d8c355c2508a..285020522eb63efa392c1fbdfe66898136ef7111?email_source=notifications&amp;email_token=AFTOJKY3M4NCADCGZSO3FB3QH4ERVA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZTHE4TGOBSGQZDKMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYV3VMES4Q6BBB5XKDQH4ERVANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ6GUIWYG6F5OWFNM3QH4ERVA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZTHE4TGOBSGQZDKMQ.gif" height="1" width="1" 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/c22e24fb18b952d4ce2ceb7447d5d8c355c2508a..285020522eb63efa392c1fbdfe66898136ef7111?email_source=notifications\u0026email_token=AFTOJKY3M4NCADCGZSO3FB3QH4ERVA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZTHE4TGOBSGQZDKMQ",
"url": "https://github.com/quicwg/base-drafts/pull/2925/files/c22e24fb18b952d4ce2ceb7447d5d8c355c2508a..285020522eb63efa392c1fbdfe66898136ef7111?email_source=notifications\u0026email_token=AFTOJKY3M4NCADCGZSO3FB3QH4ERVA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZTHE4TGOBSGQZDKMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d6f119a39d18_41143fd5aaccd96c4767--


From nobody Tue Sep  3 18: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 0B17D12004A for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:22:14 -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 WccmmVl6zbuO for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:22: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 9C590120098 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:22:11 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:22:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567560130; bh=dlb+3VPMgWPN22iB2o+hV030bJ3RU6w3V6uHr2A24Js=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UhP+I9MdbcUyjTXJyT4EgXYJZcveKX5LNJ159Db1lC75uH//zTek6l8/jHvNV1D9R 0GZB50BwpFw2kvjEELDyZVrZgX75JSm0rJIM0xnUgAMAlyOv/b17EDygzwy45GZGZH nD9uiRI9fC0bp6anMbM87hQD8p7qbkPasFE8R+MA=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2LHF3X54A7IQFHSMV3PRJFFEVBNHHBYGSUE4@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/283335625@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_5d6f11c2b60f3_4a1d3fcd89ecd95c124262"; 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/CKGRTCgmzMCNeFVqeyZRu5Dyojc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 01:22:14 -0000

----==_mimepart_5d6f11c2b60f3_4a1d3fcd89ecd95c124262
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}

Two thoughts here: 
- This was an appendix since TLS 1.3 did it as an appendix. It's kind of nice that way, since we're documenting what we believe the rest of the document says, not introducing any new attacks or mitigations that shouldn't already have been covered above.
- From a purely aesthetic perspective, having 21.11.3.2. as a section means that I refer to one of these items as: 
> Section 21.11.3.2., point 3.

All that said, I've moved this to the last section in Security Considerations for the time being, and I don't have a super strong opinion on where it finally lands. :)
TLS is also a little bit different in that most of the document is a security consideration in one way or another, so some of the reasoning that resulted in structure there is not necessarily reflected 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/2925#discussion_r320538854
----==_mimepart_5d6f11c2b60f3_4a1d3fcd89ecd95c124262
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_r320538854">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}
</pre>
<p>Two thoughts here:</p>
<ul>
<li>This was an appendix since TLS 1.3 did it as an appendix. It's kind of nice that way, since we're documenting what we believe the rest of the document says, not introducing any new attacks or mitigations that shouldn't already have been covered above.</li>
<li>From a purely aesthetic perspective, having 21.11.3.2. as a section means that I refer to one of these items as:</li>
</ul>
<blockquote>
<p>Section 21.11.3.2., point 3.</p>
</blockquote>
<p>All that said, I've moved this to the last section in Security Considerations for the time being, and I don't have a super strong opinion on where it finally lands. :)<br>
TLS is also a little bit different in that most of the document is a security consideration in one way or another, so some of the reasoning that resulted in structure there is not necessarily reflected in QUIC.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications&amp;email_token=AFTOJK7TOOQ4HYWZ73PNQ2LQH4EUFA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRVXSI#discussion_r320538854">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYARUDQAYNBT4SV7K3QH4EUFANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3FAL2TMIMALA3KH4DQH4EUFA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRVXSI.gif" height="1" width="1" 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=AFTOJK7TOOQ4HYWZ73PNQ2LQH4EUFA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRVXSI#discussion_r320538854",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK7TOOQ4HYWZ73PNQ2LQH4EUFA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRVXSI#discussion_r320538854",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6f11c2b60f3_4a1d3fcd89ecd95c124262--


From nobody Tue Sep  3 18:25: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 D34EC12009C for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:25: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 MCttWYWXmVzu for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:25: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 6385E120098 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:25:29 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:25:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567560328; bh=ZQDfkZ0f+4nZPzIhrPfqfs9YX1nC+Hcqm8Odn5hODCU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Dy4XVfPrD8GpRUinAkI00sQ0N+2YmF8tkF8W2nZOkPfuiyfXLAtnyBy+WVx1xPxgh kKUK0LLxtWyEFfjPOpECmMpDKpzOCEcK6D4JtM/3jgRkKYgJftIE1JtB9EPGNsozoW 8NwqFF2EiGBOTSxK0g7OUbYV4z04qaKl1iHzROOs=
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/3993832338@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_5d6f1288a40c9_3de93fb9c92cd964624e4"; 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/f1Gp0xWAbt74uEon3GzLP1PNX-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: Wed, 04 Sep 2019 01:25:31 -0000

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

@erickinnear pushed 1 commit.

0ba5b02857f64d231a7ece491c9d26dd5a0b353a  Merge branch 'master' into ek/migration_threat_model


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2925/files/285020522eb63efa392c1fbdfe66898136ef7111..0ba5b02857f64d231a7ece491c9d26dd5a0b353a

----==_mimepart_5d6f1288a40c9_3de93fb9c92cd964624e4
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/0ba5b02857f64d231a7ece491c9d26dd5a0b353a">0ba5b02</a>  Merge branch &#39;master&#39; into ek/migration_threat_model</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#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/285020522eb63efa392c1fbdfe66898136ef7111..0ba5b02857f64d231a7ece491c9d26dd5a0b353a?email_source=notifications&amp;email_token=AFTOJK7NWQG2JKBKXOPY6NLQH4FARA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZTHE4TGOBTGIZTGOA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7L3DE6IXMRKA3M2QTQH4FARANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZRM7WBSZZ4NLJXIRLQH4FARA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZTHE4TGOBTGIZTGOA.gif" height="1" width="1" 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/285020522eb63efa392c1fbdfe66898136ef7111..0ba5b02857f64d231a7ece491c9d26dd5a0b353a?email_source=notifications\u0026email_token=AFTOJK7NWQG2JKBKXOPY6NLQH4FARA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZTHE4TGOBTGIZTGOA",
"url": "https://github.com/quicwg/base-drafts/pull/2925/files/285020522eb63efa392c1fbdfe66898136ef7111..0ba5b02857f64d231a7ece491c9d26dd5a0b353a?email_source=notifications\u0026email_token=AFTOJK7NWQG2JKBKXOPY6NLQH4FARA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZTHE4TGOBTGIZTGOA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d6f1288a40c9_3de93fb9c92cd964624e4--


From nobody Tue Sep  3 18:31: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 DC145120819 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:31:50 -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 LlykCte7rrjg for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:31: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 4A71612086C for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:31:49 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 581B56E12BD for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:31:48 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:31:48 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/d0b549-c212df@github.com>
Subject: [quicwg/base-drafts] c212df: Some of MT's suggestions
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/R-EAyWh-bTrZEiMhsh5y9DUlef8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 01:31:58 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: c212dfdf7e7b48481f488fe3c96e207d814f8180
      https://github.com/quicwg/base-drafts/commit/c212dfdf7e7b48481f488fe3c96e207d814f8180
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-03 (Tue, 03 Sep 2019)

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

  Log Message:
  -----------
  Some of MT's suggestions



From nobody Tue Sep  3 18: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 9BB361200C1 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:31: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 gykNrLs21uTW for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:31: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 C3EC2120220 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:31:56 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:31:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567560716; bh=PmwfH1ZhstdgAq42EYLmxovK6GRBFGdRoK7QoB9TRB0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KGyk5Eyap8AGa+Tum5wD85eQqvvseHdkAiAo65GZOAEsK8cwuMo27lCevkcZKTPmm FUAlfFLYLqbYWISpqhbgos6oaInU+qTNUWEe+izDNVm6yVLUNkfgumJ0u7oVBHxu8r X2g0i6eeG+qq5Ct8GPIZ7hKU+NfMYdIT7d2OyFZE=
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/3993845722@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_5d6f140c1d242_d9b3fa5ed0cd96011348d"; 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/eucKZIp71sIdrqj0njvuVdEViB8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 01:31:59 -0000

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

@ianswett pushed 1 commit.

c212dfdf7e7b48481f488fe3c96e207d814f8180  Some of MT's suggestions


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

----==_mimepart_5d6f140c1d242_d9b3fa5ed0cd96011348d
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/c212dfdf7e7b48481f488fe3c96e207d814f8180">c212dfd</a>  Some of MT&#39;s suggestions</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/2907/files/d0b5498f344d7e60e94cfcb9637c356f6474e9d7..c212dfdf7e7b48481f488fe3c96e207d814f8180?email_source=notifications&amp;email_token=AFTOJK3AN2DTU4FVWHKRQDDQH4FYZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBUGU3TEMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6UPBP7NASCY6E477DQH4FYZANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ62UXNGS35CGJKN63QH4FYZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBUGU3TEMQ.gif" height="1" width="1" 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/d0b5498f344d7e60e94cfcb9637c356f6474e9d7..c212dfdf7e7b48481f488fe3c96e207d814f8180?email_source=notifications\u0026email_token=AFTOJK3AN2DTU4FVWHKRQDDQH4FYZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBUGU3TEMQ",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/d0b5498f344d7e60e94cfcb9637c356f6474e9d7..c212dfdf7e7b48481f488fe3c96e207d814f8180?email_source=notifications\u0026email_token=AFTOJK3AN2DTU4FVWHKRQDDQH4FYZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBUGU3TEMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d6f140c1d242_d9b3fa5ed0cd96011348d--


From nobody Tue Sep  3 18:33: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 2F92C12008F for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:33:43 -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 uQr7I5XFP89B for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:33: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 B75DF12006F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:33:41 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:33:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567560821; bh=hoE9jvP9UXHS+pORT5YAU+yNMyR6uviUj6qUnagX/WE=; h=Date:From:To:Subject:From; b=rq6V+zV4Y59IpFMGVVx8T/bAh3ifugwO2diHptu6nxEr+7qt3G41c4DjzjYwtfSqt jHn2Z3cicdmTkouyMNAo+0AUvHkXlxl1TqjluILIDdXtkSHv8IHmZTipLeaYop8a75 OERy26tJG8szWs+ee16TMxQ+cUhNDCU8NnmGF/ow=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/c212df-92b5fd@github.com>
Subject: [quicwg/base-drafts] 92b5fd: 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/UrmC9OF6wwXukvCoT1nyiFMatL0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 01:33:43 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: 92b5fd76dc8b7dc38f217ae1a6ba633a7af0d7f3
      https://github.com/quicwg/base-drafts/commit/92b5fd76dc8b7dc38f217ae1a6ba633a7af0d7f3
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-03 (Tue, 03 Sep 2019)

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

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



From nobody Tue Sep  3 18: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 DB98C12006F for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:33:50 -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 bvpMwisPPEOf for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:33: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 A6A2B12004A for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:33:49 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:33:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567560828; bh=hjZ23VRmwltYuhSjwmk6FSglhsy8eDxpSF+bkUSBggY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gClvIO8jzCivEdOHk4GzL1jtpbBMIql58Ts1yBGCbY2m30aTzRoE9xW3kcdnDBF/1 /snyOuoYMjCaZmH6jOa5eT2QAwI0WhTUL4nS25n+TaXez9W99fJHM+AytuxJkNd8WE d9MD3ylxvriti8JtVgVDYSmC4b4xm80cCO3Vx4BI=
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/3993849647@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_5d6f147cbccfb_51563fd8028cd95c2076f7"; 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/xE1t1y3OtEcAqmI9SmYdOabtugc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 01:33:51 -0000

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

@ianswett pushed 1 commit.

92b5fd76dc8b7dc38f217ae1a6ba633a7af0d7f3  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/c212dfdf7e7b48481f488fe3c96e207d814f8180..92b5fd76dc8b7dc38f217ae1a6ba633a7af0d7f3

----==_mimepart_5d6f147cbccfb_51563fd8028cd95c2076f7
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/92b5fd76dc8b7dc38f217ae1a6ba633a7af0d7f3">92b5fd7</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/c212dfdf7e7b48481f488fe3c96e207d814f8180..92b5fd76dc8b7dc38f217ae1a6ba633a7af0d7f3?email_source=notifications&amp;email_token=AFTOJKZ7GH7JJQD66H44F6DQH4F7ZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBUHE3DINY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK54PMDRUN4JNQD3KWTQH4F7ZANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3EZSCPP5FAOGDYU4TQH4F7ZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBUHE3DINY.gif" height="1" width="1" 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/c212dfdf7e7b48481f488fe3c96e207d814f8180..92b5fd76dc8b7dc38f217ae1a6ba633a7af0d7f3?email_source=notifications\u0026email_token=AFTOJKZ7GH7JJQD66H44F6DQH4F7ZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBUHE3DINY",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/c212dfdf7e7b48481f488fe3c96e207d814f8180..92b5fd76dc8b7dc38f217ae1a6ba633a7af0d7f3?email_source=notifications\u0026email_token=AFTOJKZ7GH7JJQD66H44F6DQH4F7ZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBUHE3DINY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d6f147cbccfb_51563fd8028cd95c2076f7--


From nobody Tue Sep  3 18: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 726CF12007C for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:38:49 -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 cvh2uaJnz7_i for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:38:48 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0B28112004A for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:38:48 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:38:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567561127; bh=dKsxMlrzIvMH6l6haW06Ca/ME+YS00Miz0MhlBI4P+w=; h=Date:From:To:Subject:From; b=oe4PktEvw4kbtoWVVvYa/tATf9VHmTjqdrjwgijAj5QIJhPJ2jI/9v03dKdpq+YLA 6IDeeKNFGxnKNAcaO914hi1u7lI7FN4LZE9rt6FUKipHEVlNnFBiVYgZMlYNf+3uiq 0WUpI42Uj3ZHwLlFYpnbk+CzAWGxeGxssj1hBLSI=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/92b5fd-d55a15@github.com>
Subject: [quicwg/base-drafts] d55a15: 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/qGKMUIUEDojP1pbi8KiyP5TLfJ0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 01:38:49 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts
  Commit: d55a15304192ed4456ee6eba0b6ce2ab6dfaf0f4
      https://github.com/quicwg/base-drafts/commit/d55a15304192ed4456ee6eba0b6ce2ab6dfaf0f4
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-03 (Tue, 03 Sep 2019)

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

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



From nobody Tue Sep  3 18:39: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 B236412008F for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:38: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 OaNTevjt7hPo for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:38: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 063F012007C for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:38:56 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:38:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567561135; bh=GFJZqfd+GOHfM3QYZpYNGK2nTnqImvYe3mcKkKE4GOM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=im8BuVwrnndTDAzpyAUv2QJzfTxM6hPLDU1NI3ZlAEyc5SQcpfUINt9l1oV5qKqhx CX3cnYKDwn/s49/kmjraI9em+h+TTu6WrtP7Ow7jEQ18nrdL1RrXbeaURNiMZRY6my O4wow+Zu3zBVd5+5QcO4lAWKsl+6D7mim0FrDYMQ=
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/3993859885@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_5d6f15af133ab_d8d3fa5ed0cd96011063a"; 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/qD1QOtSmK7idaWiGiuBIqhSA3Ko>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 01:38:59 -0000

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

@ianswett pushed 1 commit.

d55a15304192ed4456ee6eba0b6ce2ab6dfaf0f4  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/92b5fd76dc8b7dc38f217ae1a6ba633a7af0d7f3..d55a15304192ed4456ee6eba0b6ce2ab6dfaf0f4

----==_mimepart_5d6f15af133ab_d8d3fa5ed0cd96011063a
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/d55a15304192ed4456ee6eba0b6ce2ab6dfaf0f4">d55a153</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/92b5fd76dc8b7dc38f217ae1a6ba633a7af0d7f3..d55a15304192ed4456ee6eba0b6ce2ab6dfaf0f4?email_source=notifications&amp;email_token=AFTOJK4Q5WQUBEQO2THPFLTQH4GS7A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBVHE4DQNI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ76LLAAQPJ4P3ZJATQH4GS7ANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY325B4KVP24QJXVKTQH4GS7A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBVHE4DQNI.gif" height="1" width="1" 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/92b5fd76dc8b7dc38f217ae1a6ba633a7af0d7f3..d55a15304192ed4456ee6eba0b6ce2ab6dfaf0f4?email_source=notifications\u0026email_token=AFTOJK4Q5WQUBEQO2THPFLTQH4GS7A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBVHE4DQNI",
"url": "https://github.com/quicwg/base-drafts/pull/2907/files/92b5fd76dc8b7dc38f217ae1a6ba633a7af0d7f3..d55a15304192ed4456ee6eba0b6ce2ab6dfaf0f4?email_source=notifications\u0026email_token=AFTOJK4Q5WQUBEQO2THPFLTQH4GS7A5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TQNRZGY4TCOCQOVZWQIZTHE4TGOBVHE4DQNI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d6f15af133ab_d8d3fa5ed0cd96011063a--


From nobody Tue Sep  3 18: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 70D8C12008F for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:40:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 PEkIlYKQV1IY for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:40: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 10DD712004A for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:40:13 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 3CBFE1C17ED for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:40:12 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:40:12 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/103392-e7e66c@github.com>
Subject: [quicwg/base-drafts] e7e66c: Script updating gh-pages from d55a1530. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3fi3F2hfiFgtpsJl7HnqTerL85w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 01:40:15 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: e7e66c59cb18f2737828387c1dec6b09303d94f7
      https://github.com/quicwg/base-drafts/commit/e7e66c59cb18f2737828387c1dec6b09303d94f7
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-04 (Wed, 04 Sep 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 d55a1530. [ci skip]



From nobody Tue Sep  3 18:46: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 752F312083B for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:46: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 pEKLCza7V8Ow for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:46:31 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ECB4F1200B2 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:46:30 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:46:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567561590; bh=n5n1XvKoZWJFoB5qrwFjJVLPj3swPVH8yYVqijdji1E=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DuD9JYwHKj+iDOLuyuvpQgMd7Ki8pVcu8ASayOzM7NFh/r0EbOEGs1i5Fe4sDE6fV O+4kD9BwybmL4o1DtzoM5fJVXGVSwPDh8ELP96Pq57prn8CfSYH/qqdTPYUCEpa+91 znZ8Xn94eErJP4UPRzoJx2b/07FG2XmagroVm8Nk=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5WP557VWASALMNUEN3PRE7NEVBNHHBZ4IYAM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2993/review/283340375@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2993@github.com>
References: <quicwg/base-drafts/pull/2993@github.com>
Subject: Re: [quicwg/base-drafts] Perform stateless reset token comparisons in constant time (#2993)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6f17761097d_4d3c3fdec36cd964196628"; 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/QKfOKk__m3BG0IjjQCi816G2QvI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 01:46:45 -0000

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


From nobody Tue Sep  3 18: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 08A7E12004A for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:47: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 kgVojku6c--4 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 18:47:55 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 63FCC12003E for <quic-issues@ietf.org>; Tue,  3 Sep 2019 18:47:55 -0700 (PDT)
Date: Tue, 03 Sep 2019 18:47:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567561674; bh=d3Rl0CPpDpBdE1ndjMWZMPPehyHgTPXB6qsuWaQZZLQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IFtHOQxVgGpoAd4WPZMFiQ58ANcmUeiQwt9ET1MUkvEjexePh568gw50KDn20UVfd ID4iM+eKWeo6f5Mc+Sg+a0ZpEMTb6odfXM35JOLr6eyRfY+jJfGRfGJ4pZzcwtRT+h Gs7vQ1fjNWNGzdHURlac3/cbX4cE2BOP4MsfnuGI=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK52NNM6PF4CDG5NUHF3PRMFVEVBNHHBX66EHQ@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/283340649@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_5d6f17caabd47_7ad53f8d7fccd96c2319a0"; 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/kGz2qZ9zjnFkFtL-emsFsonip_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: Wed, 04 Sep 2019 01:47:57 -0000

----==_mimepart_5d6f17caabd47_7ad53f8d7fccd96c2319a0
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/2907#pullrequestreview-283340649
----==_mimepart_5d6f17caabd47_7ad53f8d7fccd96c2319a0
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/2907?email_source=notifications&amp;email_token=AFTOJK42A7CPR22JI4CHGKTQH4HUVA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRW62I#pullrequestreview-283340649">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3VEW7OYVGMGXDR253QH4HUVANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYNSWP35IJAZRGSWPLQH4HUVA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRW62I.gif" height="1" width="1" 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=AFTOJK42A7CPR22JI4CHGKTQH4HUVA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRW62I#pullrequestreview-283340649",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK42A7CPR22JI4CHGKTQH4HUVA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRW62I#pullrequestreview-283340649",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6f17caabd47_7ad53f8d7fccd96c2319a0--


From nobody Tue Sep  3 19:10: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 333E9120033 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 19:10:13 -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, 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, URI_HEX=0.1] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id eqwQ5N56fYvT for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 19:10:11 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 29FC512003E for <quic-issues@ietf.org>; Tue,  3 Sep 2019 19:10:11 -0700 (PDT)
Date: Tue, 03 Sep 2019 19:10:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567563010; bh=BQfJbQv87NqK0Ulfr+VjlKBx01PnseMFSzVlPokEeBw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vO4l73iQszWsV1435mCiS3EUajo/KXFlEgXsdNyH+3S7kP9Ve0wrhuBw/BerPQ8LN 1wmYx/W7h0fPqsRJXV45BMOtekgK+k0lepPymnOzlkEAQ1t6YAVvVMk9qDbexi6eIT CImOzn21K8vX7SGfaJVSsKyL1WvqLYs0HqOs/7K0=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK65IGDK4K5YMLDBETN3PRHYFEVBNHHBZ4IYAM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2993/c527709362@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2993@github.com>
References: <quicwg/base-drafts/pull/2993@github.com>
Subject: Re: [quicwg/base-drafts] Perform stateless reset token comparisons in constant time (#2993)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6f1d0212341_54023faaa42cd95c805bf"; 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/4XQHDDMYzo4jqSFLSCm7m1XWxLQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 02:10:13 -0000

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

@marten-seemann 
> In my implementation, I have a map of reset tokens -> connections. Unless I switch to a constant time map implementation (the standard library doesn't provide one, you'd have to write that yourself)

As I stated on the issue, using a "standard hash map implementation" for storing stateless reset tokens as-is is not a good approach, as it might be vulnerable to [hash flooding DoS attacks](https://131002.net/siphash/siphashdos_appsec12_slides.pdf). I think this is a unique property for a hash map containing stateless reset tokens; hash maps containing CIDs is not susceptible to the issue as CIDs are chosen by the endpoint (rather than the peer), nor are the hash maps containing streams, as stream IDs are generated in sequential order (assuming that an endpoint would not have a very high stream concurrency per each connection).

Considering that, we _might_ want to state something like the following in Security Considerations: _As the stateless reset tokens are controlled by the peers, QUIC endpoints SHOULD be resistant to hash flooding DoS attacks when using a hash map for retaining those tokens. One way of achieving such property is to retain and compare the transformed values of the stateless tokens where the transformation is defined as a cryptographically-secure pseudo-random permutation (e.g., block cipher) or a pseudo-random function (e.g., secure hash function), instead of using the raw token values as the hash keys. This approach also satisfies the constant time comparison requirements in section x.y._

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2993#issuecomment-527709362
----==_mimepart_5d6f1d0212341_54023faaa42cd95c805bf
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></p>
<blockquote>
<p>In my implementation, I have a map of reset tokens -&gt; connections. Unless I switch to a constant time map implementation (the standard library doesn't provide one, you'd have to write that yourself)</p>
</blockquote>
<p>As I stated on the issue, using a "standard hash map implementation" for storing stateless reset tokens as-is is not a good approach, as it might be vulnerable to <a href="https://131002.net/siphash/siphashdos_appsec12_slides.pdf" rel="nofollow">hash flooding DoS attacks</a>. I think this is a unique property for a hash map containing stateless reset tokens; hash maps containing CIDs is not susceptible to the issue as CIDs are chosen by the endpoint (rather than the peer), nor are the hash maps containing streams, as stream IDs are generated in sequential order (assuming that an endpoint would not have a very high stream concurrency per each connection).</p>
<p>Considering that, we <em>might</em> want to state something like the following in Security Considerations: <em>As the stateless reset tokens are controlled by the peers, QUIC endpoints SHOULD be resistant to hash flooding DoS attacks when using a hash map for retaining those tokens. One way of achieving such property is to retain and compare the transformed values of the stateless tokens where the transformation is defined as a cryptographically-secure pseudo-random permutation (e.g., block cipher) or a pseudo-random function (e.g., secure hash function), instead of using the raw token values as the hash keys. This approach also satisfies the constant time comparison requirements in section x.y.</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/2993?email_source=notifications&amp;email_token=AFTOJK6M2GVS77AKQS3JNKLQH4KIFA5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD52DJMQ#issuecomment-527709362">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6B5XWQ5Y4VUIWCFYDQH4KIFANCNFSM4IP3T76Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK47KED6XU57C6MYMJTQH4KIFA5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD52DJMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2993?email_source=notifications\u0026email_token=AFTOJK6M2GVS77AKQS3JNKLQH4KIFA5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD52DJMQ#issuecomment-527709362",
"url": "https://github.com/quicwg/base-drafts/pull/2993?email_source=notifications\u0026email_token=AFTOJK6M2GVS77AKQS3JNKLQH4KIFA5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD52DJMQ#issuecomment-527709362",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6f1d0212341_54023faaa42cd95c805bf--


From nobody Tue Sep  3 19:15: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 0C76612007C for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 19:15: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 LGqdTQJWVQ_f for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 19:15: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 C36E8120090 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 19:15:32 -0700 (PDT)
Date: Tue, 03 Sep 2019 19:15:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567563331; bh=XOWjUnnpbMPLdQyq7nLIFls0ppqM1zlIg/5DADhGTvg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LGLUICricKL6KjJhNSd3D2Ng2KunuOw34Uu3igcUwCQZpd4yY6IKt5kVSqWYCPd77 zKyv5/4MCQdDdeNVG6xCBBp2gjrzwA5SFstJOQL23Wl8w+jaknUawY5Z3VvvjIp99H lTTyq8Nl6CgXyQ/ADhcdTV2VTteI6nm41hhnwXB0=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6PCPCZLB6JR6FHN553PRBLHEVBNHHBZ4IYAM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2993/c527710413@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2993@github.com>
References: <quicwg/base-drafts/pull/2993@github.com>
Subject: Re: [quicwg/base-drafts] Perform stateless reset token comparisons in constant time (#2993)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6f1e43d00c9_4ba3f97fc8cd95c113163"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/04xhxfLeQJmgt8_gfk8fLU5nx3Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 02:15:35 -0000

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

A PR that said that might be worth talking about.

Nit: You need the "secure hash function" to be keyed in some 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/2993#issuecomment-527710413
----==_mimepart_5d6f1e43d00c9_4ba3f97fc8cd95c113163
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>A PR that said that might be worth talking about.</p>
<p>Nit: You need the "secure hash function" to be keyed in some 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/2993?email_source=notifications&amp;email_token=AFTOJK5NJR7ZZVV7MGVA5CDQH4K4HA5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD52DRTI#issuecomment-527710413">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6QVBNHEKG5TWV3MUTQH4K4HANCNFSM4IP3T76Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2GWKCC5ECEXXFIOM3QH4K4HA5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD52DRTI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2993?email_source=notifications\u0026email_token=AFTOJK5NJR7ZZVV7MGVA5CDQH4K4HA5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD52DRTI#issuecomment-527710413",
"url": "https://github.com/quicwg/base-drafts/pull/2993?email_source=notifications\u0026email_token=AFTOJK5NJR7ZZVV7MGVA5CDQH4K4HA5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD52DRTI#issuecomment-527710413",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6f1e43d00c9_4ba3f97fc8cd95c113163--


From nobody Tue Sep  3 19: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 8C0CD12007C for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 19:22: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 ippA5VBiNHKD for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 19:22: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 C8362120033 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 19:22:16 -0700 (PDT)
Date: Tue, 03 Sep 2019 19:22:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567563735; bh=8ajRGdPO9PxTYNX+FurPgv7mZTUDAS9asEn/LED3NS4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ehsCD9gQVkPYpJ6VF6mozfnOH1m78IGs7esUUc/iOlP/l2D+0+sRNPlSjGWTEGyzV Wgg70DuDgauKTTfeOt8w7GV+QXogyZNqZcUnNhtU3R4trCk3j0Sp5Clae5VeQ84mmF mVTcuF2Y9765/rudUhBRSQzLKjENuGJIYAOt0Z7c=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5BHG6IYBR3Z2EL3WF3PRCEPEVBNHHBX66EHQ@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/283347265@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_5d6f1fd791c9b_4ab3f97fc8cd95c12974a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/BsI26h_k68syWdvdXBkanypCOm4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 02:22:19 -0000

----==_mimepart_5d6f1fd791c9b_4ab3f97fc8cd95c12974a
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/2907#pullrequestreview-283347265
----==_mimepart_5d6f1fd791c9b_4ab3f97fc8cd95c12974a
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/2907?email_source=notifications&amp;email_token=AFTOJK566HTUKWUQDIPUQA3QH4LVPA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRYSQI#pullrequestreview-283347265">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5DVZU3NGJSBB662ELQH4LVPANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6NRI4LNWRKENQDYCTQH4LVPA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRYSQI.gif" height="1" width="1" 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=AFTOJK566HTUKWUQDIPUQA3QH4LVPA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRYSQI#pullrequestreview-283347265",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK566HTUKWUQDIPUQA3QH4LVPA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDRYSQI#pullrequestreview-283347265",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6f1fd791c9b_4ab3f97fc8cd95c12974a--


From nobody Tue Sep  3 19:30: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 7E60E120072 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 19:30:06 -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 kMhl9fMIKHNL for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 19:30:05 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C3486120033 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 19:30:04 -0700 (PDT)
Date: Tue, 03 Sep 2019 19:30:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567564203; bh=B7w7ZeeddVti5VA+RQzp77whMYc3wyQoiPvaNCKfqG4=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=AyESmertMNQgLyn5JR/gQlNgFU/yB5NjtqqoNu00Syqfpn75E3oBCI7LiuAeRoGCD ij55cr76zOaKRPX7ka0qCjQ3vNbs27VvgZUMopEPgkcOsBwtNRQS3nTqVNk/dEUn/I MbYGFMMisAXGKd24nboDFF+a9vZj2QKYat8t2w6E=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK754NYQQ7XRO4WQRXV3PRKCXEVBNHHB2JBBPE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3005@github.com>
Subject: [quicwg/base-drafts] Add Security Considerations for SRT collision attack (#3005)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6f21ab948c0_4fe53ff7a42cd96462016"; 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/wBbRCH-D3Xo-cvFvTdeJB8Wzmyk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 02:30:07 -0000

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

Addresses the concerns discussed in #2993, #2152.

**Warning: this PR builds on top of #2993.** Please let me know if you&#39;d want me to open an issue for this and handle the PR separately rather than piggybacking on #2993.
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * describe collision attack on SRTs

-- File Changes --

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

-- Patch Links --

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

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

<p>Addresses the concerns discussed in <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="485562371" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2993" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2993/hovercard" href="https://github.com/quicwg/base-drafts/pull/2993">#2993</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="390829693" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2152" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2152/hovercard" href="https://github.com/quicwg/base-drafts/issues/2152">#2152</a>.</p>
<p><strong>Warning: this PR builds on top of <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="485562371" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2993" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2993/hovercard" href="https://github.com/quicwg/base-drafts/pull/2993">#2993</a>.</strong> Please let me know if you'd want me to open an issue for this and handle the PR separately rather than piggybacking on <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="485562371" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2993" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2993/hovercard" href="https://github.com/quicwg/base-drafts/pull/2993">#2993</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/3005'>https://github.com/quicwg/base-drafts/pull/3005</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>describe collision attack on SRTs</li>
</ul>

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

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

----==_mimepart_5d6f21ab948c0_4fe53ff7a42cd96462016--


From nobody Tue Sep  3 19: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 5DF78120033 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 19:30: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 Keirjkwd7hRq for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 19:30:33 -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 D1C5512007C for <quic-issues@ietf.org>; Tue,  3 Sep 2019 19:30:33 -0700 (PDT)
Date: Tue, 03 Sep 2019 19:30:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567564233; bh=tI84LRZc7ZkH9IFXnv5M0angxImGH7GTt1fbQUOXBi8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1Vhkcbe4lwGVYTJPmx7Z5L0mbZVkyuJfJPmWcYkyRfFXKea8Vh5pLRAm2mjNNpY3l BtZEseYuBFiCQZbTEepHt8aRHhOeQEH/G724yRyXoPsarUySmKMrjuoTPRugmH5IQ7 aYG6Zm8BHSyLOzzhj3IPEkSV/2WTSO+48xEjTQNY=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4CV22KFICZU3E2H5V3PRKEREVBNHHBZ4IYAM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2993/c527713303@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2993@github.com>
References: <quicwg/base-drafts/pull/2993@github.com>
Subject: Re: [quicwg/base-drafts] Perform stateless reset token comparisons in constant time (#2993)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6f21c929be_56743fc3d4ecd95c15188b"; 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/AQvqFFRznVsTqumqFxe1M61VNuo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 02:30:35 -0000

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

@martinthomson Fair enough. Created #3005.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2993#issuecomment-527713303
----==_mimepart_5d6f21c929be_56743fc3d4ecd95c15188b
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> Fair enough. Created <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="488907129" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3005" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3005/hovercard" href="https://github.com/quicwg/base-drafts/pull/3005">#3005</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/2993?email_source=notifications&amp;email_token=AFTOJK3M7CPOGXAZS5LGSULQH4MUTA5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD52EIFY#issuecomment-527713303">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5BYSYADQODKGLIKETQH4MUTANCNFSM4IP3T76Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5RBWNBW6SWO2YOPITQH4MUTA5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD52EIFY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2993?email_source=notifications\u0026email_token=AFTOJK3M7CPOGXAZS5LGSULQH4MUTA5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD52EIFY#issuecomment-527713303",
"url": "https://github.com/quicwg/base-drafts/pull/2993?email_source=notifications\u0026email_token=AFTOJK3M7CPOGXAZS5LGSULQH4MUTA5CNFSM4IP3T762YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD52EIFY#issuecomment-527713303",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6f21c929be_56743fc3d4ecd95c15188b--


From nobody Tue Sep  3 19:38: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 CE707120072 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 19:38: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 vcgWvsehj3vT for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 19:38: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 7ED6C120033 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 19:38:37 -0700 (PDT)
Date: Tue, 03 Sep 2019 19:38:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567564716; bh=BRS4xUDzlUF5CY6GvjpKGmIxx2NyUiHBsNBvISBJJZ4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eU+d++8JHuFgXzXI1C21Wd3ahL0yn+PrSGz2e+MCq0jIKNSTrRV84zyPhFB6e0IPB 9ZQyS0gqp5wVN4KqxYaJCE+zrdInMjpoVYaBh2ds+4DyBwobb36Ir+ABweD5qoQD5I HHZUpLhIGZrcy9R0/mMBPu3W+BklY8/9gP3+Roo0=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3005/push/3993985036@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3005@github.com>
References: <quicwg/base-drafts/pull/3005@github.com>
Subject: Re: [quicwg/base-drafts] Add Security Considerations for SRT hash collision attack (#3005)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6f23ac894de_1993fb10f8cd96c1410b0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9EIguZkxPHrjWRjpR5HJgqzuzog>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 02:38:39 -0000

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

@kazuho pushed 1 commit.

ef66d4679da7f5046b9343bd477a2011f182ecb6  _hash_ collision attack


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3005/files/942e430c55473a6ec2f261d0ec78835fe2895200..ef66d4679da7f5046b9343bd477a2011f182ecb6

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

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

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

----==_mimepart_5d6f23ac894de_1993fb10f8cd96c1410b0--


From nobody Tue Sep  3 20:55: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 80C6D1200B1 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 20:55:04 -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 RoMPYxZ-1GY2 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 20:55:02 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A2F6112008A for <quic-issues@ietf.org>; Tue,  3 Sep 2019 20:55:02 -0700 (PDT)
Date: Tue, 03 Sep 2019 20:55:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567569301; bh=QxLwNSV6QtqSKVz293u1EHbLoZcivBWf9nLgDV5HJ0I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CnfLLWSxGr53F2HRDuBAeW0r2ZACw5nrN1VhnzH5wnRhqPctpgiLymemP+7oTklgq u7Hnve47tnzu4tz93Ns/V/lsAHms/Emy1iSn7r6mCT8NPzfw7hyZpe6+P/8X19dG3P 6BLaM+kabOomdNjwhmks8159oah7tNOGPUL9Urhs=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK26BYUQYM2EFXZL4A53PRUBLEVBNHHB2ISX3U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3004/review/283364602@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3004@github.com>
References: <quicwg/base-drafts/pull/3004@github.com>
Subject: Re: [quicwg/base-drafts] Security Considerations text for a memory limit (#3004)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6f3595c2b81_3093f82ed6cd96418632f"; 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/1eDy2ILulvdq-S_gN84Hv6RZJ2c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 03:55:05 -0000

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

kazuho commented on this pull request.



> @@ -1126,6 +1126,13 @@ HTTP_QPACK_DECODER_STREAM_ERROR (0x202):
 
 TBD.
 
+While the negotiated limit on the dynamic table size accounts for much of the
+memory that can be consumed by a QPACK implementation, data which cannot be
+immediately sent due to flow control is not affected by this limit.
+Implementations MUST limit the size of unsent data, especially on the decoder

I think that having a MUST for the decoder stream might make sense (as the peer controls what is to be sent on the decoder stream). OTOH I share the view that having MUST limit + MUST close if exceeded is a bit off for the encoder 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/3004#discussion_r320562887
----==_mimepart_5d6f3595c2b81_3093f82ed6cd96418632f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3004#discussion_r320562887">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1126,6 +1126,13 @@ HTTP_QPACK_DECODER_STREAM_ERROR (0x202):
 
 TBD.
 
+While the negotiated limit on the dynamic table size accounts for much of the
+memory that can be consumed by a QPACK implementation, data which cannot be
+immediately sent due to flow control is not affected by this limit.
+Implementations MUST limit the size of unsent data, especially on the decoder
</pre>
<p>I think that having a MUST for the decoder stream might make sense (as the peer controls what is to be sent on the decoder stream). OTOH I share the view that having MUST limit + MUST close if exceeded is a bit off for the encoder 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/3004?email_source=notifications&amp;email_token=AFTOJK3YK53PY4UNAIUAJSDQH4WRLA5CNFSM4ITKF4W2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDR4Z6Q#discussion_r320562887">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5VFVF7R2Z7J3ZDMETQH4WRLANCNFSM4ITKF4WQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5FZWK2TBORX7OB5J3QH4WRLA5CNFSM4ITKF4W2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDR4Z6Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3004?email_source=notifications\u0026email_token=AFTOJK3YK53PY4UNAIUAJSDQH4WRLA5CNFSM4ITKF4W2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDR4Z6Q#discussion_r320562887",
"url": "https://github.com/quicwg/base-drafts/pull/3004?email_source=notifications\u0026email_token=AFTOJK3YK53PY4UNAIUAJSDQH4WRLA5CNFSM4ITKF4W2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDR4Z6Q#discussion_r320562887",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6f3595c2b81_3093f82ed6cd96418632f--


From nobody Tue Sep  3 20: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 5DE4E12008A for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 20:58:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 53gdjzgbzCK3 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 20:58:43 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C71C0120072 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 20:58:43 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id B8E202C1566 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 20:58:42 -0700 (PDT)
Date: Tue, 03 Sep 2019 20:58:42 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4WLT2SIFVC65I5GAF3PRUPFEVBNHHB2ISX3U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3004/review/283365279@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3004@github.com>
References: <quicwg/base-drafts/pull/3004@github.com>
Subject: Re: [quicwg/base-drafts] Security Considerations text for a memory limit (#3004)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6f3672a9cb0_35f33fe873ecd95c1273d2"; 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/Y4AmfuOeLX3uXvxPVfCFVd6lwV4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 03:58:45 -0000

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

kazuho commented on this pull request.



> @@ -1126,6 +1126,13 @@ HTTP_QPACK_DECODER_STREAM_ERROR (0x202):
 
 TBD.
 
+While the negotiated limit on the dynamic table size accounts for much of the
+memory that can be consumed by a QPACK implementation, data which cannot be
+immediately sent due to flow control is not affected by this limit.
+Implementations MUST limit the size of unsent data, especially on the decoder
+stream where flexibility to choose what to send is limited.  If this limit is
+exceeded, the connection MUST be terminated.

I am not sure if "MUST terminate if the limit is exceeded" is a good advice, as there could be alternative strategies. For example, an endpoint can stop reading data from the streams, as well as giving the peer new stream ID credit while the amount of unsent data on the QPACK decoder stream is above some threshold.

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

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

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3004#discussion_r320563467">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1126,6 +1126,13 @@ HTTP_QPACK_DECODER_STREAM_ERROR (0x202):
 
 TBD.
 
+While the negotiated limit on the dynamic table size accounts for much of the
+memory that can be consumed by a QPACK implementation, data which cannot be
+immediately sent due to flow control is not affected by this limit.
+Implementations MUST limit the size of unsent data, especially on the decoder
+stream where flexibility to choose what to send is limited.  If this limit is
+exceeded, the connection MUST be terminated.
</pre>
<p>I am not sure if "MUST terminate if the limit is exceeded" is a good advice, as there could be alternative strategies. For example, an endpoint can stop reading data from the streams, as well as giving the peer new stream ID credit while the amount of unsent data on the QPACK decoder stream is above some threshold.</p>

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


From nobody Tue Sep  3 21:52: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 6F2F71200C3 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 21:52: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 LIGIQHnAJ144 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 21:52: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 A501C120090 for <quic-issues@ietf.org>; Tue,  3 Sep 2019 21:52:32 -0700 (PDT)
Date: Tue, 03 Sep 2019 21:52:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567572751; bh=+JYrQgcKjhh3NqkNeCbT0qJe2Uf7iiD9jDqxNw3oBlQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GqiZ60O9QQHmx9ltO3CPf9z+t6qgDQxh1jgTRHewUAOPU9uDYC09kHClR7YWlXRuU prXlpLjSljZbmpUR+ZxXZ+SEsz4nR1yLGwXiM1weZoTolzqTV//G2lP2QRgEqbue0S L1QhjkzmSx9LHhr/mpv3N66qxxx7vbBH4KXIdV5w=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3005/push/3994263300@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3005@github.com>
References: <quicwg/base-drafts/pull/3005@github.com>
Subject: Re: [quicwg/base-drafts] Add Security Considerations for SRT hash collision attack (#3005)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6f430fba7ca_3b233fc1d6ccd96845716b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/q2jBp68aFRk7LI9Uo9xnebDpM5Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 04:52:35 -0000

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

@kazuho pushed 1 commit.

c36c242c108a417f8190febc847c6e29531270a8  it's not constant time


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

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

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

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/c36c242c108a417f8190febc847c6e29531270a8">c36c242</a>  it&#39;s not constant time</li>
</ul>


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

----==_mimepart_5d6f430fba7ca_3b233fc1d6ccd96845716b--


From nobody Tue Sep  3 22:13: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 5C2CA120090 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 22:13: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 e53XXF3XT1Nt for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 22:13:21 -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 B45A312001E for <quic-issues@ietf.org>; Tue,  3 Sep 2019 22:13:21 -0700 (PDT)
Date: Tue, 03 Sep 2019 22:13:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567574001; bh=5BBHeRrt9+S2Vu3KhVjuCXro4vp5oq4DHNxUmC76Hws=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DtqWQoMtebXn7r2XNFzeOiNVOiYJWaaCGW6s2rYcemekzfK1FVq5R1XD1TPF4gfhp s08oj9JPjbQefYYQzYVdfn4ojv6QG+ECtCbfGn5e8VdKcK2/NjIHN3dcWm6iwqZ3Io yQlRa2um62lO3j/xjEGj6lWllDE4FLKOCz7/+xUA=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4MG6UC5EIZFNN2GP53PR5HBEVBNHHBZ4IYAM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2993/c527742872@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2993@github.com>
References: <quicwg/base-drafts/pull/2993@github.com>
Subject: Re: [quicwg/base-drafts] Perform stateless reset token comparisons in constant time (#2993)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6f47f1d20_5bcf3fd42d0cd96047782"; 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/l7Khuhmb9Zkqy_g7ndmuEUKtcTU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 05:13:24 -0000

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

> One thing that I'm trying to protect is the integrity of the specification and the analysis that (I hope) will come. If we allow weaseling out of this sort of requirement, then the analysis has to allow for that too.

@martinthomson I was wrong on this, and you're absolutely right. Implementation difficulties shouldn't make us lower our security guaranties, or the language we use to describe them.

@kazuho Thanks for the pointer to the hash flooding attack. By the way, here's the [video](https://media.ccc.de/v/29c3-5152-en-hashflooding_dos_reloaded_h264) corresponding to the slides you linked.

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

<blockquote>
<p>One thing that I'm trying to protect is the integrity of the specification and the analysis that (I hope) will come. If we allow weaseling out of this sort of requirement, then the analysis has to allow for that too.</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> I was wrong on this, and you're absolutely right. Implementation difficulties shouldn't make us lower our security guaranties, or the language we use to describe them.</p>
<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> Thanks for the pointer to the hash flooding attack. By the way, here's the <a href="https://media.ccc.de/v/29c3-5152-en-hashflooding_dos_reloaded_h264" rel="nofollow">video</a> corresponding to the slides you linked.</p>

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


From nobody Tue Sep  3 23: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 1B9D9120090 for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 23:05: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 XgxKRl8rrLHK for <quic-issues@ietfa.amsl.com>; Tue,  3 Sep 2019 23:05:29 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2872712006F for <quic-issues@ietf.org>; Tue,  3 Sep 2019 23:05:29 -0700 (PDT)
Date: Tue, 03 Sep 2019 23:05:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567577127; bh=lghXyfyHOIaqz/PlVgr+DpbRrxDpbtjlRBNnEYHWxIE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GN5DlcrX7FX9bqlbd3S89Hon5p1icxuS0u+nHWeqtQ99eT8WX+vZePuSn1GEChvLJ hwrTd62lxbzWGVHkOVed6ARITwUpxV/ffn+epYXnpr9MdluBr3v1QaNfvgHgGIIo3Q MHT5UsVaEX/c7OnyzoEzaZR8yVphyAQ3KynaUVSI=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZTPLE5ROXQYLZFKZN3PR4JPEVBNHHBZ4IYAM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2993/c527755292@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2993@github.com>
References: <quicwg/base-drafts/pull/2993@github.com>
Subject: Re: [quicwg/base-drafts] Perform stateless reset token comparisons in constant time (#2993)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6f54278c183_6cd73fb5826cd96090834"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/63SS4oIAlx8haExGIGhTO0Y1etI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 06:05:31 -0000

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

Rust has inbuilt defenses against hash flooding, and some languages have that built in.  Note that this is something that doesn't guarantee constant time over inputs, as that is generally not a design goal, though many schemes have that naturally.  Even then, the functions used might be trivially reversible.

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

<p>Rust has inbuilt defenses against hash flooding, and some languages have that built in.  Note that this is something that doesn't guarantee constant time over inputs, as that is generally not a design goal, though many schemes have that naturally.  Even then, the functions used might be trivially reversible.</p>

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


From nobody Wed Sep  4 01:40: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 E91E91200DB for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 01:40: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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hSxJPWM0VYdW for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 01:40: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 965471200D7 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 01:40:51 -0700 (PDT)
Date: Wed, 04 Sep 2019 01:40:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567586451; bh=TT7sBbktMMvgyrKZ3JAaU1A4RzMOcBXxKtx56rKPwN0=; h=Date:From:To:Subject:From; b=Rnkg6Wv2P/VedP/WrxPg3BuqqGybX3ROlHwJ8hzxcovkFI3976v9uZURX/6YoHeRW 7vK++CqQZ0kASbo0kUJLL6/DeK4cD5IyQR68bcAVAdwpBw69n65Sxt85JcWZk0I9km /g2HIFf9kyJSxUyxY7ESmNXdsolOjAMDA+tmMmE0=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-fix-loss-detection/d55a15-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/SHRdim2BmQFWFj_ht91BppGE3uk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 08:40:53 -0000

  Branch: refs/heads/ianswett-fix-loss-detection
  Home:   https://github.com/quicwg/base-drafts


From nobody Wed Sep  4 01:41: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 DFFF11200D7 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 01:40:53 -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 hePN6Oes3548 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 01:40:51 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6FDDF1200CE for <quic-issues@ietf.org>; Wed,  4 Sep 2019 01:40:51 -0700 (PDT)
Date: Wed, 04 Sep 2019 01:40:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567586450; bh=/iytsO0jpBuJyXGbe5UtW3e9DMuGTacCAYUhf6/Lv4w=; h=Date:From:To:Subject:From; b=y0Dt9W/awNakmVP6bJFOgTSj12dsOa7g5Q1XY/HRpOru8gr0a8fzQDn1202pwHoDi QHrojVQe1q7n3hKfccm55Qo/hy+xeaaFdWfzV5/Q/az9IrnjdxwPsT+poSOltXow8Y tvSUmEfo4tH3Ztm4U7jr+YUgEPso5jJlPPWgrIr0=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/1f913f-a51a41@github.com>
Subject: [quicwg/base-drafts] a51a41: Fix Recovery Pseudocode (#2907)
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dCC82FdPnM_frtt4m3PNeW0VXJs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 08:40:54 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: a51a41847044cfd65885ceac36721a4294da15f6
      https://github.com/quicwg/base-drafts/commit/a51a41847044cfd65885ceac36721a4294da15f6
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-04 (Wed, 04 Sep 2019)

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

  Log Message:
  -----------
  Fix Recovery Pseudocode (#2907)

* Update draft-ietf-quic-recovery.md

* Consistent ifs

* Martin Duke's suggestion

* Remove ||

* Use || and && consistently

* Update draft-ietf-quic-recovery.md

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

* Martin's suggestion

* Jana's suggestion

* nit

* 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>

* 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: Jana Iyengar <jri.ietf@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>

* Update draft-ietf-quic-recovery.md

* Add PeerAwaitingAddressValidation

* 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>

* Some of MT's suggestions

* Update draft-ietf-quic-recovery.md

* Update draft-ietf-quic-recovery.md



From nobody Wed Sep  4 01: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 EDA711200CE for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 01:41:02 -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 2EmvHg-V0PpQ for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 01:41: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 328B41200EC for <quic-issues@ietf.org>; Wed,  4 Sep 2019 01:41:01 -0700 (PDT)
Date: Wed, 04 Sep 2019 01:41:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567586460; bh=bP2glKO4MhP76JGZmF93Ga5F7HhHfKdClp2LZfCEyG0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eiqfMXCDcVGHz2vN8wpMjBTqfFmgH5T87rk9wPjU2N8tN19eIZVr4BsFYtUuu5NU6 UEJf1N/rKsWgg67WKxYDnTSQg+6SbH2Z42K51Q7/CJZK8Rgq7vqGHUu1pdF1hyYfmk ncxZRa06k/U28Q9HJgK4E+U9+ke2MPEQ1YF8CqLk=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK42VTFQEHYQABBA37F3PS4SZEVBNHHBX6ZH2U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2906/issue_event/2606175555@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_5d6f789c6cff0_3d263ff4caccd96414547c"; 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/wQryJovCCBDuJ2I6F4iqPlD0eA8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 08:41:03 -0000

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

Closed #2906 via #2907.

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


From nobody Wed Sep  4 01:41: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 A875C1200CE for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 01:41: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 5LrbiCyTLBFR for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 01:41: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 962811200FB for <quic-issues@ietf.org>; Wed,  4 Sep 2019 01:41:01 -0700 (PDT)
Date: Wed, 04 Sep 2019 01:41:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567586460; bh=qhKVf11+cZzkaDxcYdLrEBw3N38QBiK/Mt1pTn0N3C4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=I8gmlGVPeZrHfbBXcICP12affGkTjRM6eCaqOFPVdNXnflqg2ivmECSRTI2RnHxeW cAG16o2oEVt92igLL6oV7JqrQzXlocXY8UJ9RiVc5ufaKSQr3WDGptJi6BlqPDl1qm vZv5SCbxBs4HZMlR5l2mGeWZiM2g/eNuOffaB/3c=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4JKXRE5EILVX6D7353PS4SZEVBNHHBX66EHQ@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/issue_event/2606175541@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_5d6f789cc96ed_509e3fbdb5acd96c53914"; 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/O3AWdHOaZiaMbU551I86TQQe6k4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 08:41:05 -0000

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

Merged #2907 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/2907#event-2606175541
----==_mimepart_5d6f789cc96ed_509e3fbdb5acd96c53914
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="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> 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/2907?email_source=notifications&amp;email_token=AFTOJK5R455QP2JMOIGQXVDQH5YBZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTNLRKNI#event-2606175541">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYJAF2ZVNK77ATIZB3QH5YBZANCNFSM4IEVHR7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK634PMIBTF7BJQGCQDQH5YBZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTNLRKNI.gif" height="1" width="1" 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=AFTOJK5R455QP2JMOIGQXVDQH5YBZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTNLRKNI#event-2606175541",
"url": "https://github.com/quicwg/base-drafts/pull/2907?email_source=notifications\u0026email_token=AFTOJK5R455QP2JMOIGQXVDQH5YBZA5CNFSM4IEVHR7KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTNLRKNI#event-2606175541",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6f789cc96ed_509e3fbdb5acd96c53914--


From nobody Wed Sep  4 01: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 6806F1200E6 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 01:42: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 na8zw4ps1__m for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 01:42:11 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E9D551200C1 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 01:42:10 -0700 (PDT)
Date: Wed, 04 Sep 2019 01:42:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567586530; bh=VrmOKrgq8JB3kectgjZepD26gDZbuKnCk/hjXv9NH6Y=; h=Date:From:To:Subject:From; b=Nh7y9RtIQ1XeoytFuOAt3xIt09yZPi/qOUXli4fDciOAj/ZzZWbknCH7zU1llQFEP to5iW3+cGHCByZxaKNAU2HG7MDs5gHb/s4zWfqb3vtRg10UCytiRSsM1RRcldD8iYx xCXj5XW0I/Rp0ZRuXo1CkZj18Mavx2i+3Kqxx2p0=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/e7e66c-648f81@github.com>
Subject: [quicwg/base-drafts] 648f81: Script updating gh-pages from a51a4184. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/WQ_9VuEcML081h-RA4XTijoZhXI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 08:42:13 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 648f81a1bc66a366195d1bc976dc744c26471f0d
      https://github.com/quicwg/base-drafts/commit/648f81a1bc66a366195d1bc976dc744c26471f0d
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-04 (Wed, 04 Sep 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 a51a4184. [ci skip]



From nobody Wed Sep  4 01:44: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 9DFCA1200CE for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 01:44:13 -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 6pXc-8bMVNUk for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 01:44:12 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 791DF1200C1 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 01:44:12 -0700 (PDT)
Date: Wed, 04 Sep 2019 01:44:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567586651; bh=EX+dBPwKnK8zXpD+tVKR79BGk34CRXWAtDkqBwFJqgM=; h=Date:From:To:Subject:From; b=hEvzFPfgjGeCm7cDTMZR0+y33fohpng96QeGMx+hFFFSVN0bJB8Z+q/q3Wa8895w6 twfnMv5CvUgA3R222EkdWqpx+T7Sy/KpjI469laeXnYX+nPvHytCrzshF8KB+7GgqD P5jW1aRzcLy3gcxJpkef3YgpGWOriR4x/wwMWOMM=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/648f81-857a24@github.com>
Subject: [quicwg/base-drafts] 857a24: Script updating issues at 2019-09-04T08:44: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/w6ml83RM2PuZtKfO4tVL5PAlK2I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 08:44:14 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 857a242cca35ec9f9f1fe32da47342359963c4e1
      https://github.com/quicwg/base-drafts/commit/857a242cca35ec9f9f1fe32da47342359963c4e1
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-04 (Wed, 04 Sep 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-09-04T08:44:05Z. [ci skip]



From nobody Wed Sep  4 04:54: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 81E681200F6 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 04:54:30 -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 iQxC18AVSsYn for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 04:54:29 -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 CBDA61200D7 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 04:54:28 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 282218C0447 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 04:54:28 -0700 (PDT)
Date: Wed, 04 Sep 2019 04:54:28 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4CMP7IVY735I6EQMF3PTTIJEVBNHHB2JBBPE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3005/review/283560513@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3005@github.com>
References: <quicwg/base-drafts/pull/3005@github.com>
Subject: Re: [quicwg/base-drafts] Add Security Considerations for SRT hash collision attack (#3005)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6fa5f419d30_21a73fcf0a8cd96c109055"; 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/-BbMSKq4Ne8ATX7UXJJduBiHjtM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 11:54:31 -0000

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

ianswett approved this pull request.

Thanks for pointing this out.  A similar concern exists on the server side for connection ID lookup I believe?  Not as much the constant time aspect, but hash collisions.



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

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

<p>Thanks for pointing this out.  A similar concern exists on the server side for connection ID lookup I believe?  Not as much the constant time aspect, but hash collisions.</p>

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


From nobody Wed Sep  4 07:41: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 B981412004F for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 07:41: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 Q8Q7qlAbTGyv for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 07:41: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 86EEB12001A for <quic-issues@ietf.org>; Wed,  4 Sep 2019 07:41:38 -0700 (PDT)
Date: Wed, 04 Sep 2019 07:41:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567608097; bh=mTvAN7w0d+yVjV73PCjhMRYWkvXEfM6sa4jgm1TU348=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cwUimyfREbuAGcKC7GKmHUJ3JB9485210zYHWaShzylrwioturE4WxeUDM2tck9x9 t7qd9acDnJUqVJndvW1ZmsIND6/8nmeid+HXq0Lo5v7qHJ7rr/tKz8LAJdD2+hGypR xIVYO3lAmyyjywzxPV5ydfJc1TZGx0LsCqYyrlr8=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYVNPQFWMJI2CZCTUV3PUG3DEVBNHHB2JBBPE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3005/review/283653099@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3005@github.com>
References: <quicwg/base-drafts/pull/3005@github.com>
Subject: Re: [quicwg/base-drafts] Add Security Considerations for SRT hash collision attack (#3005)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6fcd219d5ca_74e53fe232ccd964148575"; 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/bhgkTgdXgvdwdV4cy6IIAW6V290>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 14:41:41 -0000

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

janaiyengar commented on this pull request.



> @@ -5730,6 +5730,17 @@ decisions are made independently of client-selected values; a Source Connection
 ID can be selected to route later packets to the same server.
 
 
+## Hash Collision Attack on Stateless Reset Tokens
+
+As the stateless reset tokens are controlled by the peers, QUIC endpoints SHOULD

```suggestion
Since stateless reset tokens are generated by peers, endpoints SHOULD
```

> @@ -5730,6 +5730,17 @@ decisions are made independently of client-selected values; a Source Connection
 ID can be selected to route later packets to the same server.
 
 
+## Hash Collision Attack on Stateless Reset Tokens
+
+As the stateless reset tokens are controlled by the peers, QUIC endpoints SHOULD
+be resistant to hash flooding DoS attacks when using a hash map for retaining

Is there an easy reference that can be cited for "hash flooding DoS attacks"?

> @@ -5730,6 +5730,17 @@ decisions are made independently of client-selected values; a Source Connection
 ID can be selected to route later packets to the same server.
 
 
+## Hash Collision Attack on Stateless Reset Tokens
+
+As the stateless reset tokens are controlled by the peers, QUIC endpoints SHOULD
+be resistant to hash flooding DoS attacks when using a hash map for retaining

```suggestion
be resistant to hash flooding DoS attacks when using a hash map for storing and comparing
```

> @@ -5730,6 +5730,17 @@ decisions are made independently of client-selected values; a Source Connection
 ID can be selected to route later packets to the same server.
 
 
+## Hash Collision Attack on Stateless Reset Tokens
+
+As the stateless reset tokens are controlled by the peers, QUIC endpoints SHOULD
+be resistant to hash flooding DoS attacks when using a hash map for retaining
+those tokens. One way of achieving such property is to retain and compare the

```suggestion
those tokens. One way of achieving this property is to store and compare
```

> @@ -5730,6 +5730,17 @@ decisions are made independently of client-selected values; a Source Connection
 ID can be selected to route later packets to the same server.
 
 
+## Hash Collision Attack on Stateless Reset Tokens
+
+As the stateless reset tokens are controlled by the peers, QUIC endpoints SHOULD
+be resistant to hash flooding DoS attacks when using a hash map for retaining
+those tokens. One way of achieving such property is to retain and compare the
+transformed values of the stateless tokens where the transformation is defined
+as a pseudo-random permutation (e.g., block cipher) or a keyed hash (e.g., HMAC
+{{?RFC2104}}) that is cryptographically secure, instead of using the raw token
+values as the hash keys.  This approach satisfies the secure comparison

Suggested rephrase: "... transformed values of the stateless tokens instead of the raw token values. A transformation such as a pseudo-random permutation (e.g. block cipher) or a cryptographically-secure keyed hash (e.g., HMAC {{?RFC2104}}) can be used to also ensure that comparing stateless tokens does not leak timing information, as specified in {{detect-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/pull/3005#pullrequestreview-283653099
----==_mimepart_5d6fcd219d5ca_74e53fe232ccd964148575
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/3005#discussi=
on_r320787726">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -5730,6 +5730,17 @@ decisions are made =
independently of client-selected values; a Source Connection=0D
 ID can be selected to route later packets to the same server.=0D
 =0D
 =0D
+## Hash Collision Attack on Stateless Reset Tokens=0D
+=0D
+As the stateless reset tokens are controlled by the peers, QUIC endpoint=
s SHOULD=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-As the stateless reset tokens are controlled =
by the peers, QUIC endpoints SHOULD=0D
+Since stateless reset tokens are generated by peers, endpoints SHOULD=0D=

</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3005#discussi=
on_r320788277">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -5730,6 +5730,17 @@ decisions are made =
independently of client-selected values; a Source Connection=0D
 ID can be selected to route later packets to the same server.=0D
 =0D
 =0D
+## Hash Collision Attack on Stateless Reset Tokens=0D
+=0D
+As the stateless reset tokens are controlled by the peers, QUIC endpoint=
s SHOULD=0D
+be resistant to hash flooding DoS attacks when using a hash map for reta=
ining=0D
</pre>=0D
<p>Is there an easy reference that can be cited for "hash flooding DoS at=
tacks"?</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3005#discussi=
on_r320788560">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -5730,6 +5730,17 @@ decisions are made =
independently of client-selected values; a Source Connection=0D
 ID can be selected to route later packets to the same server.=0D
 =0D
 =0D
+## Hash Collision Attack on Stateless Reset Tokens=0D
+=0D
+As the stateless reset tokens are controlled by the peers, QUIC endpoint=
s SHOULD=0D
+be resistant to hash flooding DoS attacks when using a hash map for reta=
ining=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-be resistant to hash flooding DoS attacks whe=
n using a hash map for retaining=0D
+be resistant to hash flooding DoS attacks when using a hash map for stor=
ing and comparing=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3005#discussi=
on_r320789315">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -5730,6 +5730,17 @@ decisions are made =
independently of client-selected values; a Source Connection=0D
 ID can be selected to route later packets to the same server.=0D
 =0D
 =0D
+## Hash Collision Attack on Stateless Reset Tokens=0D
+=0D
+As the stateless reset tokens are controlled by the peers, QUIC endpoint=
s SHOULD=0D
+be resistant to hash flooding DoS attacks when using a hash map for reta=
ining=0D
+those tokens. One way of achieving such property is to retain and compar=
e the=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-those tokens. One way of achieving such prope=
rty is to retain and compare the=0D
+those tokens. One way of achieving this property is to store and compare=
=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3005#discussi=
on_r320798850">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -5730,6 +5730,17 @@ decisions are made =
independently of client-selected values; a Source Connection=0D
 ID can be selected to route later packets to the same server.=0D
 =0D
 =0D
+## Hash Collision Attack on Stateless Reset Tokens=0D
+=0D
+As the stateless reset tokens are controlled by the peers, QUIC endpoint=
s SHOULD=0D
+be resistant to hash flooding DoS attacks when using a hash map for reta=
ining=0D
+those tokens. One way of achieving such property is to retain and compar=
e the=0D
+transformed values of the stateless tokens where the transformation is d=
efined=0D
+as a pseudo-random permutation (e.g., block cipher) or a keyed hash (e.g=
., HMAC=0D
+{{?RFC2104}}) that is cryptographically secure, instead of using the raw=
 token=0D
+values as the hash keys.  This approach satisfies the secure comparison=0D=

</pre>=0D
<p>Suggested rephrase: "... transformed values of the stateless tokens in=
stead of the raw token values. A transformation such as a pseudo-random p=
ermutation (e.g. block cipher) or a cryptographically-secure keyed hash (=
e.g., HMAC {{?RFC2104}}) can be used to also ensure that comparing statel=
ess tokens does not leak timing information, as specified in {{detect-sta=
teless-reset}}."</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/3005?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK2VY3T3BWTQJ2RV35DQH7CKDA5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDUDH2Y#pullrequestreview-283653099=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK5QEDGCYXXJBAPK6NDQH7CKDANCNFSM4ITMT6LQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK7SGWQ2=
EK4HNIAC5DLQH7CKDA5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCDUDH2Y.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/3005?email_source=3D=
notifications\u0026email_token=3DAFTOJK2VY3T3BWTQJ2RV35DQH7CKDA5CNFSM4ITM=
T6L2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
DUDH2Y#pullrequestreview-283653099",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3005?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK2VY3T3BWTQJ2RV35DQH7CKDA5CNFSM4ITMT6=
L2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDU=
DH2Y#pullrequestreview-283653099",=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_5d6fcd219d5ca_74e53fe232ccd964148575--


From nobody Wed Sep  4 07: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 32DE812004F for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 07:42: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_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 d9RM64_ltLqJ for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 07:42:00 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ACEF9120019 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 07:42:00 -0700 (PDT)
Date: Wed, 04 Sep 2019 07:41:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567608119; bh=J12BAd9ZaHQj7hk3KNjUePiMd9EZ95IvZhphG7525LQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jHGdMPkcSYVxzGn5pLjESK/uGprOzPcgBzZLchMAIyuIUkZdzqMus3ZJqBg2yM2T/ rUJyZ3zkuuQG38i5R3wCvdHiQ9zi58WJXV6g30LOl5WYPCEi1AhARMbNHk/6mLI4n0 TAnl24nP8Tt6ttaQc9mUodr4yw5iDNXjBySR1Yyc=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4N7X4RARUIMW7ZIJ53PTY2PEVBNHHB2JBBPE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3005/review/283668224@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3005@github.com>
References: <quicwg/base-drafts/pull/3005@github.com>
Subject: Re: [quicwg/base-drafts] Add Security Considerations for SRT hash collision attack (#3005)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6fcd37d23e1_6f673fcf43acd968172974"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OiOWAvd_Jv4IrCrNewWRRYodgH8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 14:42:02 -0000

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

martinthomson commented on this pull request.=0D
=0D
I'm not entirely sure that this is something we need to highlight.  This =
is a well-known DoS risk with hash tables.  Documenting every way in whic=
h sub-optimal use of common data structures and algorithms might lead to =
exposure would be an endless task.=0D
=0D
What we might want to emphasize is the how the requirement not to expose =
bits of the stateless reset token is difficult to achieve in certain cont=
exts and how that limitation might be overcome.=0D
=0D
As it is, this reads like general advice about hash table stuffing attack=
s.  But that masks the core issue about leakage.  The point to emphasize =
is that there is a transform in use that would cause leakage of the used =
value not to endanger the underlying value that is being tested.  That yo=
u need to use a PRF (note: PRP =E2=8A=86 PRF, so you don't need to mentio=
n that) is the key point.  And you only need that because you might use t=
he value in a way that could leak.  If you don't (and there are designs t=
hat might allow that), then this complication isn't needed.=0D
=0D
Of course, a nice consequence of keying off a PRF-scrubbed value is that =
you don't have to worry about hash stuffing.  But that's a secondary bene=
fit.=0D
=0D
=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/pull/3005#pullrequestreview-2836682=
24=

----==_mimepart_5d6fcd37d23e1_6f673fcf43acd968172974
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'm not entirely sure that this is something we need to highlight.  Th=
is is a well-known DoS risk with hash tables.  Documenting every way in w=
hich sub-optimal use of common data structures and algorithms might lead =
to exposure would be an endless task.</p>=0D
<p>What we might want to emphasize is the how the requirement not to expo=
se bits of the stateless reset token is difficult to achieve in certain c=
ontexts and how that limitation might be overcome.</p>=0D
<p>As it is, this reads like general advice about hash table stuffing att=
acks.  But that masks the core issue about leakage.  The point to emphasi=
ze is that there is a transform in use that would cause leakage of the us=
ed value not to endanger the underlying value that is being tested.  That=
 you need to use a PRF (note: PRP =E2=8A=86 PRF, so you don't need to men=
tion that) is the key point.  And you only need that because you might us=
e the value in a way that could leak.  If you don't (and there are design=
s that might allow that), then this complication isn't needed.</p>=0D
<p>Of course, a nice consequence of keying off a PRF-scrubbed value is th=
at you don't have to worry about hash stuffing.  But that's a secondary b=
enefit.</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/3005?email_source=3Dnotifications&amp;email_token=3DA=
FTOJKY56DGY6MMEJ5WBRNTQH7CLPA5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDUG6AA#pullrequestreview-283668224=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK22KS2AN37P6SLAFBTQH7CLPANCNFSM4ITMT6LQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK3LYBHT=
55VO6M7ME5DQH7CLPA5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCDUG6AA.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/3005?email_source=3D=
notifications\u0026email_token=3DAFTOJKY56DGY6MMEJ5WBRNTQH7CLPA5CNFSM4ITM=
T6L2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
DUG6AA#pullrequestreview-283668224",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3005?email_source=3Dno=
tifications\u0026email_token=3DAFTOJKY56DGY6MMEJ5WBRNTQH7CLPA5CNFSM4ITMT6=
L2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDU=
G6AA#pullrequestreview-283668224",=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_5d6fcd37d23e1_6f673fcf43acd968172974--


From nobody Wed Sep  4 07:51: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 DBE7A12082D for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 07:50: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 qrO0epUcNSe3 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 07:50: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 CAA57120288 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 07:50:36 -0700 (PDT)
Date: Wed, 04 Sep 2019 07:50:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567608635; bh=PBZ8YVMyfNgWpTBodWGpMDEj6/PRgFHmZ0JYPqPiLsM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=poK+lPhp0/4PVtO7OZ332BlXdTogrT37vQuVIy2gXRy6f4PeRzLQ9U+RXN/63YheY 126qFMoAhvioHu1mLmnfzofSCLXhU4LpP2Ft6DUVtLcDWWqOaLLkxdDA3yMbbqQS4N WM5YBJX5w1PGosl2x/mHiVPnEfbnMW4hKijPQcBQ=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7PRIT3XF3HAZDPHDV3PUH4XEVBNHHB2JBBPE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3005/c527936410@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3005@github.com>
References: <quicwg/base-drafts/pull/3005@github.com>
Subject: Re: [quicwg/base-drafts] Add Security Considerations for SRT hash collision attack (#3005)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6fcf3bae7d0_db53ff6e50cd96c1804b"; 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/TFW6Mgq1u4JUXUE42JlKpxkftrU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 14:50:48 -0000

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

I agree, it a hash table attack is a valid concern, but it also, to a lesser degree, applies to attacks in CIDs and so forth.

As far as I am aware, the Linux kernel chose RB-trees over hash tables in their network stack. But that is a slow solution.

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

<p>I agree, it a hash table attack is a valid concern, but it also, to a lesser degree, applies to attacks in CIDs and so forth.</p>
<p>As far as I am aware, the Linux kernel chose RB-trees over hash tables in their network stack. But that is a slow solution.</p>

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


From nobody Wed Sep  4 10:42: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 94520120A30 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 10:42:27 -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 ATdSApKKRJZ4 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 10:42: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 DCA06120809 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 10:42:25 -0700 (PDT)
Date: Wed, 04 Sep 2019 10:42:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567618945; bh=HiqUToJSHxNYU7UpTs21zJehFFeMdYFVQ4KgtHtQij4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=S0cydRvzoMhWYzp/WQJmZZ9ekqaJouDGpo8mogO2sHZw/6Ioam7lmfaLp7UkXqJmo J+UzHRc0+bAUekuDk0uW5ZH4iVcRXHyQF+g3/PMr8LeWPl+hdJ4v//E9fnzlMf+/Jx ZmDAuRGwC7LnBz/G+sNYBDRyIccqadlS1cLcpENk=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7TT7RM3AYBZ34BORF3PU4BBEVBNHHB2IMF5Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3003/review/283783209@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3003@github.com>
References: <quicwg/base-drafts/pull/3003@github.com>
Subject: =?UTF-8?Q?Re:_[quicwg/base-drafts]_rename_HTTP=5FUNEXPECTED=5FFRAM?= =?UTF-8?Q?E_to_HTTP=5FFRAME=5FUNEXPECTED_and_fold_HTTP=5FW=E2=80=A6?= =?UTF-8?Q?_=28#3003=29?=
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6ff780f2c2f_30543f8462ccd960179777"; 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/BsOlH2IcblPLBIzMhMiL4YPhfDo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 17:42:28 -0000

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

MikeBishop approved this pull request.

Yes, I like this better than #2996.

> @@ -1414,8 +1414,8 @@ HTTP_STREAM_CREATION_ERROR (0x103):
 HTTP_CLOSED_CRITICAL_STREAM (0x104):
 : A stream required by the connection was closed or reset.
 
-HTTP_UNEXPECTED_FRAME (0x105):
-: A frame was received which was not permitted in the current state.
+HTTP_FRAME_UNEXPECTED (0x105):
+: A frame was received which was not permitted in the current state or stream.

```suggestion
: A frame was received which was not permitted in the current state or on the current stream.
```
We've usually used "on" rather than "in" for a stream. (Though this reminds me of a great story about the choice of prepositions my former manager told once....)

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

<p><b>@MikeBishop</b> approved this pull request.</p>=0D
=0D
<p>Yes, I like this better than <a class=3D"issue-link js-issue-link" dat=
a-error-text=3D"Failed to load issue title" data-id=3D"486306669" data-pe=
rmission-text=3D"Issue title is private" data-url=3D"https://github.com/q=
uicwg/base-drafts/issues/2996" data-hovercard-type=3D"pull_request" data-=
hovercard-url=3D"/quicwg/base-drafts/pull/2996/hovercard" href=3D"https:/=
/github.com/quicwg/base-drafts/pull/2996">#2996</a>.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3003#discussi=
on_r320888040">draft-ietf-quic-http.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1414,8 +1414,8 @@ HTTP_STREAM_CREATION=
_ERROR (0x103):=0D
 HTTP_CLOSED_CRITICAL_STREAM (0x104):=0D
 : A stream required by the connection was closed or reset.=0D
 =0D
-HTTP_UNEXPECTED_FRAME (0x105):=0D
-: A frame was received which was not permitted in the current state.=0D
+HTTP_FRAME_UNEXPECTED (0x105):=0D
+: A frame was received which was not permitted in the current state or s=
tream.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-: A frame was received which was not permitte=
d in the current state or stream.=0D
+: A frame was received which was not permitted in the current state or o=
n the current stream.=0D
</pre>=0D
=0D
<p>We've usually used "on" rather than "in" for a stream. (Though this re=
minds me of a great story about the choice of prepositions my former mana=
ger told once....)</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/3003?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK6XTC4ATFKJVUELOVDQH7XQBA5CNFSM4ITJB4MKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDVDAKI#pullrequestreview-283783209=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJKY3AAJ7N3E5P6HLX6DQH7XQBANCNFSM4ITJB4MA">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK6X7M7D=
KZQITAMULALQH7XQBA5CNFSM4ITJB4MKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCDVDAKI.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/3003?email_source=3D=
notifications\u0026email_token=3DAFTOJK6XTC4ATFKJVUELOVDQH7XQBA5CNFSM4ITJ=
B4MKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
DVDAKI#pullrequestreview-283783209",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3003?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK6XTC4ATFKJVUELOVDQH7XQBA5CNFSM4ITJB4=
MKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDV=
DAKI#pullrequestreview-283783209",=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_5d6ff780f2c2f_30543f8462ccd960179777--


From nobody Wed Sep  4 10:44: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 78A26120119 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 10:44: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 RmqBEa3SUd4j for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 10:44: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 115131200F3 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 10:44:46 -0700 (PDT)
Date: Wed, 04 Sep 2019 10:44:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567619085; bh=q+D1MwtdG3SiNQypwmgLeJHhSRH7tju/tqDHk1xg04w=; h=Date:From:To:Subject:From; b=1i40tkokLwTOQ5bOAmu+wDuZIS4xX/VBdbEROU+Roy1u9LyXqMdMNdwQSKc0gHPCn J7+FxFOvvxYZBswnoh2dCS6y3b7EWoaZGPJd0aHGjY4Z6dDyVH7kYDpvJ4D6Tvx7I2 bDFJwl5FGT8q7uzj9g6pOnRUnO+80HupY15jSAEs=
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/http/unknown_error_codes/a0d619-bca2f5@github.com>
Subject: [quicwg/base-drafts] bca2f5: Ian's suggested wording
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3Ggr0ux7aObJRLnNFMaE472D0NE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 17:44:48 -0000

  Branch: refs/heads/http/unknown_error_codes
  Home:   https://github.com/quicwg/base-drafts
  Commit: bca2f5d6497503495fec0bef3b007ccb49c1dae4
      https://github.com/quicwg/base-drafts/commit/bca2f5d6497503495fec0bef3b007ccb49c1dae4
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-04 (Wed, 04 Sep 2019)

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

  Log Message:
  -----------
  Ian's suggested wording



From nobody Wed Sep  4 10:44: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 585B51200F3 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 10:44: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 rQ2CGYFiOMFk for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 10:44: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 D1A7B12011A for <quic-issues@ietf.org>; Wed,  4 Sep 2019 10:44:55 -0700 (PDT)
Date: Wed, 04 Sep 2019 10:44:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567619094; bh=F6GOtNwJWXXrW61IKtWgxjCR36b67mf7Nz0YXXvlRm8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WWVJBwz5bsJnyzDIqxWgIRaTVnyyryb7BYm0wP7JoRYnsAUAxxoiAwwe8pbwn48/I eTCsxuPPsuxVW7ym1zbPh9eGRbq3YNu5yLPXSyQ6lVFiCcvcYp1GwwCHZ5sMx8+EQs ROIrh3ZOz6/0sD3kScCQxiFP7YV3dIyTWEhA2Qmc=
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/2998/push/3997138949@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2998@github.com>
References: <quicwg/base-drafts/pull/2998@github.com>
Subject: Re: [quicwg/base-drafts] Error codes can't cause errors (#2998)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6ff816c5c61_b063fa1586cd96c1084bf"; 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/-TlPR9nwp-zV1UhhdASsNpW-DKM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 17:44:57 -0000

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

@MikeBishop pushed 1 commit.

bca2f5d6497503495fec0bef3b007ccb49c1dae4  Ian's suggested wording


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

----==_mimepart_5d6ff816c5c61_b063fa1586cd96c1084bf
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/bca2f5d6497503495fec0bef3b007ccb49c1dae4">bca2f5d</a>  Ian&#39;s suggested wording</li>
</ul>


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

----==_mimepart_5d6ff816c5c61_b063fa1586cd96c1084bf--


From nobody Wed Sep  4 10:46: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 971C6120ACA for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 10:46: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 U3KlUh7d3DAN for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 10:46:15 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2281F120AC1 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 10:46:15 -0700 (PDT)
Date: Wed, 04 Sep 2019 10:46:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567619174; bh=MY73z3FlUmYBKedNaDPYzJ/d8XjTYSY2zAEwzOQTa5c=; h=Date:From:To:Subject:From; b=pkXx+xH1f6DWVqA37zxx46mWB2qn8DC16MkdHO91Dpu3dba4I5+Vrd6s7Wp0N895N +8wOvRzbt5VQWLYo2mtz2SFMxa2za/RnPg7HmyzXLewmqYlzEErFVeYKfO/JSrZ6Df fcSO9uRwm+gGB6PFTfAgJDP1pn+06B8h2lhiJHFQ=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/857a24-2decbf@github.com>
Subject: [quicwg/base-drafts] 2decbf: Script updating gh-pages from bca2f5d6. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/x9DH1b_ZMBrfIY4jdUZigqVp2YA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 17:46:17 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2decbf6d18aa869d94cff20f17b84e054c6a2fe8
      https://github.com/quicwg/base-drafts/commit/2decbf6d18aa869d94cff20f17b84e054c6a2fe8
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-04 (Wed, 04 Sep 2019)

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

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



From nobody Wed Sep  4 10:48: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 2C3F1120AEE for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 10:48: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 Om2yZ7dAzkWS for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 10:48:23 -0700 (PDT)
Received: from out-14.smtp.github.com (out-14.smtp.github.com [192.30.254.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 35F7C120AD4 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 10:48:23 -0700 (PDT)
Date: Wed, 04 Sep 2019 10:48:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567619302; bh=uG0mKmggo1OTsRRYyGcQ9ZgC7OL3/VG7WcdGe34Fa44=; h=Date:From:To:Subject:From; b=AppauP7vxhb7yJKpge5fg9vofwAYYS4HM4hcRgCZmQJf08nnTp/EEfLAbT1K/LQqU Fn4KyhlM8UiHt4qh94YloNtJBQf2DqpK4GhcBmvagXsm3wJkEAakcgPly1PAK6PdbE Yp36o6iCE6BR6fTlQSooEHTi+xuzNoTgtlZI0smc=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/2decbf-163226@github.com>
Subject: [quicwg/base-drafts] 163226: Script updating issues at 2019-09-04T17:48:15Z. [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/TKFtDthg1kEqyUBoLLyoWpn1Ut0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 17:48:24 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 16322620d9fdb88cb1e6ed8c1543a026e26f97a4
      https://github.com/quicwg/base-drafts/commit/16322620d9fdb88cb1e6ed8c1543a026e26f97a4
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-04 (Wed, 04 Sep 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-09-04T17:48:15Z. [ci skip]



From nobody Wed Sep  4 10:58: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 5CAFD120B72 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 10:58: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 FKbl915tEcvv for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 10:57:59 -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 5C371120B61 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 10:57:59 -0700 (PDT)
Date: Wed, 04 Sep 2019 10:57:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567619878; bh=dX+n1HnAGqcxk3IHbec/C0iRBmp+GdsX8YK7nrBQKok=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Jp7e1xZs9Mnki6YC5twHdmP0u5lVj6OmU9fvMUDTYTi5FIhXXY+ZfBYXL+Y43t8zu usd2k4byUtcRuaFmDk4IpuI5iJaWt+VwecgogjoCV9JghXKpp9oVBo1PVF7uCSCr8h LqA7C0rqji3+BPgpedYKRrOGEz4BQ6QGV5Yg/QOI=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZUTMEKEWMUVROTSK53PU53NEVBNHHBYGSUE4@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/283792582@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_5d6ffb2648d68_596e3fbefe2cd95c2984ce"; 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/IvOioYsRYSHaBNJvKKIuHfFWmaU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 17:58:10 -0000

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

MikeBishop 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}

It seems worth excerpting RFC 3552:
> While it is not a requirement that any given protocol or system be immune to all forms of attack, it is still necessary for authors to consider as many forms as possible.  Part of the purpose of the Security Considerations section is to explain what attacks are out of scope and what countermeasures can be applied to defend against them.
>
> There should be a clear description of the kinds of threats on the described protocol or technology.  This should be approached as an effort to perform "due diligence" in describing all known or foreseeable risks and threats to potential implementers and users.
>
> Authors MUST describe
>
>    1.   which attacks are out of scope (and why!)
>    2.   which attacks are in-scope
>          1.  and the protocol is susceptible to
>          2.  and the protocol protects against
>
> At least the following forms of attack MUST be considered:  eavesdropping, replay, message insertion, deletion, modification, and man-in-the-middle.  Potential denial of service attacks MUST be identified as well.  If the protocol incorporates cryptographic protection mechanisms, it should be clearly indicated which portions of the data are protected and what the protections are (i.e., integrity only, confidentiality, and/or endpoint authentication, etc.).  Some indication should also be given to what sorts of attacks the cryptographic protection is susceptible.  Data which should be held secret (keying material, random seeds, etc.) should be clearly labeled.

In other words, this reads a lot like a Security Considerations 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_r320895221
----==_mimepart_5d6ffb2648d68_596e3fbefe2cd95c2984ce
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2925#discussion_r320895221">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}
</pre>
<p>It seems worth excerpting RFC 3552:</p>
<blockquote>
<p>While it is not a requirement that any given protocol or system be immune to all forms of attack, it is still necessary for authors to consider as many forms as possible.  Part of the purpose of the Security Considerations section is to explain what attacks are out of scope and what countermeasures can be applied to defend against them.</p>
<p>There should be a clear description of the kinds of threats on the described protocol or technology.  This should be approached as an effort to perform "due diligence" in describing all known or foreseeable risks and threats to potential implementers and users.</p>
<p>Authors MUST describe</p>
<ol>
<li>which attacks are out of scope (and why!)</li>
<li>which attacks are in-scope
<ol>
<li>and the protocol is susceptible to</li>
<li>and the protocol protects against</li>
</ol>
</li>
</ol>
<p>At least the following forms of attack MUST be considered:  eavesdropping, replay, message insertion, deletion, modification, and man-in-the-middle.  Potential denial of service attacks MUST be identified as well.  If the protocol incorporates cryptographic protection mechanisms, it should be clearly indicated which portions of the data are protected and what the protections are (i.e., integrity only, confidentiality, and/or endpoint authentication, etc.).  Some indication should also be given to what sorts of attacks the cryptographic protection is susceptible.  Data which should be held secret (keying material, random seeds, etc.) should be clearly labeled.</p>
</blockquote>
<p>In other words, this reads a lot like a Security Considerations 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=AFTOJK6T4XRSMQTBBLOQ2NLQH7ZKNA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDVFJRQ#discussion_r320895221">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3DNM2C6T362HCHIS3QH7ZKNANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4BII32TWYNUE2GX2LQH7ZKNA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDVFJRQ.gif" height="1" width="1" 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=AFTOJK6T4XRSMQTBBLOQ2NLQH7ZKNA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDVFJRQ#discussion_r320895221",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK6T4XRSMQTBBLOQ2NLQH7ZKNA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCDVFJRQ#discussion_r320895221",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d6ffb2648d68_596e3fbefe2cd95c2984ce--


From nobody Wed Sep  4 11:03: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 8161A120B6A for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 11:02:58 -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 Fm7jlKRvD6sT for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 11:02:54 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6039A120B8B for <quic-issues@ietf.org>; Wed,  4 Sep 2019 11:02:54 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 6669A520854 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 11:02:53 -0700 (PDT)
Date: Wed, 04 Sep 2019 11:02:53 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack/decoder_bounds/f74c7f-76b6f2@github.com>
Subject: [quicwg/base-drafts] 76b6f2: Less normative
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/69Y8rxKKXwDem7itGLYctdr6p4w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 18:03:01 -0000

  Branch: refs/heads/qpack/decoder_bounds
  Home:   https://github.com/quicwg/base-drafts
  Commit: 76b6f221757b6adc1966f662454e4f2ed3f856ea
      https://github.com/quicwg/base-drafts/commit/76b6f221757b6adc1966f662454e4f2ed3f856ea
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-04 (Wed, 04 Sep 2019)

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

  Log Message:
  -----------
  Less normative



From nobody Wed Sep  4 11:03: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 E8804120B4C for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 11:03: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 M1jIdxSMKOl5 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 11:03: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 6E3F3120B55 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 11:03:04 -0700 (PDT)
Date: Wed, 04 Sep 2019 11:03:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567620183; bh=i8BXnt8Qpo1r9kQpxKFA9Sf+T1o/tykREK2sfHbWI88=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pa0s6GvO6+Exi3S3sTqhm3NjDHPUNAMPt9Z+WVM5gM1Gjos2ZOfhE4y/9VEmv0K5d mU3Tt8uPYaSFDMjRzlWipGU7VF7BS2+vT1RGggICCyYnrlshgtS1I5/4Rx3UlfzerT OLDCIsbdY4trVWLLtFJOxFTgZmqfXA4BhOGSMpuY=
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/3004/push/3997205638@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3004@github.com>
References: <quicwg/base-drafts/pull/3004@github.com>
Subject: Re: [quicwg/base-drafts] Security Considerations text for a memory limit (#3004)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d6ffc5772786_31523fada0acd9643350ac"; 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/LgUzK4soAyvCmFSoKRBpTauKW6w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 18:03:06 -0000

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

@MikeBishop pushed 1 commit.

76b6f221757b6adc1966f662454e4f2ed3f856ea  Less normative


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3004/files/f74c7faa455fc367f33988894d15f6b9ebe831ef..76b6f221757b6adc1966f662454e4f2ed3f856ea

----==_mimepart_5d6ffc5772786_31523fada0acd9643350ac
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/76b6f221757b6adc1966f662454e4f2ed3f856ea">76b6f22</a>  Less normative</li>
</ul>


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

----==_mimepart_5d6ffc5772786_31523fada0acd9643350ac--


From nobody Wed Sep  4 11:04: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 39657120B4E for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 11:04: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 MA9i2ILLB1Mb for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 11:04: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 EA159120271 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 11:04:21 -0700 (PDT)
Date: Wed, 04 Sep 2019 11:04:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567620261; bh=yey2hMCZ/hCVzxCCXJ7egEFSmhTp2s/zOEiQNGhsHxo=; h=Date:From:To:Subject:From; b=Dm9EIQe72WQj72fpCQqUrkXeNHNnv0V2vr932oMHfM5z7I4p4J6b1MF13d/YehrBN ALKtR0b2sxTMh92MIbWBg7wnQz6GOLIVhmhTHT80zqLb3N+FmaoNTHPtrIZyM9U+hq cyw7nvToC5g1RCzSYDHp2RT+TVyu/CR2cpqtNcM4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/163226-1bd1c8@github.com>
Subject: [quicwg/base-drafts] 1bd1c8: Script updating gh-pages from 76b6f221. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/sl-x9ZU1NBJ2gf_ASP1fmXTeb1A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 18:04:23 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1bd1c8f7546709a4e1862ac3ce0eda73962e9b67
      https://github.com/quicwg/base-drafts/commit/1bd1c8f7546709a4e1862ac3ce0eda73962e9b67
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-04 (Wed, 04 Sep 2019)

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

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



From nobody Wed Sep  4 11:37: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 041D8120C0E for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 11:37: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 uIkiQeWClICM for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 11:37: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 D95AD120BF5 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 11:37:14 -0700 (PDT)
Date: Wed, 04 Sep 2019 11:37:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567622234; bh=TFVR0Y1LxNBjjDQm7vffxirQ2i48BpGf51fle46geuo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KucxZafR+Nhb4fwDTy9NKvohz2M9e/yQtriclw3Wu2aB7ySuuLohEXDHuVuch4VQL i5KzNCuTf5b+M4LX3FyEp5Bzo9qL/zBuJTykmhsFE7Y+pcffDjkmB4jqqmDVzzappR rOMUpoZdKGvhUdmGVQGCt30+wCS+gJ5nrFpytqMc=
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/3003/push/3997328456@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3003@github.com>
References: <quicwg/base-drafts/pull/3003@github.com>
Subject: =?UTF-8?Q?Re:_[quicwg/base-drafts]_rename_HTTP=5FUNEXPECTED=5FFRAM?= =?UTF-8?Q?E_to_HTTP=5FFRAME=5FUNEXPECTED_and_fold_HTTP=5FW=E2=80=A6?= =?UTF-8?Q?_=28#3003=29?=
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d70045a22586_3ee23fae026cd9605015e"; 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/6yhDjQOu28_bIAGdblk7LorFVlk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 18:37:31 -0000

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

@LPardue pushed 1 commit.

cea422edb3bd8e51b2f72b2ddf7aba9bf1c15984  Update draft-ietf-quic-http.md


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

----==_mimepart_5d70045a22586_3ee23fae026cd9605015e
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/cea422edb3bd8e51b2f72b2ddf7aba9bf1c15984">cea422e</a>  Update draft-ietf-quic-http.md</li>
</ul>


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

----==_mimepart_5d70045a22586_3ee23fae026cd9605015e--


From nobody Wed Sep  4 16:21: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 03E6A120143 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 16:21: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 yx0i81YsfoLw for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 16:21:27 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E9B8F12007A for <quic-issues@ietf.org>; Wed,  4 Sep 2019 16:21:26 -0700 (PDT)
Date: Wed, 04 Sep 2019 16:21:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567639286; bh=fRL+bvJrCQpEiG7PlvFOCNizj6v5zd4CarG1a2knLV0=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=mRsH4X+GzzCYvJDvTyXQCxejnMEll3Q3OoOTfoRJCsNsctp9xNy0r9wDgFmhNJTNM R5g3zCjSMY1tUqVhBCmNcnmXQev3eWIwYRGnGZF5b75Ht7Zq4bycsZXOt9qp/ZEIUq JQ9AwX8fMau9gI7eoXGdEbQrHd0eiZjLxOy9zUxc=
From: Constantine Shablya <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYF4G46QVMV7JOR26V3PV4XNEVBNHHB2LDIAM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3006@github.com>
Subject: [quicwg/base-drafts] Unclear how short header packets should be matched to connections (#3006)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7046f61035a_3ab63f8af64cd9642011f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: nanokatze
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mlPvpAbnvMRGdPmIDspeU8EDyzo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 23:21:29 -0000

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

Section 5.2 of current draft (22) doesn't explain how one should match short headers to connections.  Does one first check if one has a connection associated with the address/port tuple and then use 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/3006
----==_mimepart_5d7046f61035a_3ab63f8af64cd9642011f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Section 5.2 of current draft (22) doesn't explain how one should match short headers to connections.  Does one first check if one has a connection associated with the address/port tuple and then use 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/3006?email_source=notifications&amp;email_token=AFTOJKYRVFFVM556FHVXVMLQIA7HNA5CNFSM4ITXPGDKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HJMNABQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4EMY6TF64NSZWW4EDQIA7HNANCNFSM4ITXPGDA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYHQHLQG3ZJD2PKU6LQIA7HNA5CNFSM4ITXPGDKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HJMNABQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3006?email_source=notifications\u0026email_token=AFTOJKYRVFFVM556FHVXVMLQIA7HNA5CNFSM4ITXPGDKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HJMNABQ",
"url": "https://github.com/quicwg/base-drafts/issues/3006?email_source=notifications\u0026email_token=AFTOJKYRVFFVM556FHVXVMLQIA7HNA5CNFSM4ITXPGDKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HJMNABQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7046f61035a_3ab63f8af64cd9642011f--


From nobody Wed Sep  4 16:31: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 69F0A1200B6 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 16:31: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 FrWzinJ7ZLXG for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 16:31: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 9F76F12007A for <quic-issues@ietf.org>; Wed,  4 Sep 2019 16:31:11 -0700 (PDT)
Date: Wed, 04 Sep 2019 16:31:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567639870; bh=pklkqVUneCMGrHEX8flIoVikENQ10X5I1WTcTEsg65o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=K1rmmmeLKMjFWBbjZxezNfuGPIs1V0PtOCthrO8aftvFbyRCbkS0XCTA6GNdmSORJ mFRKKUBY0+Nzo4viW91Fvr24jphqNAWxdxzmGySGH3lkQ4NNY0iyDO8tSwOZB8CV+L ON4LGqzDGdHGqwGoIMqvJli+M2iwCdLobbeBt1gI=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4XAXSKLAT7YTXH5UN3PWE45EVBNHHB2LDIAM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3006/528131415@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3006@github.com>
References: <quicwg/base-drafts/issues/3006@github.com>
Subject: Re: [quicwg/base-drafts] Unclear how short header packets should be matched to connections (#3006)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d70493e77d90_7fb23fe2210cd9681220c2"; 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/DJSmkx7D1migIqnVmi0RfLyL24A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 23:31:14 -0000

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

You cannot assume that the src port is always stable because of NAT rebinding. Perhaps not even the IP address. So you should look up the CID first. On the other hand, some CID's are zero length. In this case you can assume the address is stable, so you would use the tuple for connection lookup.

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

<p>You cannot assume that the src port is always stable because of NAT rebinding. Perhaps not even the IP address. So you should look up the CID first. On the other hand, some CID's are zero length. In this case you can assume the address is stable, so you would use the tuple for connection lookup.</p>

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


From nobody Wed Sep  4 16:36: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 1F4D6120233 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 16:36: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 j5oQHJBvc81b for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 16:36:34 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4959E120044 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 16:36:34 -0700 (PDT)
Date: Wed, 04 Sep 2019 16:36:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567640193; bh=diyHyoFgqVh7y+ng7MU/IfIX7fAFcSecBblRRlMQmC8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MYdCswKi3pIhI1HUMp5lsCBgDoes2Xg4PTKLiBSe7YJ02ZagF6u82wehrSaOwkDbV FMnHfAtJM3xiGeGa6g9rwFvZUpmnxxfg5FrPRFMWWQpqkWyLYC2wC5luM9PrLt/kzb haZmkNzciR12QTqLQ9TqKxvhAwA3sjIWcfVBXG28=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYSPWAOK36QGNIZJXN3PVXPDEVBNHHB2LDIAM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3006/issue_event/2608806140@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3006@github.com>
References: <quicwg/base-drafts/issues/3006@github.com>
Subject: Re: [quicwg/base-drafts] Unclear how short header packets should be matched to connections (#3006)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d704a81874b4_76b33fdf55ccd96c1041a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/IatTLWB70V0KXePZRwZaKeYCDyc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 23:36:36 -0000

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

Closed #3006.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3006#event-2608806140
----==_mimepart_5d704a81874b4_76b33fdf55ccd96c1041a
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="489449475" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3006" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3006/hovercard" href="https://github.com/quicwg/base-drafts/issues/3006">#3006</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/3006?email_source=notifications&amp;email_token=AFTOJK4OOKETQ3DX6NSS6I3QIBBADA5CNFSM4ITXPGDKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTN7TR7A#event-2608806140">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6EKFSUMXVJ4H3VKDLQIBBADANCNFSM4ITXPGDA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6D2M3EPJEYTM36VI3QIBBADA5CNFSM4ITXPGDKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTN7TR7A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3006?email_source=notifications\u0026email_token=AFTOJK4OOKETQ3DX6NSS6I3QIBBADA5CNFSM4ITXPGDKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTN7TR7A#event-2608806140",
"url": "https://github.com/quicwg/base-drafts/issues/3006?email_source=notifications\u0026email_token=AFTOJK4OOKETQ3DX6NSS6I3QIBBADA5CNFSM4ITXPGDKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTN7TR7A#event-2608806140",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d704a81874b4_76b33fdf55ccd96c1041a--


From nobody Wed Sep  4 16:36: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 220FA120044 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 16:36: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 fr45jJbj24nb for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 16:36: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 81064120147 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 16:36:34 -0700 (PDT)
Date: Wed, 04 Sep 2019 16:36:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567640193; bh=TxEEV2aOhRVo3grggxZHaxXbX2nS8QznO95juyuwSy8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CFdN2XCrXmHCl3RaGYyDKWxNSDra+9vY0ZSEb1SPjEvLacJqh0n9uLN+/HedI6F1a 6cuM48TAnOQMRFRaeDk2rjzsvLBeaYUhpk8P3C4KOFUHHnR/EooSPRK3Zkrq7c4yxm t/iSKIAAvqdmCxknIech75fUu758YDh7Wz5z8n6I=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYSPWAOK36QGNIZJXN3PVXPDEVBNHHB2LDIAM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3006/528132545@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3006@github.com>
References: <quicwg/base-drafts/issues/3006@github.com>
Subject: Re: [quicwg/base-drafts] Unclear how short header packets should be matched to connections (#3006)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d704a8173055_119a3f9bd5acd964128987"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LCiRfzmN2cDo6fDSepvaqU2l78I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 23:36:37 -0000

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

@mikkelfj has it about right, though I would point out two things: you choose how long the connection ID is based on your understanding of requirements.  Zero-length is basically only for when you have a unique address for the connection at your end.

The other is that this is not the best place to ask questions.  Try our [mailing list](mailto:quic@ietf.org).

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3006#issuecomment-528132545
----==_mimepart_5d704a8173055_119a3f9bd5acd964128987
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> has it about right, though I would point out two things: you choose how long the connection ID is based on your understanding of requirements.  Zero-length is basically only for when you have a unique address for the connection at your end.</p>
<p>The other is that this is not the best place to ask questions.  Try our <a href="mailto:quic@ietf.org">mailing list</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/3006?email_source=notifications&amp;email_token=AFTOJKYH7ZUGQMD2PBD3I2DQIBBADA5CNFSM4ITXPGDKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD55KTQI#issuecomment-528132545">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6EKFSUMXVJ4H3VKDLQIBBADANCNFSM4ITXPGDA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7IHTW6CMLFFT6Q2CDQIBBADA5CNFSM4ITXPGDKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD55KTQI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3006?email_source=notifications\u0026email_token=AFTOJKYH7ZUGQMD2PBD3I2DQIBBADA5CNFSM4ITXPGDKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD55KTQI#issuecomment-528132545",
"url": "https://github.com/quicwg/base-drafts/issues/3006?email_source=notifications\u0026email_token=AFTOJKYH7ZUGQMD2PBD3I2DQIBBADA5CNFSM4ITXPGDKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD55KTQI#issuecomment-528132545",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d704a8173055_119a3f9bd5acd964128987--


From nobody Wed Sep  4 16:41: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 29805120805 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 16:41: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 GTCvB16lHR49 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 16:41: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 A30801200B4 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 16:41:52 -0700 (PDT)
Date: Wed, 04 Sep 2019 16:41:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567640511; bh=K+Emm4oN4mcjBg/rzxqb9rpUahZyfxtVvcQ+XhCs/nY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=PVAP8q6s1DTvHmrrbzNB/TFEx9kJ4oyiycRObN3jV83JJrj+rujwIYm4dcnirnG63 P94QiwNQrAmc2P6pMSKZx7vDy/QevCttbvfYbG8X0RkicPCsytPQBcP6mMv04QlfVM rWXuQGXkHE43ZiEONcqJQmk9Gx0XtR5Nstv3Ib+k=
From: Constantine Shablya <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5ZMAV3EC6V2QMKLWF3PV7D7EVBNHHB2LDIAM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3006/528133680@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3006@github.com>
References: <quicwg/base-drafts/issues/3006@github.com>
Subject: Re: [quicwg/base-drafts] Unclear how short header packets should be matched to connections (#3006)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d704bbf93bac_61753fc3b2ecd96012006"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: nanokatze
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Rm8nivRBL17czLFmiKqEm6Ne12w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 23:41:54 -0000

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

Thanks for clarifying. Though I did not create the issue just as a plain question but rather to express that I believe the order of actions of matching a short header to connection isn't very clear as described in the current draft.

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

<p>Thanks for clarifying. Though I did not create the issue just as a plain question but rather to express that I believe the order of actions of matching a short header to connection isn't very clear as described in the current draft.</p>

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


From nobody Wed Sep  4 16:51: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 5A03F120813 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 16:51:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.445
X-Spam-Level: 
X-Spam-Status: No, score=-6.445 tagged_above=-999 required=5 tests=[BAYES_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_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 cT187FVLQjLs for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 16:51: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 195A212007A for <quic-issues@ietf.org>; Wed,  4 Sep 2019 16:51:33 -0700 (PDT)
Date: Wed, 04 Sep 2019 16:51:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567641092; bh=tCRyzCMKr3CzfTWU0Yb8RQBvLMzTgYUdKJ+hDoemwpU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uGYtb7b6K0ru0ow6y5hwLdxVu+FMXLiEIu83ywssHj59ce5E72dyrFdKORgmAGEVf rSRSU1VW13j1rVZEod/LhWx55rYsgCb8DQ5dzDl04AAItbWhP0j+CKKnYKqLNaoauJ Ef8gaNv2+TxlAwufaMx9FDY+QdCoqbW4gV9jpGug=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6JAUJ7RAU33Y34TCV3PVZHHEVBNHHB2LDIAM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3006/528136882@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3006@github.com>
References: <quicwg/base-drafts/issues/3006@github.com>
Subject: Re: [quicwg/base-drafts] Unclear how short header packets should be matched to connections (#3006)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d704e03ece7a_242f3fdcaa8cd9642130cd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7Djx7CEKqCr00tUxWZ6kTi498Ck>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 04 Sep 2019 23:51:35 -0000

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

> Hosts try to associate a packet with an existing connection. If the packet has a Destination Connection ID corresponding to an existing connection, QUIC processes that packet accordingly.

I'll concede that this should probably say "processes that packet for the identified connection" or something along those lines, but I don't see how this is ambiguous otherwise.

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

<blockquote>
<p>Hosts try to associate a packet with an existing connection. If the packet has a Destination Connection ID corresponding to an existing connection, QUIC processes that packet accordingly.</p>
</blockquote>
<p>I'll concede that this should probably say "processes that packet for the identified connection" or something along those lines, but I don't see how this is ambiguous otherwise.</p>

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


From nobody Wed Sep  4 17:13: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 93DB8120147 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 17:13: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 X4JgX3edVclQ for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 17:13: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 2969D1200B4 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 17:13:51 -0700 (PDT)
Date: Wed, 04 Sep 2019 17:13:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567642430; bh=luM8HUOay/kc4edbE6/B8bRh5By0snRukhXtz/4J7V4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=N6nGzBa84B25sLuMwn23wlrsAB5c8/DYc6XnqhmZMXvwj0i4YN0O5SpU2YGzixcSa /qRsH0NHRS5hn9VDI8uLng1qNzQQXyW5leDz45YSjSABQ7VrmKumqhjsg6eMiMqopA XgyyEGcO7dalxJv2Voa+9AgZJ/Dmi4HfsCxoD9gc=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYIOPF3TKIF2CGUFIV3PWC35EVBNHHB2ISX3U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3004/review/283962550@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3004@github.com>
References: <quicwg/base-drafts/pull/3004@github.com>
Subject: Re: [quicwg/base-drafts] Security Considerations text for a memory limit (#3004)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d70533e40a51_24cc3f8c622cd96c245559"; 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/7CFSi14R9d4iHD-BVD7yWrT8oc8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 00:13:53 -0000

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


From nobody Wed Sep  4 17: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 862491208A1 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 17:37: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 MgdlkhHYXW1i for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 17:37:23 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 19F54120830 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 17:37:23 -0700 (PDT)
Date: Wed, 04 Sep 2019 17:37:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567643842; bh=yWVfgD8xlpC8oVLQ9HUSnETFkPahReEmjMbcuwMz4Dc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=R4eksT6fN6X8BMHjqUqs2vpCoV93wOe8Ayu4A9/TSscpR4GxUy06vXNSIH2Ki8ptH EibjUD53N5aUysZlevyhgAUDI2hJDZJLgvP2qvmdP1MeVNp3WWSqB3Z5mBmmy2aHcO W1RcRCULnwtRopawRe4rwTbPCtcFrv2ArzVJlbG0=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZVTO3ZEGX2E5JF2VN3PWFUFEVBNHHB2IMF5Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3003/review/283967611@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3003@github.com>
References: <quicwg/base-drafts/pull/3003@github.com>
Subject: =?UTF-8?Q?Re:_[quicwg/base-drafts]_rename_HTTP=5FUNEXPECTED=5FFRAM?= =?UTF-8?Q?E_to_HTTP=5FFRAME=5FUNEXPECTED_and_fold_HTTP=5FW=E2=80=A6?= =?UTF-8?Q?_=28#3003=29?=
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7058c2619da_7e953ffba74cd96076599"; 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/du8qEU5DUPNPo3gRHivyxBCe-b0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 00:37:25 -0000

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


From nobody Wed Sep  4 17:38: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 51175120880 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 17:37: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 c67wwQtY7CX9 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 17:37:55 -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 B8D2A120830 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 17:37:55 -0700 (PDT)
Date: Wed, 04 Sep 2019 17:37:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567643875; bh=YI6QarGMdsk4YnrrYPvasHblnhfgpZeMYejkEqdywF8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WFThvGBSlCoXs1jkfeBOvvfclcmlCNayg+bkHf2aemJpFHUP44lbW1to2qf7h+k4j YBUwVNuM3bpLuFFoKKXm00WcG4FVh+nYms/59uEAuaz69y7k1n8D6TYelWwPkukQ2/ 3+VjKe3mQh8Vk5u9SIVRjsRtM0XQdF9qK5pofQ6g=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3005/push/3998368244@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3005@github.com>
References: <quicwg/base-drafts/pull/3005@github.com>
Subject: Re: [quicwg/base-drafts] Add Security Considerations for SRT hash collision attack (#3005)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7058e32b0db_7b5d3fbae38cd95c618e4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EQ3TbjHmeiF-R37HyPVROouQcik>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 00:37:58 -0000

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

@kazuho pushed 1 commit.

68c8254f3e58241d1b1511bdcb683663da7e97c8  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/3005/files/c36c242c108a417f8190febc847c6e29531270a8..68c8254f3e58241d1b1511bdcb683663da7e97c8

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

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

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

----==_mimepart_5d7058e32b0db_7b5d3fbae38cd95c618e4--


From nobody Wed Sep  4 17:38: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 97D7B120880 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 17:38:32 -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 ocPZRKEKpE-t for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 17:38: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 B8CFD120830 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 17:38:30 -0700 (PDT)
Date: Wed, 04 Sep 2019 17:38:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567643909; bh=zZHrpDq74gUZ1jftsFkt8OSukwkGl5qdI6mSuahh4GU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gikvGklxDpBQfHYZKHVtN0CshBp2+TQsDZZKJqFi8tDx/Ee22XC22z/Xyohu4HsM/ 82LJX0zpp77IKM4TgniIsE8CgLDIsRood1azGNELV44Bg84iocT+ZTWWfhCQ0SeiAP pbUjWXE+N1zjrzxR4AjTbW0Va5qKDtAn0Qk1BtWY=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3005/push/3998369382@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3005@github.com>
References: <quicwg/base-drafts/pull/3005@github.com>
Subject: Re: [quicwg/base-drafts] Add Security Considerations for SRT hash collision attack (#3005)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d705905568b4_6aa63fc95cccd96c30541"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/pM5vMsbkAM6I3bKI1yzJkKu7M5o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 00:38:33 -0000

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

@kazuho pushed 1 commit.

65963b0a62131a7b958382a508f2cfe50262f6cc  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/3005/files/68c8254f3e58241d1b1511bdcb683663da7e97c8..65963b0a62131a7b958382a508f2cfe50262f6cc

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

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

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

----==_mimepart_5d705905568b4_6aa63fc95cccd96c30541--


From nobody Wed Sep  4 17: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 8A965120880 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 17:38: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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id AjpuwmdLAvtH for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 17:38: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 E7B76120830 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 17:38:44 -0700 (PDT)
Date: Wed, 04 Sep 2019 17:38:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567643924; bh=wXYC2nEWdXmivapoDsik17qlPswOwIEAf7h7vNoqwKk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FZ9os3XJBF9UTVgp/atSOGQmNpyCC0sictXjiNjH1BgNn3tAzJGwv2BDR8NwW+yL3 5rQsO/Jnvhpx40ik9EUq7/4u62kAxz5PRvItzCG2OtHijL8Pm1+Rg570VbyD7ETx1W eL3++uKLDm5JbbOMdzWbku8Q++iKEzwFizB632gM=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3005/push/3998369855@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3005@github.com>
References: <quicwg/base-drafts/pull/3005@github.com>
Subject: Re: [quicwg/base-drafts] Add Security Considerations for SRT hash collision attack (#3005)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d705913f0328_23df3fe535ecd95c384f4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bDljbcv6VCvJC7-N9tjNEQvQ8_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: Thu, 05 Sep 2019 00:38:47 -0000

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

@kazuho pushed 1 commit.

c97a0300480235812d88b6f95f62f4f2f6530223  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/3005/files/65963b0a62131a7b958382a508f2cfe50262f6cc..c97a0300480235812d88b6f95f62f4f2f6530223

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

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

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

----==_mimepart_5d705913f0328_23df3fe535ecd95c384f4--


From nobody Wed Sep  4 18:28: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 0262B1208E4 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 18:28:45 -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 kN5Tqp43Ye29 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 18:28:43 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6F48A1208D8 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 18:28:43 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 69F21C60A61 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 18:28:42 -0700 (PDT)
Date: Wed, 04 Sep 2019 18:28:42 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2IMKPETRYWEFHG7N53PWLUVEVBNHHB2JBBPE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3005/issue_event/2608979267@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3005@github.com>
References: <quicwg/base-drafts/pull/3005@github.com>
Subject: Re: [quicwg/base-drafts] Add Security Considerations for SRT hash collision attack (#3005)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7064ca5b45f_25ed3fe8104cd960163393"; 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/ZYB00NIZv4it_IO_ZwCdUWZxf44>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 01:28:45 -0000

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

Closed #3005.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3005#event-2608979267
----==_mimepart_5d7064ca5b45f_25ed3fe8104cd960163393
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="488907129" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3005" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3005/hovercard" href="https://github.com/quicwg/base-drafts/pull/3005">#3005</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/3005?email_source=notifications&amp;email_token=AFTOJKZVUDE3OIJLVND3HBDQIBOEVA5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTOA52QY#event-2608979267">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2CXEREOKYQRLYMREDQIBOEVANCNFSM4ITMT6LQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYFVKQDXE2C5P2KIHLQIBOEVA5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTOA52QY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3005?email_source=notifications\u0026email_token=AFTOJKZVUDE3OIJLVND3HBDQIBOEVA5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTOA52QY#event-2608979267",
"url": "https://github.com/quicwg/base-drafts/pull/3005?email_source=notifications\u0026email_token=AFTOJKZVUDE3OIJLVND3HBDQIBOEVA5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTOA52QY#event-2608979267",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7064ca5b45f_25ed3fe8104cd960163393--


From nobody Wed Sep  4 18:28: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 C476F120CCD for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 18:28:47 -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 QZst2fxRcCbi for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 18:28:46 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 44FE21208FA for <quic-issues@ietf.org>; Wed,  4 Sep 2019 18:28:46 -0700 (PDT)
Date: Wed, 04 Sep 2019 18:28:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567646925; bh=ZwYal8cuGBi0eZk19T6mWzJtb+b8AR068s9sNo2+/jM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=i5RRt5WxqXskQ/VpnJLWinqZpmedN8ntJ2zRmDKR3Sjm+a7SbfeZPVzUmM4N1M9KP wnXABMC8E0OuVNcB3by3Ztxu6/cpNY5AvXjLaLRBfuV/LeugpmVd4nDNle99Jq+g/A l2I3XnqRLwMwtheP/dhMa6WIwouRB2S87iLL5s5E=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3CC2VINZEXWDM7MC53PWLU3EVBNHHB2JBBPE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3005/c528156559@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3005@github.com>
References: <quicwg/base-drafts/pull/3005@github.com>
Subject: Re: [quicwg/base-drafts] Add Security Considerations for SRT hash collision attack (#3005)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7064cd92cda_38923fed0eecd96c3834f"; 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/uzFT2INh5VzqYM3R4v-zveHBVMM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 01:28:48 -0000

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

ian

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

<p>ian</p>

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


From nobody Wed Sep  4 18: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 16A6512004C for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 18:28:50 -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 X-0GGADtqVsP for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 18:28: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 28526120B9E for <quic-issues@ietf.org>; Wed,  4 Sep 2019 18:28:47 -0700 (PDT)
Date: Wed, 04 Sep 2019 18:28:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567646926; bh=MDTKY+zkzgQaVmJcMnwDfUrEtHG2qQ+yJrJ9iGPAupg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QApDE19RrTOGplnEs+PZOJ/6AYiyzfXfBkV5LbxdE6GcMrGSKQItaQjoBMJRFLWWY mSgNb4RJmYRC/Tuf0ndKTd6wUFlRBNNyjQsjBjQoTgD8UWWlAAWX9OK+K1HdO90AFv 80Q3WfWVqZfu2weMdNwihowNoSY4SajoM25ZleNw=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK33QHP2RJ6XFJOM4AV3PWLU5EVBNHHB2JBBPE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3005/issue_event/2608979363@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3005@github.com>
References: <quicwg/base-drafts/pull/3005@github.com>
Subject: Re: [quicwg/base-drafts] Add Security Considerations for SRT hash collision attack (#3005)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7064ce40183_4ffe3fe81aacd96416027f"; 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/2a8duT9CzW3qa-ZoRUszf4XWMpU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 01:28:50 -0000

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

Reopened #3005.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3005#event-2608979363
----==_mimepart_5d7064ce40183_4ffe3fe81aacd96416027f
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="488907129" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3005" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3005/hovercard" href="https://github.com/quicwg/base-drafts/pull/3005">#3005</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/3005?email_source=notifications&amp;email_token=AFTOJKZPL3JELDNKOUMFWH3QIBOE5A5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTOA53IY#event-2608979363">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4XNSRVMJGEOI5SFJLQIBOE5ANCNFSM4ITMT6LQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2TSHTGGXAC57JZ4W3QIBOE5A5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTOA53IY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3005?email_source=notifications\u0026email_token=AFTOJKZPL3JELDNKOUMFWH3QIBOE5A5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTOA53IY#event-2608979363",
"url": "https://github.com/quicwg/base-drafts/pull/3005?email_source=notifications\u0026email_token=AFTOJKZPL3JELDNKOUMFWH3QIBOE5A5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTOA53IY#event-2608979363",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7064ce40183_4ffe3fe81aacd96416027f--


From nobody Wed Sep  4 18:38: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 D9BD91208E4 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 18:38:52 -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 2gchieMKlOLH for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 18:38: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 F276A12004C for <quic-issues@ietf.org>; Wed,  4 Sep 2019 18:38:49 -0700 (PDT)
Date: Wed, 04 Sep 2019 18:38:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567647529; bh=9OMirzCFFjTUSqJor7++nA6vbBIImBazrYKI1sDARNk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=miLNIHCbYy6aOTzy6njfS4mS4ApujeQF68S0yHQEPAxDDZ4q89aqJe8ZYNMKPUiFp YEAOIXVLVc/rNItSqlpVvEwGqk7D1kYAf72wy54s+E2S2bEjrpk4JzYHKsycleMBey P4JQiEdNKNsuB8RlqsLvOogFV66ZCbjaNywitlUk=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZGWZUJIZX2CHOVD7N3PWM2REVBNHHB2JBBPE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3005/c528158485@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3005@github.com>
References: <quicwg/base-drafts/pull/3005@github.com>
Subject: Re: [quicwg/base-drafts] Add Security Considerations for SRT hash collision attack (#3005)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d706728f2c5c_43e13fa1342cd96c1165fb"; 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/tccbYUSwvMZbsyCZWvhOVraxKso>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 01:38:53 -0000

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

@ianswett 
> A similar concern exists on the server side for connection ID lookup I believe? Not as much the constant time aspect, but hash collisions.

That's a good point. For most CIDs no, but yes for the server CIDs that are initially chosen by the client. Though, for such CIDs, I think a hash map that uses `client-address-port || CID` as the key should be used for identifying connections, as the collision of CIDs (rather than the collision of hashed values) would be an issue.

We might want to expand on that.

OTOH, I think @martinthomson makes a good point in asking if collision of hashed values (or raw values) in general is something we need to talk. If we are to limit the discussion to how endpoints can fulfill the no-leak requirement regarding stored SRTs, maybe something like https://github.com/kazuho/base-drafts/commit/8908632504a0db7467ea73f05ceb99b0537ee72c would be sufficient.

FWIW, my intent behind creating this PR has been to give advice on how implementations can cope with the requirement, and nothing more.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3005#issuecomment-528158485
----==_mimepart_5d706728f2c5c_43e13fa1342cd96c1165fb
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></p>
<blockquote>
<p>A similar concern exists on the server side for connection ID lookup I believe? Not as much the constant time aspect, but hash collisions.</p>
</blockquote>
<p>That's a good point. For most CIDs no, but yes for the server CIDs that are initially chosen by the client. Though, for such CIDs, I think a hash map that uses <code>client-address-port || CID</code> as the key should be used for identifying connections, as the collision of CIDs (rather than the collision of hashed values) would be an issue.</p>
<p>We might want to expand on that.</p>
<p>OTOH, 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> makes a good point in asking if collision of hashed values (or raw values) in general is something we need to talk. If we are to limit the discussion to how endpoints can fulfill the no-leak requirement regarding stored SRTs, maybe something like <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/kazuho/base-drafts/commit/8908632504a0db7467ea73f05ceb99b0537ee72c/hovercard" href="https://github.com/kazuho/base-drafts/commit/8908632504a0db7467ea73f05ceb99b0537ee72c">kazuho@<tt>8908632</tt></a> would be sufficient.</p>
<p>FWIW, my intent behind creating this PR has been to give advice on how implementations can cope with the requirement, and nothing more.</p>

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


From nobody Wed Sep  4 18:47: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 DE5D512004C for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 18:46: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 z6OkWdjJ8P82 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 18:46: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 5326F1208D8 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 18:46:57 -0700 (PDT)
Date: Wed, 04 Sep 2019 18:46:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567648016; bh=AgHRKFSa9BMhFHAV1u2aBLHKDWY/lyYY8cZLbnirQTU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bUBB7FKuYPVXtbm8gvYsVy30QMZCYPiikbnN8XNAgy1TD7dGtk2IigRuzv2RZXvE1 7F5GPC2DaEMFHExWa14HXVV2i4raDPbBrkD5+L/oQX0yKgnO8j1yspDfq7Ol9Q04To BtAqIqnOBhKN/yHAWCIteff4QJZX8qS4OduUjxjg=
From: Tatsuhiro Tsujikawa <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6ZXXCAPSRU32Z7ED53PWNZBEVBNHHB2ISX3U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3004/review/283981516@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3004@github.com>
References: <quicwg/base-drafts/pull/3004@github.com>
Subject: Re: [quicwg/base-drafts] Security Considerations text for a memory limit (#3004)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7069107e04d_48ac3fda0e0cd960147064"; 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/ImsRl2mgYl3GD2JOcSVsvz0IkKw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 01:46:59 -0000

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

tatsuhiro-t approved this pull request.





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

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



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


From nobody Wed Sep  4 19:30: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 1D05F120B5E for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 19:30: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 wbxAdJ7gmm8R for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 19:30: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 92535120B36 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 19:30:55 -0700 (PDT)
Date: Wed, 04 Sep 2019 19:30:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567650654; bh=WI991Sn+yin7n2d2zayBZblfpLKjrETnCuZrN5c6NJg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vanSZuRod+sHtN5mYhQpwu0M3yRGukGG43PAABF8yd6LNxbJlATDLSJnnspbl4Rp/ AE8RVC5iCI0dqagh0TJ0xhKGT931ZSJ3CV44EzCoSNuEYZipfnR1bC8zTZ8iSsl/9u CLpCA5gB7p1kQD00HGEtLFp9tq8HYLE+c+iYQHss=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6AZVBCKLJTZYR63CF3PWL45EVBNHHB2JBBPE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3005/c528169505@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3005@github.com>
References: <quicwg/base-drafts/pull/3005@github.com>
Subject: Re: [quicwg/base-drafts] Add Security Considerations for SRT hash collision attack (#3005)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d70735ed4066_786d3fe8292cd96c2840a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/y8hTWmPLq16h9RBnolZgEhsxBEI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 02:30:57 -0000

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

I think that kazuho@8908632 would be sufficient.  Let me see how I can cherry-pick 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/3005#issuecomment-528169505
----==_mimepart_5d70735ed4066_786d3fe8292cd96c2840a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I think that <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/kazuho/base-drafts/commit/8908632/hovercard" href="https://github.com/kazuho/base-drafts/commit/8908632">kazuho/base-drafts@<tt>8908632</tt></a> would be sufficient.  Let me see how I can cherry-pick 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/3005?email_source=notifications&amp;email_token=AFTOJK5RBJHK3RQHMBBAUTLQIBVN5A5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD55TUII#issuecomment-528169505">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7C66INS34TT3UDZWLQIBVN5ANCNFSM4ITMT6LQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6VJZT4WDCOCAGONZ3QIBVN5A5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD55TUII.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3005?email_source=notifications\u0026email_token=AFTOJK5RBJHK3RQHMBBAUTLQIBVN5A5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD55TUII#issuecomment-528169505",
"url": "https://github.com/quicwg/base-drafts/pull/3005?email_source=notifications\u0026email_token=AFTOJK5RBJHK3RQHMBBAUTLQIBVN5A5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD55TUII#issuecomment-528169505",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d70735ed4066_786d3fe8292cd96c2840a--


From nobody Wed Sep  4 19:32: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 24B35120B9D for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 19:32: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 U0atl1GQgNk4 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 19:32: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 C4899120B9A for <quic-issues@ietf.org>; Wed,  4 Sep 2019 19:32:40 -0700 (PDT)
Date: Wed, 04 Sep 2019 19:32:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567650760; bh=fclGb9XRNiioD7sAJAylB/Lb0e2rdCxMRO6U2Cez/04=; h=Date:From:To:Subject:From; b=fpkb5ryV2fjOvk8OW6gfg0ewL0DH6GRq6pVO8Z6tU8F/ZHvEP/qbZE7NKvkdy88vm FWvf9OcsxVj48cEJzOnOPOe7nYEOH/Da0/R8CT8Nzxu6iFloNllAZZRl2+xaX4naoC xFBtxrqhFSJ3uoao7gEpwwQ6H8Wovj0OSWVowoHs=
From: Kazuho Oku <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ct-sr/9e7142-890863@github.com>
Subject: [quicwg/base-drafts] 890863: add example that uses PRF
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LJY9-wn5l3_n3SfumvDlNZsptWI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 02:32:42 -0000

  Branch: refs/heads/ct-sr
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8908632504a0db7467ea73f05ceb99b0537ee72c
      https://github.com/quicwg/base-drafts/commit/8908632504a0db7467ea73f05ceb99b0537ee72c
  Author: Kazuho Oku <kazuhooku@gmail.com>
  Date:   2019-09-05 (Thu, 05 Sep 2019)

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

  Log Message:
  -----------
  add example that uses PRF



From nobody Wed Sep  4 19:32: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 B4154120B9A for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 19:32: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 MqptkVUZ6FIr for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 19:32: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 1AAB4120B15 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 19:32:49 -0700 (PDT)
Date: Wed, 04 Sep 2019 19:32:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567650768; bh=bThdhyAqP5vV74SaiCj53WZAldpMXnF1ieAy980TG2I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=c5lhACGNwBTfiOHeTUIAkmp+xy+krQBHQlOtabwI7Z9MkiXPXsWlQv3qzUF05YgKQ Qzw2MlpMJnabmIzYECuxvJrvRaIFGmDvQ7+aOARUrY4yuvMtwJiUGoxtTn2Aeap72c xQ6tRmxZP0BBbYfdYqqP97jf0UzHkYW6rq3DYg58=
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/2993/push/3998602043@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2993@github.com>
References: <quicwg/base-drafts/pull/2993@github.com>
Subject: Re: [quicwg/base-drafts] Perform stateless reset token comparisons in constant time (#2993)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7073d067e09_3ef3f7f39acd96844379"; 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/rgJfCyOdqCqhkgYecooF2glfvPg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 02:32:51 -0000

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

@martinthomson pushed 1 commit.

8908632504a0db7467ea73f05ceb99b0537ee72c  add example that uses PRF


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2993/files/9e7142b9989bad34fdd86cc9c7dec57abfe514ea..8908632504a0db7467ea73f05ceb99b0537ee72c

----==_mimepart_5d7073d067e09_3ef3f7f39acd96844379
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/8908632504a0db7467ea73f05ceb99b0537ee72c">8908632</a>  add example that uses PRF</li>
</ul>


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

----==_mimepart_5d7073d067e09_3ef3f7f39acd96844379--


From nobody Wed Sep  4 19:33: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 C3CCE120B15 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 19:33: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 IJKln6FZ4ZPS for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 19:33: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 8C4AE1208FA for <quic-issues@ietf.org>; Wed,  4 Sep 2019 19:33:56 -0700 (PDT)
Date: Wed, 04 Sep 2019 19:33:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567650835; bh=b4DU9PaiwYLa5B1IOK7s3N1M+AmDZPed/OBwO6oxWAw=; h=Date:From:To:Subject:From; b=NVWfsiuLmZG+Bcy2J/QJNty3iHFpIm8EeNMnSRMiZgk6bX7sZu6So+sip+K7POsqh 6ATAeJmDDdX3OvIT7w9aDBgxD2MTHpF0niXN6Ax9d7PGrDBCHxDCdvpddDyJ9HNp5G KyaAOAfungQGBoOH8RQeHkdw/FXgBIlM36tHTjpk=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/1bd1c8-47f379@github.com>
Subject: [quicwg/base-drafts] 47f379: Script updating gh-pages from 89086325. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LJRch-yNE1nfCeZNjt9YqjaW3Yk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 02:33:58 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 47f379d8779d7597ac24e543028c1bbbd31c98ff
      https://github.com/quicwg/base-drafts/commit/47f379d8779d7597ac24e543028c1bbbd31c98ff
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-05 (Thu, 05 Sep 2019)

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

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



From nobody Wed Sep  4 19: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 E1A821208FA for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 19:35: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 FVCCDPY6XBU2 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 19:35: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 8625C120B15 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 19:35:42 -0700 (PDT)
Date: Wed, 04 Sep 2019 19:35:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567650941; bh=X9Ye+fK6wYBKaXSg7a0+Iujnq59QtmCeD+wLSC8AHBY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SJrkbjOtE/xJ7aEC/034afaVRx8gmGtA5j8+hneuEh0THEiGGfe3UB2b4y4SJtOI+ KkASc8Cjq7DXEBYLgKtapVpt1FtVHXP7/exHxPl2AYASQeq4fYuLsnAgXoNn7+AZLu UBmIESy/hgWuZBwMqCkkdZiie6EbGHGhzieGkjA0=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZA7EWAWQS6LC2CODF3PWTP3EVBNHHB2JBBPE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3005/c528170443@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3005@github.com>
References: <quicwg/base-drafts/pull/3005@github.com>
Subject: Re: [quicwg/base-drafts] Add Security Considerations for SRT hash collision attack (#3005)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d70747dcfae7_4f613fe81aacd964356496"; 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/ZdK68uBJsTuTUTLsGv4h60O_vlU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 02:35:44 -0000

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

@martinthomson Thank you for cherry-picking the commit in #2993. Closing 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/pull/3005#issuecomment-528170443
----==_mimepart_5d70747dcfae7_4f613fe81aacd964356496
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> Thank you for cherry-picking the commit in <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="485562371" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2993" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2993/hovercard" href="https://github.com/quicwg/base-drafts/pull/2993">#2993</a>. Closing 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/pull/3005?email_source=notifications&amp;email_token=AFTOJKYMEBYXOL6HLHTTWG3QIBV73A5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD55T3SY#issuecomment-528170443">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5MJXGG7OQP3Z3V6ZTQIBV73ANCNFSM4ITMT6LQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5FUCTW2E6FCYF47CLQIBV73A5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD55T3SY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3005?email_source=notifications\u0026email_token=AFTOJKYMEBYXOL6HLHTTWG3QIBV73A5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD55T3SY#issuecomment-528170443",
"url": "https://github.com/quicwg/base-drafts/pull/3005?email_source=notifications\u0026email_token=AFTOJKYMEBYXOL6HLHTTWG3QIBV73A5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD55T3SY#issuecomment-528170443",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d70747dcfae7_4f613fe81aacd964356496--


From nobody Wed Sep  4 19:35: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 33643120B9A for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 19:35: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 12YmM2A_1vP7 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 19:35: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 862C01208FA for <quic-issues@ietf.org>; Wed,  4 Sep 2019 19:35:44 -0700 (PDT)
Date: Wed, 04 Sep 2019 19:35:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567650943; bh=IURmKR7y0v6FzuslISwEoOjLtr/ALN1Rgh9yUdAUwes=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Twj/oWWmbDfW/wANX5J446Xm/J27trM59jyztByNCoW0c/huSCHsSPRtPhBJJtRha Kxsakno2Ns/Bnw+QzD8B5b7LeEo7L1uDjydbt5kYTmsHSuNDHOwbhCBRkKF///Er/r hrqwgoefMkc8eQA01MUMP5DTiXyuWB1JrgQfLonY=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZJXFIYKDS2RDPM4HN3PWTP7EVBNHHB2JBBPE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3005/issue_event/2609065464@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3005@github.com>
References: <quicwg/base-drafts/pull/3005@github.com>
Subject: Re: [quicwg/base-drafts] Add Security Considerations for SRT hash collision attack (#3005)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d70747fa8723_6b83fbdb2ecd95c53312c"; 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/rFhMwPLDfLj5w8zQpsjXYNaBdzE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 02:35:46 -0000

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

Closed #3005.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3005#event-2609065464
----==_mimepart_5d70747fa8723_6b83fbdb2ecd95c53312c
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="488907129" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3005" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3005/hovercard" href="https://github.com/quicwg/base-drafts/pull/3005">#3005</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/3005?email_source=notifications&amp;email_token=AFTOJK7BMDQIVC6MAS27GATQIBV77A5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTOBS36A#event-2609065464">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4RGVCIGZYWDO6NYRLQIBV77ANCNFSM4ITMT6LQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY5D5GOVLS7VJUNHLTQIBV77A5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTOBS36A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3005?email_source=notifications\u0026email_token=AFTOJK7BMDQIVC6MAS27GATQIBV77A5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTOBS36A#event-2609065464",
"url": "https://github.com/quicwg/base-drafts/pull/3005?email_source=notifications\u0026email_token=AFTOJK7BMDQIVC6MAS27GATQIBV77A5CNFSM4ITMT6L2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTOBS36A#event-2609065464",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d70747fa8723_6b83fbdb2ecd95c53312c--


From nobody Wed Sep  4 19:36: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 9A88E120DB7 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 19:35: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 2w49Xudd3iC6 for <quic-issues@ietfa.amsl.com>; Wed,  4 Sep 2019 19:35: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 BF088120B15 for <quic-issues@ietf.org>; Wed,  4 Sep 2019 19:35:45 -0700 (PDT)
Date: Wed, 04 Sep 2019 19:35:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567650945; bh=bPr6mOl0tDANQP8Zdj+1uerxcFcCXz3HEs18Jq/ZQE8=; h=Date:From:To:Subject:From; b=MZprMwMamb7MbaoDcRgOCP+xaDG964+WCdud2UOYTS9lwAfB2UI1wfDqjiGAN3tua zOFIDRzzHi4aZbb5WvpFw1NQSL+aU0kRwuXUNIO4AB4aE3NfCt6w6Z6e0GRD67Y/lo q+rIifUeFv00jxW8Mi/XTfx1sRaxJRGUmVwMlipI=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/47f379-d65fd5@github.com>
Subject: [quicwg/base-drafts] d65fd5: Script updating issues at 2019-09-05T02:35:38Z. [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/Nl45zNSqwmHdwuoXKTsu5o-TKbo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 02:35:48 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d65fd56cb018517cff436dca6b005bb61c5fb4e4
      https://github.com/quicwg/base-drafts/commit/d65fd56cb018517cff436dca6b005bb61c5fb4e4
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-05 (Thu, 05 Sep 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-09-05T02:35:38Z. [ci skip]



From nobody Thu Sep  5 07:39: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 D87DA120860 for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 07:39: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 Fs48C-XFAabj for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 07:39: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 5E93C12084F for <quic-issues@ietf.org>; Thu,  5 Sep 2019 07:39:35 -0700 (PDT)
Date: Thu, 05 Sep 2019 07:39:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567694374; bh=Z4kCKgU5YH0y96bPxt7EtibBvF4kZmvNu1Afd9DgP1s=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LxZAkp+YpyBzH9JKJApgJKwU+dspuyDXCfQ21v/PXx3vEXdlN9Z98/bSLhQjw9YI+ CcyTTMFp5lGALCQn7sLUz1A66hQSDKx31uY8dJYrGnnSgTwHMKXnZLs2NSuXt8f+0c tezfPE4g7+FsrY7Xb30tRuzzIv2vDa7RVGzi3h6M=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZUQ7VHLQH5G37GXHF3PZPLNEVBNHHB2AE7TY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2998/review/284315233@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2998@github.com>
References: <quicwg/base-drafts/pull/2998@github.com>
Subject: Re: [quicwg/base-drafts] Error codes can't cause errors (#2998)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d711e26a6ddc_13303ff62d0cd95c173931"; 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/3Iv_1rHXjh19iOSwAAOOqM1hfTw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 14:39:40 -0000

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


From nobody Thu Sep  5 08:18: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 2AF761200F5 for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 08:17: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 BluKkaF3xRIH for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 08:17: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 AB1AF1200F9 for <quic-issues@ietf.org>; Thu,  5 Sep 2019 08:17:42 -0700 (PDT)
Date: Thu, 05 Sep 2019 08:17:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567696661; bh=xPS3uU7eYpRRyftov4ST5MAKc1rI0a5WvhJWBGaMs+o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kyZcjZPFEXUUDZPBIYY7scN1zcMZozr9Enhc0OcgDfRlNtEIJ8Y61MvcGPnmZLzF1 pVzZKMKX6C4H3QeAhmXAcJhq7PCZcGUd4Hi8Y3HzF/8RnQo8+yLgYyyivjDy8eeeVw D8cYYsU8kcQt0HBVc7eDIuO5itS6h0oFSD0KVDiI=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6ZWV2P4JICUCW5B653PZT2LEVBNHHBYHMRI4@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/c528419864@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_5d712715aabea_47793faecb8cd96c1166d0"; 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/As9eaxksC5f__ax_8XEbxV55T8c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 15:17:44 -0000

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

I find this text to be really unclear. Furthermore, if implementers don't pick up the SHOULD we're going to have detectable stateless resets all over the place.

And given the final version of extended connection IDs, we're talking about 2 additional bytes over the draft-20 status quo?

I don't find this change to be necessary, though I wouldn't raise a huge stink about it. However, I'd like to consider changing SHOULD to MUST. This seems like a potential security vulnerability.

At an absolute minimum, I'll propose an editorial rewrite to make these considerations clearer.

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

<p>I find this text to be really unclear. Furthermore, if implementers don't pick up the SHOULD we're going to have detectable stateless resets all over the place.</p>
<p>And given the final version of extended connection IDs, we're talking about 2 additional bytes over the draft-20 status quo?</p>
<p>I don't find this change to be necessary, though I wouldn't raise a huge stink about it. However, I'd like to consider changing SHOULD to MUST. This seems like a potential security vulnerability.</p>
<p>At an absolute minimum, I'll propose an editorial rewrite to make these considerations clearer.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2927?email_source=notifications&amp;email_token=AFTOJK4UGK5TXWHLUF5TT5DQIEPJLA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD57QYGA#issuecomment-528419864">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4EEQID4BHM3I5DRKDQIEPJLANCNFSM4IGENO4A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6YIYHX5F35NGSFNH3QIEPJLA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD57QYGA.gif" height="1" width="1" 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=AFTOJK4UGK5TXWHLUF5TT5DQIEPJLA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD57QYGA#issuecomment-528419864",
"url": "https://github.com/quicwg/base-drafts/pull/2927?email_source=notifications\u0026email_token=AFTOJK4UGK5TXWHLUF5TT5DQIEPJLA5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD57QYGA#issuecomment-528419864",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d712715aabea_47793faecb8cd96c1166d0--


From nobody Thu Sep  5 13:22: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 1392D1207FF for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 13:22: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 pfvy03yGup6f for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 13:22: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 414D5120271 for <quic-issues@ietf.org>; Thu,  5 Sep 2019 13:22:07 -0700 (PDT)
Date: Thu, 05 Sep 2019 13:22:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567714926; bh=5UE7OX6//XxWs9asu61KUuXjUfh+u2ULhQoopNWseDE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oZ6TZxA/u2j1w+msXvCLAEetmGvcK30R+vatiWoY2r+yrGMe1F4w+wRGh2+NMzOpQ mPLg4VvjgzwDRkVJcrwLe8B7ppO2k7aOjaMy8RIGbPLFueq+W51oTkAiLsx/8vZD7W QhdhBTWFjH0kbmp8BYUS+y1bQn/XAZu1D9tJbGdE=
From: Nick Harper <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK27UQEMQBPMBMVDGY53P2XP5EVBNHHBOTHDPI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2171/528565409@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2171@github.com>
References: <quicwg/base-drafts/issues/2171@github.com>
Subject: Re: [quicwg/base-drafts] ChaCha inputs (#2171)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d716e6e868c2_754e3f9827acd95c1839c4"; 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/CZJOPI9sIdhSA2fC2z6GlKXdU04>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 20:22:09 -0000

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

The API I'm using for ChaCha20 takes a const uint8_t nonce[12], and I currently pass in a pointer (offset by 4 bytes) to the sample as the nonce, without doing any endianness conversions. I'm in favor of clarifying the language for this input. (Given that this has the design label instead of the editorial label, my design opinion is to keep with the simple thing of passing the bytes directly from the sample to the nonce input of ChaCha20 and not do any endianness conversions. I'm assuming that other crypto libraries have similar APIs though.)

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

<p>The API I'm using for ChaCha20 takes a const uint8_t nonce[12], and I currently pass in a pointer (offset by 4 bytes) to the sample as the nonce, without doing any endianness conversions. I'm in favor of clarifying the language for this input. (Given that this has the design label instead of the editorial label, my design opinion is to keep with the simple thing of passing the bytes directly from the sample to the nonce input of ChaCha20 and not do any endianness conversions. I'm assuming that other crypto libraries have similar APIs though.)</p>

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


From nobody Thu Sep  5 14: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 38A38120B78 for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 14:48: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 pkBoNNzfid7N for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 14:48: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 7885212081C for <quic-issues@ietf.org>; Thu,  5 Sep 2019 14:48:00 -0700 (PDT)
Date: Thu, 05 Sep 2019 14:47:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567720079; bh=sdPLdVKOho2rM7JilH2bNq2dZ1Cf+hF679yQTVUpa7k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yzMFvB+47ihs4HGRJby7oD74oFNqpI9moYepKb3b1wokfx94HcCdDZOHWoFlvvDVG cUWjk/V4HZBUgcyXsvm9F30NVyBX5Rx1A/za6A802XbElo3CgqocPUwtURUo8ukrYY jK3AzOX4KcvRSXBceD3Z/jdQH4t6DwkMPRb4cJhs=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7FL5R3NNECVSBFQUF3P22Q7EVBNHHBZ2ZITU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2990/review/284560558@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2990@github.com>
References: <quicwg/base-drafts/pull/2990@github.com>
Subject: Re: [quicwg/base-drafts] Simplify ChaCha20 interface (#2990)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d71828fb3cb3_48533f9f860cd9645142d5"; 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/AHqFZ4onf3zr59Ax-8kziT1v_9Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Sep 2019 21:48:12 -0000

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

kazuho commented on this pull request.



> @@ -1049,16 +1049,16 @@ function as defined in Section 2.4 of {{!CHACHA}}.  This uses a 256-bit key and
 16 bytes sampled from the packet protection output.
 
 The first 4 bytes of the sampled ciphertext are interpreted as a 32-bit number
-in little-endian order and are used as the block count.  The remaining 12 bytes
-are interpreted as three concatenated 32-bit numbers in little-endian order and
-used as the nonce.
+in little-endian order and are used as the block count; a ChaCha20
+implementation might instead take the 4 bytes as an opaque sequence of bytes.
+The remaining 12 bytes are used as the nonce.

While I like the idea of providing practical advice, I am a bit concerned of dropping the text that state the format of input in terms of specification language (in this case RFC 7539).

RFC 7539 assumes that the nonce to be three uint32 values. Is it possible to provide a formal definition without describing the interaction with that design? In practice, I think that the new text does not read good when the user is using a Chacha20 implementation (used on a big endian machine) that in fact takes uint32 values as inputs (rather than octets).

To reiterate, I think that it might be better preserve the existing text, at the same time "adding" implementation advice when using a Chacha20 function that takes octets as input.

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

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

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2990#discussion_r321497629">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1049,16 +1049,16 @@ function as defined in Section 2.4 of {{!CHACHA}}.  This uses a 256-bit key and
 16 bytes sampled from the packet protection output.
 
 The first 4 bytes of the sampled ciphertext are interpreted as a 32-bit number
-in little-endian order and are used as the block count.  The remaining 12 bytes
-are interpreted as three concatenated 32-bit numbers in little-endian order and
-used as the nonce.
+in little-endian order and are used as the block count; a ChaCha20
+implementation might instead take the 4 bytes as an opaque sequence of bytes.
+The remaining 12 bytes are used as the nonce.
</pre>
<p>While I like the idea of providing practical advice, I am a bit concerned of dropping the text that state the format of input in terms of specification language (in this case RFC 7539).</p>
<p>RFC 7539 assumes that the nonce to be three uint32 values. Is it possible to provide a formal definition without describing the interaction with that design? In practice, I think that the new text does not read good when the user is using a Chacha20 implementation (used on a big endian machine) that in fact takes uint32 values as inputs (rather than octets).</p>
<p>To reiterate, I think that it might be better preserve the existing text, at the same time "adding" implementation advice when using a Chacha20 function that takes octets as input.</p>

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


From nobody Thu Sep  5 17: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 19412120B43 for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 17:10: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 lcDF584IeXZ0 for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 17:10:18 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 622B1120B46 for <quic-issues@ietf.org>; Thu,  5 Sep 2019 17:10:18 -0700 (PDT)
Date: Thu, 05 Sep 2019 17:10:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567728617; bh=VE32v7EULnjZSujfFrx5zPXQi/DW6h+Nd9UKq8prbH4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=F92nMCGJHXiRdY7lxY2IIv7FtVJEvo48vNynZhSWkKBeoNchQy1zLaT3g7ncVzy0R TctWpNheyMuo6r/a579hUgc/t2KWCD7FwKJZhPa0XhAmGLD3ojG7OD/xQzrZg9sPVh hMtNi3wS7Ikz5VnLgMGB2orXCGVRPsEcpGwsPiTQ=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6CS47BONJIIDPU6JV3P3EFTEVBNHHBOTHDPI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2171/528654401@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2171@github.com>
References: <quicwg/base-drafts/issues/2171@github.com>
Subject: Re: [quicwg/base-drafts] ChaCha inputs (#2171)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d71a3e9a541f_15733fad1a2cd95c5443c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/aR7wUF2NSxK4sMH2GcAcqLEhNRY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 00:10:26 -0000

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

The API I have takes `const uint8_t nonce[12], uint32_t counter`.  PKCS#11 takes pointers just like the API @nharper refers to (but it fails to specify the endianness, which is a critical oversight, compounded by the fact that the size of the counter can vary).

I suspect that - as @kazuho says - the right idea is to note that ChaCha20 will interpret the nonce as three little-endian integers and that the counter might be expressed as a byte sequence that is then (probably) interpreted as a little-endian integer.

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

<p>The API I have takes <code>const uint8_t nonce[12], uint32_t counter</code>.  PKCS#11 takes pointers just like the API <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=653608" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nharper">@nharper</a> refers to (but it fails to specify the endianness, which is a critical oversight, compounded by the fact that the size of the counter can vary).</p>
<p>I suspect that - as <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> says - the right idea is to note that ChaCha20 will interpret the nonce as three little-endian integers and that the counter might be expressed as a byte sequence that is then (probably) interpreted as a little-endian integer.</p>

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


From nobody Thu Sep  5 17: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 DCE2D120044 for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 17:11: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 j5AfkvmHuW1r for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 17:11:27 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DEC46120043 for <quic-issues@ietf.org>; Thu,  5 Sep 2019 17:11:26 -0700 (PDT)
Date: Thu, 05 Sep 2019 17:11:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567728686; bh=9qw6NK+EUl4/jit9LLnX8gm8Vez9sLRr7dn3/lvVX/w=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HJdQpRZhFx6RtRfbqhmeeWQa1vYyBmYEPJtKN/U8OmmDIGiGHA8UZ2Jpu+NdJ10Jm M6Nmq20FLnZrSggjX+Em31ELQRDlHzWY2lTNCX1QqL2TB0p4M1Ge+vxgM85S2FHng/ QdHyOvUKlbXJHnU7yvAv08+Ei+hw3gTGPNRVEO6E=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK544FNSTFQVSMOPCXV3P3EJ5EVBNHHBYHMRI4@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/c528654658@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_5d71a42e394f5_6fdb3fbf334cd95c4901b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AmYg3UoCp9PXCXyG0Paj6pwLSZM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 00:11:28 -0000

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

In coming back to this, I can agree with Martin.  This is very unclear.

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

<p>In coming back to this, I can agree with Martin.  This is very unclear.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJKZ5PH6ZUKIYOPG2FUTQIGN25A5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6BKCQQ#issuecomment-528654658">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZDZ4NZDHPIFYCD3KTQIGN25ANCNFSM4IGENO4A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2E4BO72ZLRNFNV4VDQIGN25A5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6BKCQQ.gif" height="1" width="1" 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=AFTOJKZ5PH6ZUKIYOPG2FUTQIGN25A5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6BKCQQ#issuecomment-528654658",
"url": "https://github.com/quicwg/base-drafts/pull/2927?email_source=notifications\u0026email_token=AFTOJKZ5PH6ZUKIYOPG2FUTQIGN25A5CNFSM4IGENO4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6BKCQQ#issuecomment-528654658",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d71a42e394f5_6fdb3fbf334cd95c4901b--


From nobody Thu Sep  5 17: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 5C864120071 for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 17:52: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 7BEdlE3w6TzQ for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 17:52:04 -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 ECF05120077 for <quic-issues@ietf.org>; Thu,  5 Sep 2019 17:52:03 -0700 (PDT)
Date: Thu, 05 Sep 2019 17:52:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567731123; bh=BTp4TkTBYct/MCzAr7QJJrva+O9UHqsoOdUcirfx61k=; h=Date:From:To:Subject:From; b=TLGeGRt0Bktlf6B9y2iRokQ0oWElEVRFj210M8h1rE5W9lTluO+10ZtVFp/nYXo2F 8BowIZe9mrMAdf96J2SM7RZiTvH8zD1tAf295/OiA71Aun9UVYibfTzhnYpBDZhrMP F7UbtCZB/gQdtZmeONrWIdKkl9ASZnnYpOgfnag4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/chacha-simple/36609c-b0f00e@github.com>
Subject: [quicwg/base-drafts] b0f00e: Simplify 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/2kHr2M746-R1Y1ooatwhpJ4X-7I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 00:52:06 -0000

  Branch: refs/heads/chacha-simple
  Home:   https://github.com/quicwg/base-drafts
  Commit: b0f00edf9f8ba7139a6b7a2c36edd44112de5482
      https://github.com/quicwg/base-drafts/commit/b0f00edf9f8ba7139a6b7a2c36edd44112de5482
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

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

  Log Message:
  -----------
  Simplify more



From nobody Thu Sep  5 17:52: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 5577C120044 for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 17:52:13 -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 Ifh-OBWkWen2 for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 17:52: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 BDF55120071 for <quic-issues@ietf.org>; Thu,  5 Sep 2019 17:52:11 -0700 (PDT)
Date: Thu, 05 Sep 2019 17:52:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567731130; bh=5WyjgDrW0MPnrbdiw2OuYud5D7hoeG7ZmmK8If94EU0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VgfU4ZMQ7OlJt471rpPOJZRp7ZKR5eh9fAabAmHcO5/SZksMB24e5AeG/j0iUvhnk F7/NhMItSEufV2WijXihAvNVVD8pEXgFOjVjN98KchfSVSEiVkUt/WAR6ZEgtzTL+C pyS2k7HowGs+cQKBt+aJKht48s+OSIp8E0EF5prg=
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/2990/push/4002978568@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2990@github.com>
References: <quicwg/base-drafts/pull/2990@github.com>
Subject: Re: [quicwg/base-drafts] Simplify ChaCha20 interface (#2990)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d71adbaacd58_30f93f971a8cd96c667661"; 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/doKveujj432zM4brFdWoMGnbQ9Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 00:52:13 -0000

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

@martinthomson pushed 1 commit.

b0f00edf9f8ba7139a6b7a2c36edd44112de5482  Simplify more


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2990/files/36609c20e66663a11a678b30f5d0330b11bba62c..b0f00edf9f8ba7139a6b7a2c36edd44112de5482

----==_mimepart_5d71adbaacd58_30f93f971a8cd96c667661
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/b0f00edf9f8ba7139a6b7a2c36edd44112de5482">b0f00ed</a>  Simplify more</li>
</ul>


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

----==_mimepart_5d71adbaacd58_30f93f971a8cd96c667661--


From nobody Thu Sep  5 17: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 58F1D120077 for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 17:53: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 DdDWej8SyFcH for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 17:53:23 -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 CEC32120043 for <quic-issues@ietf.org>; Thu,  5 Sep 2019 17:53:23 -0700 (PDT)
Date: Thu, 05 Sep 2019 17:53:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567731203; bh=A+kA2fVfmBSFzrJNsnk3c05Kqb0TauhcyGqQbDkxORY=; h=Date:From:To:Subject:From; b=QeF9V0fTj91/5tJTAs38xJDkknhDSBdGokS1gYodZ0sfHVEXn/BCOmZtVy0FATCYM qv5sMBy2hnSMLK728kuN9vfsoVF21teKsUV3h1PRG6abq/HHPqg1J6/ijmCTPFltR1 Lx471HnfMpJcTgy29l0+FgSuA66arLUumQOhZ+x0=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d65fd5-2a9f84@github.com>
Subject: [quicwg/base-drafts] 2a9f84: Script updating gh-pages from b0f00edf. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/e3yfcTq6MCMxh46Ui5iVlxuqmGI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 00:53:25 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2a9f841122a47921bc406b7201cc153bc503714b
      https://github.com/quicwg/base-drafts/commit/2a9f841122a47921bc406b7201cc153bc503714b
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

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

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



From nobody Thu Sep  5 17:55: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 A88E5120044 for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 17:55: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 4FjdXwGK23pZ for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 17:55: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 2E68F120043 for <quic-issues@ietf.org>; Thu,  5 Sep 2019 17:55:18 -0700 (PDT)
Date: Thu, 05 Sep 2019 17:55:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567731316; bh=vhftDTejX/8Ener/SwNzY4wYixbzTdExAkBtZXVBPpM=; h=Date:From:To:Subject:From; b=BwY9rUo8qQaNoHdMzairKPEQzTlFgCNENjOQVVxbylIIaBiFRSl7LVIaMZjV5SLcs tFMXSlJkPeqlCBgsK+EAMuHpq0HYJa3x060nU67LrI+FXZfLsjo4fhLr/7xWrHQwCQ 49aOMgi6VWJfxCrTvM4xcmBFcVCxyJSyTDFtlObY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/2a9f84-81ba54@github.com>
Subject: [quicwg/base-drafts] 81ba54: Script updating issues at 2019-09-06T00:55: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/DR5E0913QKmcLPd80GBx3Fm_PcI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 00:55:20 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 81ba545693e14e4ad894f5e9fb01cf40bdc13e7e
      https://github.com/quicwg/base-drafts/commit/81ba545693e14e4ad894f5e9fb01cf40bdc13e7e
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-09-06T00:55:10Z. [ci skip]



From nobody Thu Sep  5 19: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 0F41612011C for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 19:44: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 yh6vWAWzOBxC for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 19:44: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 6E80C120043 for <quic-issues@ietf.org>; Thu,  5 Sep 2019 19:44:25 -0700 (PDT)
Date: Thu, 05 Sep 2019 19:44:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567737864; bh=u18YfhigxD3PFm+9lOyMRmztmzQ8UhyszBJQHoFG/Lg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=L2+lc2tDDufOhdDYx+sFUnHmy2GqhFvlt6ATJw7ubFTPGAKMPO6svqWChen+r4jxJ L0Gz+ddUNTY67ddMs8l2+3sABas2ENzlBr6ecandNO8QhRstIEIcTx/sRz2gzPqTWF +GyFCzg5NURxgPyBsOStgc1dRwBlb4g/sfdsulsQ=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK36SZ7IULZEXFEI5BF3P35IREVBNHHBZ2ZITU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2990/review/284631821@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2990@github.com>
References: <quicwg/base-drafts/pull/2990@github.com>
Subject: Re: [quicwg/base-drafts] Simplify ChaCha20 interface (#2990)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d71c80881da7_148b3f875d2cd96c84970"; 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/8i8GwbXU5eDklDjouF03SLCW5A4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 02:44:27 -0000

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

kazuho approved this pull request.

I like the updated text. It reads good as it gives the practical advice first, then amends that with the formal definition.



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

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

<p>I like the updated text. It reads good as it gives the practical advice first, then amends that with the formal definition.</p>

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


From nobody Thu Sep  5 20: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 3506C12081C for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 20:25: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 FzghgLsjp-pI for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 20:25: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 A04D4120817 for <quic-issues@ietf.org>; Thu,  5 Sep 2019 20:25:49 -0700 (PDT)
Date: Thu, 05 Sep 2019 20:25:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567740348; bh=dkB+GVtBKkK61tyfHkxQa7dG657wj+QJmVmhf3UG8Qo=; h=Date:From:To:Subject:From; b=mq4PwCSu3X+p2lHawc/nbtSYDbYBE5H2T/rBhJbSgRLLUlRs7m/vN4j3iFFG+AUXK 4sxdOVUdv/kY3MvptubGErfkZ4rG6r8iLJ3Gd8KfQiB0c8uoD2Agd8e3DXGGuwkL8h 3+ZtbHCL/RKqPZ2MUtpcTzHtap2j1K5+DUXUvb+0=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/cleanup-sr/000000-d7aa68@github.com>
Subject: [quicwg/base-drafts] d7aa68: Attempt to make the stateless reset text better
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/sEoBt7TYe_9vTvPPJxgjoZum5OY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 03:25:52 -0000

  Branch: refs/heads/cleanup-sr
  Home:   https://github.com/quicwg/base-drafts
  Commit: d7aa68d49dab75df064c2ea5c2b0b25fc78d1ffd
      https://github.com/quicwg/base-drafts/commit/d7aa68d49dab75df064c2ea5c2b0b25fc78d1ffd
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

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

  Log Message:
  -----------
  Attempt to make the stateless reset text better

PR #2927 had a few mistakes in it, and some confusing language.  This
attempts to split out the rules for generating stateless resets (minimum
size is 5 + 16 = 21), and for generating packets that might trigger a
stateless reset (min_cid + 22).



From nobody Thu Sep  5 20:27: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 B065D120817 for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 20:27: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 ReB9E4v30Jh5 for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 20:27: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 095E41208A1 for <quic-issues@ietf.org>; Thu,  5 Sep 2019 20:27:42 -0700 (PDT)
Date: Thu, 05 Sep 2019 20:27:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567740461; bh=G6iui8yoQdVNNgNNWxhwl6vGdePV56Uh+LBODHl4tGA=; h=Date:From:To:Subject:From; b=ContabhaEnzU89erva+VcHWDu0ngCx8QVuK+JRjof9qSkzJSgfIupa/0KC2q3+VoM j3eenh6KEnD4DSa6IIXNVPcC7sCjouVHzjuRRvxoq4O+caqol1ATe4Fc8Qh03Q5iLG Kd0Ywt7LA7WKL14uSRCxjQ20k3EPPgVMOPljMaj8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/81ba54-e1d3d5@github.com>
Subject: [quicwg/base-drafts] e1d3d5: Script updating gh-pages from d7aa68d4. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bf3w-EOrZsmSA1U68oyVnRppYWk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 03:27:45 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: e1d3d5de6523406779a9d0559ad621514af91502
      https://github.com/quicwg/base-drafts/commit/e1d3d5de6523406779a9d0559ad621514af91502
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

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

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



From nobody Thu Sep  5 20:30: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 E4E9A12081C for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 20:30: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 W0HYq7MGEfRo for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 20:30: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 7B585120817 for <quic-issues@ietf.org>; Thu,  5 Sep 2019 20:30:45 -0700 (PDT)
Date: Thu, 05 Sep 2019 20:30:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567740644; bh=8LiZFnWGWK8xqi9U0G4S/N38Qg4SDSRJZUUKhR59xSw=; h=Date:From:To:Subject:From; b=c2dPVauvP70f3h1gDCu+FFh7jZkCNywJd7QJShmAaOFoi8zmQ+0AXGP878Jx6SWQH Z0hAzdwaHXwnnplitcu5RSwi+y9pu6JcEgrZDTVbAij2QHvwwvu9lEepIc8gdJJaJi 5BPw7SK6wWv9pU8qQ1VuJ42QLyfsN3bXogKN+Io4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/cleanup-sr/d7aa68-6048b4@github.com>
Subject: [quicwg/base-drafts] 6048b4: More editorial changes
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Tj6bfWKsqd7TQT8DSlw7nQIB7Z8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 03:30:47 -0000

  Branch: refs/heads/cleanup-sr
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6048b49dc4316683a4e35584d58aabb16719a6ce
      https://github.com/quicwg/base-drafts/commit/6048b49dc4316683a4e35584d58aabb16719a6ce
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

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

  Log Message:
  -----------
  More editorial changes



From nobody Thu Sep  5 20:31: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 146C0120817 for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 20:31:43 -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 R7ua-FONstUh for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 20:31:41 -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 26AFC12004A for <quic-issues@ietf.org>; Thu,  5 Sep 2019 20:31:41 -0700 (PDT)
Date: Thu, 05 Sep 2019 20:31:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567740700; bh=CK3JCmd3/o1MvuEAoPE18AX0fPqOLFfQYPTgqqcOIyc=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=U9pDX0w6OMwGXsl/PZ9j1fhv+Hdu0VM0Sa6gUiPWN6m/Nw2JOB9YMkJBA7vC2sf0l rNnL+KU205/YGVOaAAjM30zzCnthIeQVOUd4bN19/p0kzY+XfdVWkvKiRLVdHRhKWA 8lLpqtUNUXiDs/ZAojdP7UOufNnAR5T91W6Xdieg=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZTJAHIOO54LM7ZQP53P33YXEVBNHHB2NT5NA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3007@github.com>
Subject: [quicwg/base-drafts] Attempt to make the stateless reset text better (#3007)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d71d31bede1b_67793f95b5ecd96825954"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9BjcIfDNv9eI7Ig5Ed-kw2lZAlw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 03:31:43 -0000

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

PR #2927 had a mistake in it, and some very confusing language.  The rules for generating stateless resets was all mixed up in some complementary rules about generating packets that might trigger stateless resets.

This attempts to split out the rules for generating stateless resets (minimum size is 5 + 16 = 21), and for generating packets that might trigger a stateless reset (min_cid + 22).
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Attempt to make the stateless reset text better
  * More editorial changes

-- File Changes --

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

-- Patch Links --

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

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

<p>PR <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="471699783" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2927" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2927/hovercard" href="https://github.com/quicwg/base-drafts/pull/2927">#2927</a> had a mistake in it, and some very confusing language.  The rules for generating stateless resets was all mixed up in some complementary rules about generating packets that might trigger stateless resets.</p>
<p>This attempts to split out the rules for generating stateless resets (minimum size is 5 + 16 = 21), and for generating packets that might trigger a stateless reset (min_cid + 22).</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/3007'>https://github.com/quicwg/base-drafts/pull/3007</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Attempt to make the stateless reset text better</li>
  <li>More editorial changes</li>
</ul>

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

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

----==_mimepart_5d71d31bede1b_67793f95b5ecd96825954--


From nobody Thu Sep  5 20: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 72BA912081C for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 20:32: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 65M85aoANBU9 for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 20:32:05 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 26EEB120817 for <quic-issues@ietf.org>; Thu,  5 Sep 2019 20:32:05 -0700 (PDT)
Date: Thu, 05 Sep 2019 20:32:04 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567740724; bh=B3/8w3KYPUv0TZ1KClC5vvExuO4IJQUa18rNblj/VMk=; h=Date:From:To:Subject:From; b=D9vIK3aEmNcz5PbprV9MIWJjy2CLWfbXRCX5w2GO6r3n7bjTBjZ73yfpULGQzsUJU Hr4YnbVJSfJJ/l/u0JnSAvlD2JxhcDLh4odK6vO59ZBXUxeAW++4vVdprwAE1WQ3o2 zyCEKIhONGUn9J2XHoZ3+vMOiyFZo0vUnOQIcj+U=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/e1d3d5-079f91@github.com>
Subject: [quicwg/base-drafts] 079f91: Script updating gh-pages from 6048b49d. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/nbuC0DTuaP6su3D7D5UslK-BdFI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 03:32:07 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 079f91bb1b626496a8ec03374e753781b87436f4
      https://github.com/quicwg/base-drafts/commit/079f91bb1b626496a8ec03374e753781b87436f4
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M cleanup-sr/draft-ietf-quic-transport.html
    M cleanup-sr/draft-ietf-quic-transport.txt
    M index.html

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



From nobody Thu Sep  5 21:40: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 33B251208A1 for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 21:40:43 -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 Aswh1jayVVQF for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 21:40: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 32D5B120096 for <quic-issues@ietf.org>; Thu,  5 Sep 2019 21:40:41 -0700 (PDT)
Date: Thu, 05 Sep 2019 21:40:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567744840; bh=S71PIHgZAd/DbuXAO6f81+OnlZzRtrsCFdZm0UoNYEc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eREic901bNwj67bJJd1DBIEkbgjZRL+iiqniY8nsoU/2Hl+X6VbfONPSgFNk6pJYI MpSmLhmhm+K7fh0sITDlNk++vyVmCobBF+WSGWFIb7BAnXb7eD5e4sw/BOnyRG4lPS CORQgwoL1GpWvpd4qQqwxDgjtQBJATU1M9N4q3lY=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5BLADCXY2J65HJHD53P4R5REVBMPHAEFNJFI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/commit/b0f00edf9f8ba7139a6b7a2c36edd44112de5482/34973994@github.com>
In-Reply-To: <quicwg/base-drafts/commit/b0f00edf9f8ba7139a6b7a2c36edd44112de5482@github.com>
References: <quicwg/base-drafts/commit/b0f00edf9f8ba7139a6b7a2c36edd44112de5482@github.com>
Subject: Re: [quicwg/base-drafts] Simplify more (b0f00ed)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d71e3481a2c0_77f73fed350cd96c1291ac"; 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/j0bZfL9ls39CTWDwK92iZzJKtqM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 04:40:43 -0000

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

Don't you mean the opposite?

implementation could take a byte sequence in place of a 32-bit integer, in

What happened to the suggest 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/commit/b0f00edf9f8ba7139a6b7a2c36edd44112de5482#commitcomment-34973994
----==_mimepart_5d71e3481a2c0_77f73fed350cd96c1291ac
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Don't you mean the opposite?</p>
<p>implementation could take a byte sequence in place of a 32-bit integer, in</p>
<p>What happened to the suggest 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/commit/b0f00edf9f8ba7139a6b7a2c36edd44112de5482?email_source=notifications&amp;email_token=AFTOJKYV3PPRJ72RPAXSCSLQIHNMRA5CNFSM4IUE4CJKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBBLKJK#commitcomment-34973994">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4VKHTL4W4U4IXO6YDQIHNMRANCNFSM4IUE4CJA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7PPIX4XALFOD6UDOTQIHNMRA5CNFSM4IUE4CJKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBBLKJK.gif" height="1" width="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/b0f00edf9f8ba7139a6b7a2c36edd44112de5482?email_source=notifications\u0026email_token=AFTOJKYV3PPRJ72RPAXSCSLQIHNMRA5CNFSM4IUE4CJKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBBLKJK#commitcomment-34973994",
"url": "https://github.com/quicwg/base-drafts/commit/b0f00edf9f8ba7139a6b7a2c36edd44112de5482?email_source=notifications\u0026email_token=AFTOJKYV3PPRJ72RPAXSCSLQIHNMRA5CNFSM4IUE4CJKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBBLKJK#commitcomment-34973994",
"name": "View Commit"
},
"description": "View this Commit on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d71e3481a2c0_77f73fed350cd96c1291ac--


From nobody Thu Sep  5 21:46: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 C39CC1200B3 for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 21:46: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 HLvW_S1AOocc for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 21:46: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 37020120096 for <quic-issues@ietf.org>; Thu,  5 Sep 2019 21:46:54 -0700 (PDT)
Date: Thu, 05 Sep 2019 21:46:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567745213; bh=pkiViUfjm3iiDRJajVH4Fa5C/pISwwLe+Uy83bgT1Xs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vzSiCtLRB9O4ww0YSPBJxCED7tFbCC2PzClk7DTREAR/ti7BYIt+zXQ4ZjkOUsa0I RjinEFlKkIowZsk0XHwx2SX4wDQXsjYbGGiJRx/7g3rOx8W3VMhc5zkAZ3SgEjyTLL OBj3EGJyfRmJOlgbt1hpc+cHh3RJ4UqdpYSjTWtI=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6VFHQ6FC4SL5AG37N3P4SU3EVBNHHB2NT5NA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3007/c528706518@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3007@github.com>
References: <quicwg/base-drafts/pull/3007@github.com>
Subject: Re: [quicwg/base-drafts] Attempt to make the stateless reset text better (#3007)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d71e4bd71c61_36ff3fb39accd96c489b"; 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/KNVopLOXxT7_I7_Y9_gLyzJ2KWk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 04:46:56 -0000

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

Do we need discussion on the fixed QUIC header bit in the triggering packet and outgoing reset packet?

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

<p>Do we need discussion on the fixed QUIC header bit in the triggering packet and outgoing reset packet?</p>

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


From nobody Thu Sep  5 23:56: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 2D33612002E for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 23:56: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 uGmFgsuOJXnB for <quic-issues@ietfa.amsl.com>; Thu,  5 Sep 2019 23:56: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 53D9D120071 for <quic-issues@ietf.org>; Thu,  5 Sep 2019 23:56:20 -0700 (PDT)
Date: Thu, 05 Sep 2019 23:56:19 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567752979; bh=bv5TxDXQez0PyzjKeooD+MNuplk5SG6ncgeYzJCbkGA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oBvFYEYxj3PRagt5jaqSGkDH2YGTE6m9mslzPyNgo14z0EVtfnx2HtWvBoElSc/Rg ETqKZ5aEbokrb2yCj0TxJ82d5zjf/UfF96m24uoUY2iY4LL85rsMuOEE1YKPovPl3h TNSM/2dCkvYnQIm6iWHYjaaN+FD0PG2oanwZ6H74=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6RVBVNUU7UKGCUYL53P4TYHEVBMPHAEFNNNI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/commit/b0f00edf9f8ba7139a6b7a2c36edd44112de5482/34975082@github.com>
In-Reply-To: <quicwg/base-drafts/commit/b0f00edf9f8ba7139a6b7a2c36edd44112de5482@github.com>
References: <quicwg/base-drafts/commit/b0f00edf9f8ba7139a6b7a2c36edd44112de5482@github.com>
Subject: Re: [quicwg/base-drafts] Simplify more (b0f00ed)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d72031350ae2_e093fb18c2cd968424495"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3_BVs9FotNmNKmx7w2SUqlzlF5c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 06:56:22 -0000

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

I think that this is right.  The starting assumption is that the input is a byte sequence (the first sentence).

The second sentence says that if the ChaCha20 implementation expects a 32-bit integer instead, the bytes are read as a little-endian number.

-- 
You are receiving 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/b0f00edf9f8ba7139a6b7a2c36edd44112de5482#commitcomment-34975082
----==_mimepart_5d72031350ae2_e093fb18c2cd968424495
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I think that this is right.  The starting assumption is that the input is a byte sequence (the first sentence).</p>
<p>The second sentence says that if the ChaCha20 implementation expects a 32-bit integer instead, the bytes are read as a little-endian number.</p>

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


From nobody Fri Sep  6 00:28: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 E762512007C for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 00:28: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 KkkUJvb-GnNA for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 00:28: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 3941212002E for <quic-issues@ietf.org>; Fri,  6 Sep 2019 00:28:07 -0700 (PDT)
Date: Fri, 06 Sep 2019 00:28:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567754886; bh=zG8+DzriIaEcAIskR/JVPkwYReBxG5WmWW7wL6e25Bo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rKvFO/jerT2wOWRy+tYLC0a0erKCeSRaL98WFVL1K/X0mdKTmicga2cwaPpqjhZIO FqacOjvYdb2xAFuQg+o2pX/CYmNX5Dx7OqOG4vlc/gNuKEc5uz4CxFMgg1pjHksW2M ZPX1RKm5eujzrr2Rv5G50QJ9TG5wHsI207eMQn7I=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6K3KYV5BBEIDAEHFF3P5FRNEVBMPHAEFNOW4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/commit/b0f00edf9f8ba7139a6b7a2c36edd44112de5482/34975415@github.com>
In-Reply-To: <quicwg/base-drafts/commit/b0f00edf9f8ba7139a6b7a2c36edd44112de5482@github.com>
References: <quicwg/base-drafts/commit/b0f00edf9f8ba7139a6b7a2c36edd44112de5482@github.com>
Subject: Re: [quicwg/base-drafts] Simplify more (b0f00ed)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d720a867bd5d_68bf3ff2a94cd96c9548fc"; 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/D3FPpXHheYQbwL9_O51J5KnO7Ys>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 07:28:09 -0000

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

I see

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

<p>I see</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/commit/b0f00edf9f8ba7139a6b7a2c36edd44112de5482?email_source=notifications&amp;email_token=AFTOJK4PMNXM4PPO22QXZWLQIIBANA5CNFSM4IUE4CJKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBBLLVX#commitcomment-34975415">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5TFJE2MEL2O6IQTA3QIIBANANCNFSM4IUE4CJA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2RPCSV5X42U4JK6YDQIIBANA5CNFSM4IUE4CJKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBBLLVX.gif" height="1" width="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/b0f00edf9f8ba7139a6b7a2c36edd44112de5482?email_source=notifications\u0026email_token=AFTOJK4PMNXM4PPO22QXZWLQIIBANA5CNFSM4IUE4CJKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBBLLVX#commitcomment-34975415",
"url": "https://github.com/quicwg/base-drafts/commit/b0f00edf9f8ba7139a6b7a2c36edd44112de5482?email_source=notifications\u0026email_token=AFTOJK4PMNXM4PPO22QXZWLQIIBANA5CNFSM4IUE4CJKYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBBLLVX#commitcomment-34975415",
"name": "View Commit"
},
"description": "View this Commit on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d720a867bd5d_68bf3ff2a94cd96c9548fc--


From nobody Fri Sep  6 03:04: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 D2FC91200A4 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 03:04: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 iyrl1fEPGTiD for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 03:04: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 4E4E81200A3 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 03:04:04 -0700 (PDT)
Date: Fri, 06 Sep 2019 03:04:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567764243; bh=Wq4Uapn1olDPMEpsh6QpV8Ms90bNzxuYtY0312rTEKo=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=O0kpg4zygBpIsfU5srE8pq/u+KXtTLTp6inUpgvigB4zMUOrysUgWzIYkmX4fF0h3 PZMyMm1aZ13vDd7hSY0EBbBlujbNRJUaU1Qdm4GfiSoQY2rWSUanQ03COCzGY2nQ4g X9seF65pT0+89+0sZJ2dgklWJJSr5tKk0a1cQnrw=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5P4ZFERBALM3DA6T53P5JYHEVBNHHB2OECMQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3008@github.com>
Subject: [quicwg/base-drafts] The QUIC bit in stateless resets (#3008)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d722f138eb11_4b6b3fc298ecd96c3144ed"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-1esD8xYU3X1kyAgzXbH0f5NkLM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 10:04:06 -0000

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

Do we need discussion on the fixed QUIC header bit in the triggering packet and outgoing reset packet?

_Originally posted by @mikkelfj in https://github.com/quicwg/base-drafts/pull/3007#issuecomment-528706518_

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

<p>Do we need discussion on the fixed QUIC header bit in the triggering packet and outgoing reset packet?</p>
<p><em>Originally posted by <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> in <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="490110312" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3007" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3007/hovercard?comment_id=528706518&amp;comment_type=issue_comment" href="https://github.com/quicwg/base-drafts/pull/3007#issuecomment-528706518">#3007 (comment)</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/3008?email_source=notifications&amp;email_token=AFTOJKYXMIYLZXLKP53WLIDQIITJHA5CNFSM4IUHJCYKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HJYQJSA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZLBQIDOCTLURX3NYLQIITJHANCNFSM4IUHJCYA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6NY6N2KYK3WDASSJ3QIITJHA5CNFSM4IUHJCYKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HJYQJSA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3008?email_source=notifications\u0026email_token=AFTOJKYXMIYLZXLKP53WLIDQIITJHA5CNFSM4IUHJCYKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HJYQJSA",
"url": "https://github.com/quicwg/base-drafts/issues/3008?email_source=notifications\u0026email_token=AFTOJKYXMIYLZXLKP53WLIDQIITJHA5CNFSM4IUHJCYKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HJYQJSA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d722f138eb11_4b6b3fc298ecd96c3144ed--


From nobody Fri Sep  6 03: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 8D47E120058 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 03:10: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 zYvgTa9XDxm6 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 03: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 0DCE31200A3 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 03:10:41 -0700 (PDT)
Date: Fri, 06 Sep 2019 03:10:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567764640; bh=H1VfsvmGOusJtdrxA0BDhEZnj7FxnOL9h+M+2UM0x6s=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RajdJuTgFAcZ8rtzuZaZHSpUFsZvfqV90JTjTcr2E6NaVLATDyVI1YRWWsAjerHRL oB7r8QlvqdhsrlMuVxiFqS+6/198P3kt9DgrpfFZ60pKaWrSKARuokRNu1r03yjfI9 L6KQedwURxiXyNqkOGCFjc0b+oerKILwIrZqQyzk=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7P5XVFTDUMNBXXI2F3P5RSBEVBNHHB2OECMQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3008/528797201@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3008@github.com>
References: <quicwg/base-drafts/issues/3008@github.com>
Subject: Re: [quicwg/base-drafts] The QUIC bit in stateless resets (#3008)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7230a0c2339_6fdb3fc43f0cd968154119"; 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/svrAPDo-NbZFuNMt0SSMr1SicjA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 10:10:43 -0000

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

Maybe I'm misunderstanding the question, but isn't the spec is completely clear on that? A stateless reset has the first bit unset and the second bit set.

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

<p>Maybe I'm misunderstanding the question, but isn't the spec is completely clear on that? A stateless reset has the first bit unset and the second bit set.</p>

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


From nobody Fri Sep  6 04:31: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 52EE6120122 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 04:31: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 PiAWfniWQ-2L for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 04: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 B66E11200DE for <quic-issues@ietf.org>; Fri,  6 Sep 2019 04:31:03 -0700 (PDT)
Date: Fri, 06 Sep 2019 04:31:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567769462; bh=qoA1HirqO+pzkM0GRKZvWdsZIm85tdM98+/nj3y0upo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bD/57COkUXvH/5CUdPrvTdqpreV9BcjWd+AYMv14V2YlddnifyyB79oXoFkJkgsYA l5IpKWmffLXu9l1c614Zh9B1rJaby59Dwc3FVLCxeXl+/KPFX6TeLYrumjpED/5Msr N8B9zxS17Bp0h8I2xYl1fAf5Gg/GbgEaeKOeOvak=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7ZNOQKDLILLIDM5WF3P6CANEVBNHHB2OECMQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3008/528818731@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3008@github.com>
References: <quicwg/base-drafts/issues/3008@github.com>
Subject: Re: [quicwg/base-drafts] The QUIC bit in stateless resets (#3008)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7243766bbca_673d3fa9522cd964779ef"; 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/4MTFU7iSmHb5v2oNTvjWcOG3wrw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 11:31:05 -0000

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

Agreed, I think this is already clear and I don't see any need to change 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/3008#issuecomment-528818731
----==_mimepart_5d7243766bbca_673d3fa9522cd964779ef
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Agreed, I think this is already clear and I don't see any need to change 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/3008?email_source=notifications&amp;email_token=AFTOJK75MT5HJ2MWAAUG2P3QII5PNA5CNFSM4IUHJCYKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6CSEKY#issuecomment-528818731">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ44JQGWH423P2FW3TQII5PNANCNFSM4IUHJCYA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2INK3LHSUBQCN2FZLQII5PNA5CNFSM4IUHJCYKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6CSEKY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3008?email_source=notifications\u0026email_token=AFTOJK75MT5HJ2MWAAUG2P3QII5PNA5CNFSM4IUHJCYKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6CSEKY#issuecomment-528818731",
"url": "https://github.com/quicwg/base-drafts/issues/3008?email_source=notifications\u0026email_token=AFTOJK75MT5HJ2MWAAUG2P3QII5PNA5CNFSM4IUHJCYKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6CSEKY#issuecomment-528818731",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7243766bbca_673d3fa9522cd964779ef--


From nobody Fri Sep  6 06:51: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 9DDEA120B50 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 06:51: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 03v1MWJZd6kv for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 06:51: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 39E2A120B4A for <quic-issues@ietf.org>; Fri,  6 Sep 2019 06:51:30 -0700 (PDT)
Date: Fri, 06 Sep 2019 06:51:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567777889; bh=LSXtJxllUEZHZAdUKStN4R+Ed1KvRF8np+hghcCMzdU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HjLmJVmIiQZf+vQsOd0EQOLTCbj0bilpCjLYBNu8kz15DpQ0EaXMojYoDRZXAjmrU g8FPpx7EZwf4EUOlToXR9ya3bXBGpacdY8h9esHsWKO/C8sgFxUyeJr8HQFzdUC+tM TiWVwmRHCKq7ympan/M5bK01jp9TICSRZMr2p+E4=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5DABZZJJTNMVZTFO53P6SPDEVBNHHB2AD3GU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2997/review/284876894@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2997@github.com>
References: <quicwg/base-drafts/pull/2997@github.com>
Subject: Re: [quicwg/base-drafts] Reserved frame types and the other reserved frame types (#2997)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d72646118f2d_54d33fe26aecd95c288126"; 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/h9VU2e_i2Hc2ckKzXpykhAbv0qo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 13:51:32 -0000

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

ianswett approved this pull request.



> @@ -1377,14 +1378,18 @@ the DUPLICATE_PUSH.
 

Now that you're discussing H2 reserved types in this section, maybe it should be {#frame-reserved}?

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

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

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2997#discussion_r321744381">draft-ietf-quic-http.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1377,14 +1378,18 @@ the DUPLICATE_PUSH.
 
</pre>
<p>Now that you're discussing H2 reserved types in this section, maybe it should be {#frame-reserved}?</p>

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


From nobody Fri Sep  6 08:05: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 AB4361208BC for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:05: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 eGvvA75EixxV for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:05: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 D0807120898 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:05:25 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:05:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567782325; bh=knCHIKuPOx19R61kIPVQRB2ZPztyIlRaI+iutbSJO0o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gXEEWuaOo4b4UdKa5Tfin/omi7kHxSp6+bgrZrUYIwk4+RPJrTpIBjkXtaWZbSL/o Bs5MKOaX0EDq9hwuQ1LLJehy2XVXVJaf6JWcv23PZLihwN7gNcD0NOCb6toIIwS+u0 KZmYuneVr+Yf5B3nX3ziJsExX0Ha09T4lzJ5aE04=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYJYNYJCNTNIRY4H3F3P63EJEVBNHHB2AD3GU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2997/review/284923965@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2997@github.com>
References: <quicwg/base-drafts/pull/2997@github.com>
Subject: Re: [quicwg/base-drafts] Reserved frame types and the other reserved frame types (#2997)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7275b4e833a_5f483faaa9ccd95c21471c"; 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/dEXfMK4f8kxol_dlRWnwVFs1a8w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:05:28 -0000

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

MikeBishop commented on this pull request.



> @@ -1377,14 +1378,18 @@ the DUPLICATE_PUSH.
 

Perhaps, but those anchors don't appear in the final doc, so I care less.  Still, there are only three references, so it's a minor 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/2997#discussion_r321779015
----==_mimepart_5d7275b4e833a_5f483faaa9ccd95c21471c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2997#discussion_r321779015">draft-ietf-quic-http.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1377,14 +1378,18 @@ the DUPLICATE_PUSH.
 
</pre>
<p>Perhaps, but those anchors don't appear in the final doc, so I care less.  Still, there are only three references, so it's a minor 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/2997?email_source=notifications&amp;email_token=AFTOJK42AJK6TOKBHZ7OIPTQIJWTJA5CNFSM4IRRDCUKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCD5ZQPI#discussion_r321779015">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6T4T3TADGFPO55L4LQIJWTJANCNFSM4IRRDCUA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6YRH5HOOMBYLLXX3LQIJWTJA5CNFSM4IRRDCUKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCD5ZQPI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2997?email_source=notifications\u0026email_token=AFTOJK42AJK6TOKBHZ7OIPTQIJWTJA5CNFSM4IRRDCUKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCD5ZQPI#discussion_r321779015",
"url": "https://github.com/quicwg/base-drafts/pull/2997?email_source=notifications\u0026email_token=AFTOJK42AJK6TOKBHZ7OIPTQIJWTJA5CNFSM4IRRDCUKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCD5ZQPI#discussion_r321779015",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7275b4e833a_5f483faaa9ccd95c21471c--


From nobody Fri Sep  6 08:05: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 6B7EF120898 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:05: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 PmUbnO4a432V for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:05:38 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9321A1200C7 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:05:38 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:05:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567782337; bh=j8Tcu2MF5rg4oRaQZuZDKkrOeI1t5TlvUVQW+YI/MBw=; h=Date:From:To:Subject:From; b=oh92LTb/Yoc5gwtXv/mI+w0xME6fMOaplvmTGQcRIIDx+52rwPN5Kph9ejwFS28QY i2tgRwUaFJC/W+UE6Rn9z3MvOkWb7/Isy7TiGlowG9BQSzCYqWYXmikNHCN8TNknDP UktID7rg37mmxyTUE7k/P+gG96q/Ut+CY5PKfugg=
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/http/reserved_frames/7e5dce-6235e8@github.com>
Subject: [quicwg/base-drafts] 6235e8: Reserved anchor
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/uG-5Qk-sEayYCmGLa1cfBDNi2lI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:05:42 -0000

  Branch: refs/heads/http/reserved_frames
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6235e8cb317234556f41ad43f78b3e0323d11de0
      https://github.com/quicwg/base-drafts/commit/6235e8cb317234556f41ad43f78b3e0323d11de0
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

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

  Log Message:
  -----------
  Reserved anchor



From nobody Fri Sep  6 08: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 B521C120898 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:05: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 PzeDE3F9D5N1 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:05:47 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 404E41200C7 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:05:47 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:05:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567782346; bh=xiErxyCoqi3mgEZW5DGvsDkALNrIw2GgfftQtz6yGJU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uOvgHTzD/9rG5mLFJ/1MPmcTyj1sZuDoKRy1t/HeF6yvs+F2KoKYS/xa2mfuKnd5s rPJGmWYZlDEBqJx+2ssq/leINBb9J9qLS6iqhua1oYIz1TsS5fvHrcuaS18++JGfAe 7CpbfD4r7UHT7I0ODHHA/+bbWmk8x33DUmpOntMU=
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/2997/push/4005488218@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2997@github.com>
References: <quicwg/base-drafts/pull/2997@github.com>
Subject: Re: [quicwg/base-drafts] Reserved frame types and the other reserved frame types (#2997)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7275ca8d844_24613fd4df0cd96c3567c8"; 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/D3ktS_xLyIT5dB-Y3OuGowRc9ks>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:05:49 -0000

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

@MikeBishop pushed 1 commit.

6235e8cb317234556f41ad43f78b3e0323d11de0  Reserved anchor


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2997/files/7e5dce1ec36f6987f730b97f438055713928e9c1..6235e8cb317234556f41ad43f78b3e0323d11de0

----==_mimepart_5d7275ca8d844_24613fd4df0cd96c3567c8
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/6235e8cb317234556f41ad43f78b3e0323d11de0">6235e8c</a>  Reserved anchor</li>
</ul>


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

----==_mimepart_5d7275ca8d844_24613fd4df0cd96c3567c8--


From nobody Fri Sep  6 08: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 E7E1E120C86 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:06: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 FtfhlPG1638a for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:06:31 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8CFAB120CAB for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:06:31 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:06:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567782390; bh=RGn0CzfMsTeu73C0ORhdv/aIBnMcrz7gS8vEKpIDZKo=; h=Date:From:To:Subject:From; b=aXRqIBA5xBnvM/3BRnIgvCLvvp7JdPSTqQq8H7PXy2BB4glKJ2YCRwM5tepq26P5F auvi2bRP6Z/faUbs+1rM/5UjJEvoL/Xod/jjKeOtevptNZGw7NjKDKFtR+Qin4WFby qgxVUXgFE8eAiEOM4TySYv/Xr22+8Y4mzPw67++E=
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/http/reserved_frames/6235e8-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/ElK-3WaZ2eBBODEgG5Rmp_cm-jE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:06:33 -0000

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


From nobody Fri Sep  6 08:06: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 8BC70120CAE for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:06:34 -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 3Pz2P-C4Q7vq for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:06: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 536DE120C9E for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:06:31 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:06:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567782390; bh=8HbdZmCwpMiKb7U4udibkJbZynhH8r8uXAYR+NWii9c=; h=Date:From:To:Subject:From; b=KmVLYh/QMJMsVMgOBUOE/LnR/HVnCAPVISkuIc3Pixecn+5yRbILFtCEGJT8MfNJw uPxmAv0K4uXC/JSa0OICl0TjZLDPZHhfE74DvfbJBAC7kpFM6VpjGuq+3eS1NmhpIX wSTVb7XNNvYlZgR9DeEwlVZNadZejHhwjhUv+J5M=
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/a51a41-10497d@github.com>
Subject: [quicwg/base-drafts] 10497d: Reserved frame types and the other reserved frame ...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Mz6wFbir76alo2nVJBzPLprLFkE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:06:35 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 10497d3d7834bfdecce7725714eb1a1c1299e4b0
      https://github.com/quicwg/base-drafts/commit/10497d3d7834bfdecce7725714eb1a1c1299e4b0
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

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

  Log Message:
  -----------
  Reserved frame types and the other reserved frame types (#2997)

* Additional clarity on reserved frame types and the other reserved frame types

* Reserved anchor



From nobody Fri Sep  6 08:06: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 C55E5120C9E for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08: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 xee95AHdwbzx for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08: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 324A8120C86 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:06:40 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:06:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567782399; bh=+TDignMF3WNKOaE8qEg2IhzQQ44GcmiMwmr4KLO3izU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tTD8vopsIgfivvcEfoxSnefcRW97gKjlMgTwA9GQd7BS08RdxT6bhuIgHa/FaruFP ntBDrgnJwYALQXGeV+LEBpkYwmu4mbPIk+GrHNnbjt4LA5eG1zTUfEkz6zcHyLNMlw du1uS62rfJtYABYF0xhcUvcni03EwGjzNfFD5EL0=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYNAUVOYXIXNDW5THF3P63I7EVBNHHBU2NI6A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2692/issue_event/2614677185@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2692@github.com>
References: <quicwg/base-drafts/issues/2692@github.com>
Subject: Re: [quicwg/base-drafts] http3: frame table should include reserved frame types (#2692)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7275ff6ea31_7cf23fb4446cd968233368"; 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/hDzerTllefm6K5doRlxwJ7U-Yjg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:06:42 -0000

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

Closed #2692 via #2997.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/2692#event-2614677185
----==_mimepart_5d7275ff6ea31_7cf23fb4446cd968233368
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="443132144" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2692" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2692/hovercard" href="https://github.com/quicwg/base-drafts/issues/2692">#2692</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="486570805" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2997" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2997/hovercard" href="https://github.com/quicwg/base-drafts/pull/2997">#2997</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/2692?email_source=notifications&amp;email_token=AFTOJK6YWAJ5CYBGHZEKVMDQIJWX7A5CNFSM4HMK55DKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTPMM5QI#event-2614677185">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK57A7NDEVIPJU4TJV3QIJWX7ANCNFSM4HMK55DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5ICAD3X77ZPMIYWIDQIJWX7A5CNFSM4HMK55DKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTPMM5QI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/2692?email_source=notifications\u0026email_token=AFTOJK6YWAJ5CYBGHZEKVMDQIJWX7A5CNFSM4HMK55DKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTPMM5QI#event-2614677185",
"url": "https://github.com/quicwg/base-drafts/issues/2692?email_source=notifications\u0026email_token=AFTOJK6YWAJ5CYBGHZEKVMDQIJWX7A5CNFSM4HMK55DKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTPMM5QI#event-2614677185",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7275ff6ea31_7cf23fb4446cd968233368--


From nobody Fri Sep  6 08:06: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 DE6C8120C9E for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:06: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 qfAI9kMEbL_D for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:06: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 96630120C95 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:06:40 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:06:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567782399; bh=Llnfzoy5RLoQH5mATLyrb5pm6VRfky8mqz1BAQ7gnqE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EsQwrs6Pb0Gphy7t3zhYW7pL/Ow/XOTI7RRUFNq+f89an5TyX5UjkgCVW0X9x48NK KwVETDxjxpaDaIV32FEiAoVbKZJDl/2NywIq01lpgFQpIh2rFKldv1g4m97nEDpLwO y2GXaVnRZrAAL9BUw2IyAW1dpzGY1UEBamzAEtr0=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4OQEH3TYL6RP6IED53P63I7EVBNHHB2AD3GU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2997/issue_event/2614677179@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2997@github.com>
References: <quicwg/base-drafts/pull/2997@github.com>
Subject: Re: [quicwg/base-drafts] Reserved frame types and the other reserved frame types (#2997)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7275ffe5cd4_74153fdd3eecd96016014c"; 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/aKGKyPSwkEhPjsgs-_wszm3mAvY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:06:43 -0000

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

Merged #2997 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/2997#event-2614677179
----==_mimepart_5d7275ffe5cd4_74153fdd3eecd96016014c
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="486570805" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2997" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2997/hovercard" href="https://github.com/quicwg/base-drafts/pull/2997">#2997</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/2997?email_source=notifications&amp;email_token=AFTOJKYLXW6YEELHBTIZCCTQIJWX7A5CNFSM4IRRDCUKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTPMM5OY#event-2614677179">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZASUZSPDI3QMIY5Q3QIJWX7ANCNFSM4IRRDCUA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZKLCUODWAYVYIUYQTQIJWX7A5CNFSM4IRRDCUKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTPMM5OY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2997?email_source=notifications\u0026email_token=AFTOJKYLXW6YEELHBTIZCCTQIJWX7A5CNFSM4IRRDCUKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTPMM5OY#event-2614677179",
"url": "https://github.com/quicwg/base-drafts/pull/2997?email_source=notifications\u0026email_token=AFTOJKYLXW6YEELHBTIZCCTQIJWX7A5CNFSM4IRRDCUKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTPMM5OY#event-2614677179",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7275ffe5cd4_74153fdd3eecd96016014c--


From nobody Fri Sep  6 08:07: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 9A51D120CAD for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:06: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 XTF0xTmjMYay for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:06: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 D6DB2120C86 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:06:41 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:06:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567782401; bh=D2beLB83aIKMrUQYyl7c2YUAYOH914ZzxH05UcBCfoQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=sblIHtFPt0jOh1hxPVhpEfciSm3mXd2eSIh3jfZ4o+tVNOqMBl2dDXwEAwYiFHuVS XtXkFfByBw6+9iLSPOrOqoClbiznF9l2gzFCp2r/hr9zu4OAeT9xjvF3AEtcxR2eJf ShSAW+iC/w0P0tZYjWm5X6cULHy52QeROBFgUPXA=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK47N3XJWGODLS33S7V3P63JDEVBNHHBU2NSLQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2693/issue_event/2614677193@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2693@github.com>
References: <quicwg/base-drafts/issues/2693@github.com>
Subject: Re: [quicwg/base-drafts] http3: Are reserved and non-core frames allowed before SETTINGS? (#2693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d727601319ff_3b213fb022ccd960204725"; 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/uGL_ZEJy-nSuzqJU3-KYKQBhNd0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:06:44 -0000

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

Closed #2693 via #2997.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/2693#event-2614677193
----==_mimepart_5d727601319ff_3b213fb022ccd960204725
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="443134556" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2693" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2693/hovercard" href="https://github.com/quicwg/base-drafts/issues/2693">#2693</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="486570805" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2997" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2997/hovercard" href="https://github.com/quicwg/base-drafts/pull/2997">#2997</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/2693?email_source=notifications&amp;email_token=AFTOJK6HDTAEPDKJOS7GB73QIJWYDA5CNFSM4HMK7OB2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTPMM5SI#event-2614677193">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK47CBX5QDTFA7CICETQIJWYDANCNFSM4HMK7OBQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZELF64GYNQLQEJIADQIJWYDA5CNFSM4HMK7OB2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTPMM5SI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/2693?email_source=notifications\u0026email_token=AFTOJK6HDTAEPDKJOS7GB73QIJWYDA5CNFSM4HMK7OB2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTPMM5SI#event-2614677193",
"url": "https://github.com/quicwg/base-drafts/issues/2693?email_source=notifications\u0026email_token=AFTOJK6HDTAEPDKJOS7GB73QIJWYDA5CNFSM4HMK7OB2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTPMM5SI#event-2614677193",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d727601319ff_3b213fb022ccd960204725--


From nobody Fri Sep  6 08: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 77B34120CD0 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:07:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 u0gSsndLbCF5 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:07: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 06167120CF2 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:07:49 -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 548EE1C2E79 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:07:48 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:07:48 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/079f91-47fa26@github.com>
Subject: [quicwg/base-drafts] 47fa26: Script updating gh-pages from 10497d3d. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/M42N52UuhRc9svhYgzZEXewdwyE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:07:50 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 47fa26fab722b7ea043692bf1c522a9b4c724e7c
      https://github.com/quicwg/base-drafts/commit/47fa26fab722b7ea043692bf1c522a9b4c724e7c
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-06 (Fri, 06 Sep 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 10497d3d. [ci skip]



From nobody Fri Sep  6 08:09: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 003E7120CB6 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:09: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 EviEzj2wk72D for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:09:55 -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 65733120C9C for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:09:55 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:09:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567782594; bh=iuc4qlIvdLW8PZ2NeVFjp7+9Z/hQaUKA8Qo+fhFPEdw=; h=Date:From:To:Subject:From; b=ze2vYw73hf8qQi3uOEXG/nztsowg2IbEAmjZCQ2zdayxtQx/EVB9yOJhAT7GAkGhX I7WMWCNKN7VpHhe5kRvit2sRfQ2SZJx4pgePPP/qXQ51YOm5utqDSreuY1KJp1Zxas jw+qx+7gEKsaa6bKkPPCukjtn7TCMknGQJ+SCjow=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/47fa26-4d10b2@github.com>
Subject: [quicwg/base-drafts] 4d10b2: Script updating issues at 2019-09-06T15:09: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/OENJ6gsHqVSIBDYr7oyD3xyU3sc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:09:57 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4d10b25391c0cca027f4ba38466a0c549f3255e1
      https://github.com/quicwg/base-drafts/commit/4d10b25391c0cca027f4ba38466a0c549f3255e1
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-09-06T15:09:47Z. [ci skip]



From nobody Fri Sep  6 08:26: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 67BCF120D36 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:25: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 r8QkMjx3k6qG for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:25:56 -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 6B3B4120D44 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:25:52 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:25:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567783551; bh=0zwf+V7dnMY4n/RWw/L48S7pe7PW7Vv7QJWa0PLnsis=; h=Date:From:To:Subject:From; b=YQY+gGGiiIOecjfqliHjqmwyo/Bd/DX4EFXQVq5abot4nQ0f8xN4lIM5ufryIiCio OrH0KYg7uNLXHzE8Xs99APd45NsNnGaYVracR3ZTrIVZMvlT1HzVF9A7EzfViGaoQh 4JMX1l8897QHWmm/UZPnHgSHfn/mXz7JmgrSBVO4=
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/circle_caching/000000-2d7ddf@github.com>
Subject: [quicwg/base-drafts] 2d7ddf: Cache git repo between Circle runs
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zMmqurugH8iIjAw_be9kSe8zl2U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:26:02 -0000

  Branch: refs/heads/circle_caching
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2d7ddf096ddf55f49afe495e9e6b88db97724577
      https://github.com/quicwg/base-drafts/commit/2d7ddf096ddf55f49afe495e9e6b88db97724577
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M .circleci/config.yml

  Log Message:
  -----------
  Cache git repo between Circle runs



From nobody Fri Sep  6 08: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 4EFA0120D53 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08: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, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xasB__DNkBP0 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:26: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 DF373120D29 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:26:55 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:26:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567783614; bh=3cT0C2VgZgneKryRi16p2Xh2vrCiZJKaeFoJgojCJJE=; h=Date:From:To:Subject:From; b=QNAMPH9/wl6DvNlbqBi5JsrLJ6ec2aOtn/uvD0jMZ+vU4CBS8yX2mN65OXMqP8onS u2YeAMqerwB440NiixCSrWvSVuzXggTYm9fQoxyz2sZJtgJRnxIEgzGXwRJyFTtv7t 5Xx+IMk9yIm6w+LX2tC2XC5GR/4rqpy454RyOhns=
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/circle_caching/2d7ddf-c10400@github.com>
Subject: [quicwg/base-drafts] c10400: Cache git repo between Circle runs
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-WyFlZ1n6LHK7_YE-M89HZGII9Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:27:00 -0000

  Branch: refs/heads/circle_caching
  Home:   https://github.com/quicwg/base-drafts
  Commit: c10400b911308c697e380171477e52d2391759fe
      https://github.com/quicwg/base-drafts/commit/c10400b911308c697e380171477e52d2391759fe
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M .circleci/config.yml

  Log Message:
  -----------
  Cache git repo between Circle runs



From nobody Fri Sep  6 08:28: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 E87A0120D23 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:28:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 J_xKE3VqZXUU for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:28: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 4DE3C120D1B for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:28: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 E115D2600B6 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:28:37 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:28:37 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/4d10b2-3947ed@github.com>
Subject: [quicwg/base-drafts] 3947ed: Script updating gh-pages from c10400b9. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5YuKIDDl6oDiLjf5XC_9iPoDnsw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:28:40 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3947ed0d7c66e606f878e681350584675d973475
      https://github.com/quicwg/base-drafts/commit/3947ed0d7c66e606f878e681350584675d973475
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

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

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



From nobody Fri Sep  6 08:29: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 C0FA8120D24 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:29: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 Y7n4JdwvOSS1 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:29:30 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 01EC7120D2B for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:29:29 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:29:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567783768; bh=Au6FoxL00rOZDUksVOAaRYmNiJX9KQHsTEmlcFN3HHA=; h=Date:From:To:Subject:From; b=tRDwxijrXvo6aISezxRjhsoOUG+1cg8+6baqrogCWFMt1uNJaXLR+vMmilSEJqHiC MOtDuGVpHo9L2ICurr6DEesP9yC/IzGIVxQxAeUo33oTt8F0JoRpZRJaUc/1thVcbi YM8qf15xWBTyr0IzcazBxfsKWkgZCrPE92WWUo7U=
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/circle_caching/c10400-0e88c7@github.com>
Subject: [quicwg/base-drafts] 0e88c7: Cache git repo between Circle runs
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7tSw1h-hJQAa0MN-gKISubck9Ks>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:29:33 -0000

  Branch: refs/heads/circle_caching
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0e88c71d058a7c4ae2f81f6f58419c55068d1e43
      https://github.com/quicwg/base-drafts/commit/0e88c71d058a7c4ae2f81f6f58419c55068d1e43
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M .circleci/config.yml

  Log Message:
  -----------
  Cache git repo between Circle runs



From nobody Fri Sep  6 08:31: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 C7E47120D53 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:31:00 -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 Z5CjbZDrXcBl for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:30:59 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2765F120D2B for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:30:59 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:30:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567783857; bh=oBkcLY//OHRbMRwr0VRgz6vEMZrObiV/efB+RWDowYk=; h=Date:From:To:Subject:From; b=IpGfbJurm+d1pPcABHFGdyx2CazV2wFqaZlhA8PUzwLTBgVw/UVzCl3HWkAOLJJwg ZMzqAj2AO6pXFCY6R/bHe13IVsujZPG5CB3Ja1BnSFpwe8zEYHk3C3719slIkEwjkL ClzVi6Q3LAJQf3NR7dq4y9/JW8pFCtBXSqmJYf3g=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/3947ed-7c8699@github.com>
Subject: [quicwg/base-drafts] 7c8699: Script updating gh-pages from 0e88c71d. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OwLn53Qg0yaXY0fiJTAA3WtMvTQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:31:01 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7c8699fe589c74a9873527d5fef9f48b8b5f0334
      https://github.com/quicwg/base-drafts/commit/7c8699fe589c74a9873527d5fef9f48b8b5f0334
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M index.html

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



From nobody Fri Sep  6 08: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 A5336120CF2 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:33: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 EoFvdQmJYADj for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:33: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 1846E120CD0 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:33:40 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:33:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567784019; bh=chYIUzMbaXemPuJhk1aVpeGdomjnP0HRfMsv9whxDg0=; h=Date:From:To:Subject:From; b=BcyLzRHTwfw/1zjYUUKmNbJrEFUisJ7ly+5fBr1pe6zWvLE6D7cVcaxQqto3cp0mR VC3atuQ/wR1IPCXZR/mQLD6cKM/ymUtzhenUGmtVonPBs6NGtq/6rhu1LPnb1ByzCr CYy6PTd6UIacZVHUoJLwCY/D5g3VkV++mfKfu7J8=
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/circle_caching/0e88c7-e9cc8c@github.com>
Subject: [quicwg/base-drafts] e9cc8c: Cache git repo between Circle runs
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9J6b21XV2GxZw363ZU4qR458Jbo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:33:42 -0000

  Branch: refs/heads/circle_caching
  Home:   https://github.com/quicwg/base-drafts
  Commit: e9cc8c520d52d4eceec91918b1af145f87b02305
      https://github.com/quicwg/base-drafts/commit/e9cc8c520d52d4eceec91918b1af145f87b02305
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M .circleci/config.yml

  Log Message:
  -----------
  Cache git repo between Circle runs



From nobody Fri Sep  6 08:35: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 DC0C9120CF1 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:35: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 bDqefCcK4nki for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:35: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 247A6120CD0 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:35:14 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:35:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567784113; bh=a+zDlehc5YfhrbohSOHYF47UYvemvze8/zfuHaDEgPg=; h=Date:From:To:Subject:From; b=Hmy3Ebl9PANK9SvFM7ULd8fHPoZXwgm56XBcjmXv9jukjRokMkXlDcW1bS1JMRFbm dwsM2qql4fY3w0Igb4zxSilWDmaOk06ClS61sXQ3WS2vh3Hh1hhXEtBWaytK6xgC4i QRppsokIK+ER1BFEu7fC8maFWgsQWb3Yc8VwCxyQ=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/7c8699-dc082a@github.com>
Subject: [quicwg/base-drafts] dc082a: Script updating gh-pages from e9cc8c52. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/DaqbmlnXznXj2eU6ub7YqohSvq4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:35:16 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: dc082a48b293ba0ed1adea42da2e62a5513df0ed
      https://github.com/quicwg/base-drafts/commit/dc082a48b293ba0ed1adea42da2e62a5513df0ed
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M index.html

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



From nobody Fri Sep  6 08:35: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 785A7120CF2 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:35:44 -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 5ZwL5MB6SVLL for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:35:43 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DF7F1120CD0 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:35:42 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:35:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567784142; bh=MEftV9Nvh8oaacWvioDcifW3THAFumSqyJniUe5GOTg=; h=Date:From:To:Subject:From; b=vgPfUH4pazMxgRqy5WjprxOxDD64CL2rQinn6oV8JQDZvfcxURmwvobBv1Ee8i1mp 0O9eIdj6pqRWp/bSK5oCyYSLCumF+f5Y5NTKvOQBTcVP11yHbY1+lBclj2X6DXmIMi GN5GuFQF5/iv6Wyx2nC0Ly3Co18kIxyBqZOisoeE=
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/circle_caching/e9cc8c-a7d7f9@github.com>
Subject: [quicwg/base-drafts] a7d7f9: Cache git repo between Circle runs
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bDFdeYDYk6fSYncv0yO8_hUyPOs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:35:45 -0000

  Branch: refs/heads/circle_caching
  Home:   https://github.com/quicwg/base-drafts
  Commit: a7d7f9d96c84ef8fe85e9bae21665f240cb38507
      https://github.com/quicwg/base-drafts/commit/a7d7f9d96c84ef8fe85e9bae21665f240cb38507
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M .circleci/config.yml

  Log Message:
  -----------
  Cache git repo between Circle runs



From nobody Fri Sep  6 08:36: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 74FD6120CF1 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:36:32 -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 dFG6tZ07fdnh for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:36: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 0EB85120CD0 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:36:31 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:36:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567784190; bh=TpWUdUC48GTurO2VBxkbc2TJ5IyHu+TokiugFDD0gYU=; h=Date:From:To:Subject:From; b=wvK5icogp+1NHTSVNZYanRyuQYYNbtHO/lT7E+//hg53bNIaTQ9sQi/Sa6svOOwFi a4XwQLe7XWZ5RZtBsWHbjNz8s4aiWREPNbJpWk8+yIk3T/JkLkFFhH8noMGAGvCcNj JHOEBLN5UaE+6BnLCxcj1JKKnbUwPTeNJgM09DSQ=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/dc082a-38ee9a@github.com>
Subject: [quicwg/base-drafts] 38ee9a: Script updating gh-pages from a7d7f9d9. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fDnAI_7BJsW5QI-cXIoXUQw1mUk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:36:32 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 38ee9ae4616c81253a52a56c9d9b33af781f9a3d
      https://github.com/quicwg/base-drafts/commit/38ee9ae4616c81253a52a56c9d9b33af781f9a3d
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M index.html

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



From nobody Fri Sep  6 08:41: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 16D4612010E for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:41:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11GfjO5O5vQ6 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:41:00 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 94A16120091 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:41:00 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 82746961BA4 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:40:59 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:40:59 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/circle_caching/a7d7f9-0d2e86@github.com>
Subject: [quicwg/base-drafts] 0d2e86: Cache draft references too
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jtTNsIInpJGww5ITdIwYeMYw7-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: Fri, 06 Sep 2019 15:41:02 -0000

  Branch: refs/heads/circle_caching
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0d2e8652ccf05d019dd6783103d882a362b7c41a
      https://github.com/quicwg/base-drafts/commit/0d2e8652ccf05d019dd6783103d882a362b7c41a
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M .circleci/config.yml

  Log Message:
  -----------
  Cache draft references too



From nobody Fri Sep  6 08:41: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 CEA9512010E for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:41: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 NdLlFf0CvR6K for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:41:49 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 50106120091 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:41:49 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:41:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567784508; bh=VcrizOGz1Q/wXdj16mNkXZUzgXexkYogBfu6rnLYpQw=; h=Date:From:To:Subject:From; b=nU/UOSacLUCBtwewTj3tMghJEB/BP8T9fqSYKoHDQJSKQpssS2CgIho8DQ3aF7UJh iQmfEz8vs4iIp16VS9GkLv4BRXRKHywP/9TZ+jP5iwUzc2w6w2nx5QoOHjnKhuf9A2 ZQe5+cIgveaAxsQrUhWwdFJG5gSjV7bhhZ/aa0vg=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/38ee9a-fed51a@github.com>
Subject: [quicwg/base-drafts] fed51a: Script updating gh-pages from 0d2e8652. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7Jr8jBIXLgML5OnqKGeWl8jS68g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:41:51 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: fed51aeded722ea23836cc0e31462fed83cb8646
      https://github.com/quicwg/base-drafts/commit/fed51aeded722ea23836cc0e31462fed83cb8646
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M index.html

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



From nobody Fri Sep  6 08: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 26AAB120091 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:42: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 sj0ltcXtgnZg for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:42:29 -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 84DC612010E for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:42:29 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:42:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567784549; bh=cOFAFwtuhMkrHx1VfNPojU1nmoD2k6bKTomX1ws92Xo=; h=Date:From:To:Subject:From; b=A6tztJyEt8GlZA8m6019mTn78MfIjyDVPpfsazSbTrbLyA8kEhKsVjHHVGTmP5b02 5G6Qo70d7TbRJycslTVvGISp2xVo1CpzcA8PpLO99b2kCb1HwF4xYm9/8bb8CAQIOW kRVXX1GJjeQY4meEwLSDfZ4rBKZXut1pjOHRFvpw=
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/circle_caching/0d2e86-987b8c@github.com>
Subject: [quicwg/base-drafts] 987b8c: Cache draft references too
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/69GVwntghkK0dZNqcbr9q3pHYWk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:42:31 -0000

  Branch: refs/heads/circle_caching
  Home:   https://github.com/quicwg/base-drafts
  Commit: 987b8c441121ad86e5b3789964d098468588dda4
      https://github.com/quicwg/base-drafts/commit/987b8c441121ad86e5b3789964d098468588dda4
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M .circleci/config.yml

  Log Message:
  -----------
  Cache draft references too



From nobody Fri Sep  6 08:43: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 4DDBE1200DB for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:43: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 qvyU2wHUkmm3 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:43:28 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EB8F5120091 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:43:27 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:43:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567784607; bh=SJxEU/TQV1xAUG6dWHKyLuQRpQo1qVdPkVFiLwqD5bI=; h=Date:From:To:Subject:From; b=TvY6H59sWFJk8i1ZITxycW1Tw/Ji0VUlWlolAcEbxnY3xLsDlzRmYmNASKlFfS6BT hCfVmD7ZgsUJCuI+s1zRLzVLvsgCfGhLtIibbBEdjasLKcq+KFDHJV8J359hXisDMw N8KIpMJsPcjgIEw2imgmpDKOjieOo/BlxaCvgavM=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/fed51a-f6df2e@github.com>
Subject: [quicwg/base-drafts] f6df2e: Script updating gh-pages from 987b8c44. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/0B0EmZLq2jJg4w3K_V61pZIn5tU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:43:29 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f6df2e1693bda72297aa5a9139d575e91a7727e8
      https://github.com/quicwg/base-drafts/commit/f6df2e1693bda72297aa5a9139d575e91a7727e8
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M index.html

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



From nobody Fri Sep  6 08:45: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 451301200DB for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:45: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, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7CSQG-3zqw1I for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:45:49 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 53514120091 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:45:49 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:45:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567784748; bh=8N6pj4YhFmY+EJM6mbPTXn6uKAo7ALBk7WxjEKSa6So=; h=Date:From:To:Subject:From; b=HzoF7/i33VPxlqsrXrbKOv/4tdKTPeIcbIH8TgZ2rzuHkJZ/nhKcojfowD7Mi0ps3 IWGMnw5vVdAjxzubsdpsOXqb3pNjuzQ2iSLXRS/NhXRlbVqHyVPAyQRchD7jsxmJx7 v+uHufgi93X8QBa0lL3NYNXBA8EuGrtg4z/HnPcE=
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/circle_caching/987b8c-210738@github.com>
Subject: [quicwg/base-drafts] 210738: Cache draft references too
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kuvfgAzztSnPo4q-seC-VR6g3zA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:45:51 -0000

  Branch: refs/heads/circle_caching
  Home:   https://github.com/quicwg/base-drafts
  Commit: 210738c88867bdec3ac70b88e3b98d678cf9c79c
      https://github.com/quicwg/base-drafts/commit/210738c88867bdec3ac70b88e3b98d678cf9c79c
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M .circleci/config.yml

  Log Message:
  -----------
  Cache draft references too



From nobody Fri Sep  6 08:46: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 4417E1200DB for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:46: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 HpDfWcZQ2vAs for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:46: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 BEDC2120091 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:46:36 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:46:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567784795; bh=nggCz6Fg/to3xNhNvHISp/Uc+oFp0OORYGkQWDATuDM=; h=Date:From:To:Subject:From; b=sOXF4QHoqHuFsCu3xoyQyUmjXLrz6Pu/GDCUghL3hKoAPHfu4xmqlmgl83Wx+0T7t q4qpiPCBxwEihgodRMe21qaD+TKPY731hLYGwKSM+zN1FMnineIphF4z7eHlH1h205 I0iJsbIg2dsTYWrMM+Cllx/0bw/JrB/wdx48Y7Ls=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f6df2e-edc874@github.com>
Subject: [quicwg/base-drafts] edc874: Script updating gh-pages from 210738c8. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/n_n8Fk43dm7G8JfXxmSbpKswdJw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:46:38 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: edc874d92aec62398a312ec002c26a0aeb5af61b
      https://github.com/quicwg/base-drafts/commit/edc874d92aec62398a312ec002c26a0aeb5af61b
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M index.html

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



From nobody Fri Sep  6 08:47: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 9D6C312010E for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:47: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 wWWfxchWpQVM for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:47: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 C4B7B12085A for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:47:08 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:47:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567784827; bh=N7qFIXjje54ERbhLs+bOAirW9e+109T2M2HiJYUQd04=; h=Date:From:To:Subject:From; b=F+ymWpMSpEyXy8Zf/+UbgcznQ7JLExNGcvs/HDmM8HTdQPy14B7pUkq+JqUpqcHdg Lb5y07mttwrJ/+uAgweBQSWfqQSym9zAtJNOANtIkpbB0v54ecXK6r++CDX/obgrjx TCO6mTHZtOL6yrs72UOygWZkota5lOTR4+YpOwbk=
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/circle_caching/210738-b8e45f@github.com>
Subject: [quicwg/base-drafts] b8e45f: Cache draft references too
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KzfklsodYOYsqMm-pLFI5iXaamw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:47:19 -0000

  Branch: refs/heads/circle_caching
  Home:   https://github.com/quicwg/base-drafts
  Commit: b8e45fba31c52c5a9bd9dda9b26e8b9443fa4fb5
      https://github.com/quicwg/base-drafts/commit/b8e45fba31c52c5a9bd9dda9b26e8b9443fa4fb5
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M .circleci/config.yml

  Log Message:
  -----------
  Cache draft references too



From nobody Fri Sep  6 08:47: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 476BB120952 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:47: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 9iXjiYolglEN for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:47: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 AA97E120D69 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:47:38 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:47:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567784857; bh=e4rEk1OSgJs0ZmzQcU026D/hQEn3xRGV24n4STviVSQ=; h=Date:From:To:Subject:From; b=DcYYTlEWyVVhQRMcyqSsz7VMbbALoF5yZxlu0JX+5Za6l2mqNHIMhGEsYr/vbgYsF ACXl3/6ohrndeMTbEZAhflevN5NLwhqpQI16XwUWPvx/gEpd/L5sJzufdMMKQF7Dq9 bTelOFc++QTbYnZTINhEiWdriauOMRdAbEkqR0EM=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/edc874-d13d14@github.com>
Subject: [quicwg/base-drafts] d13d14: Script updating gh-pages from b8e45fba. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3Z_PopVuEOBo7N6Gwpcp3hkqCF8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:47:49 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d13d14a0afc1d4a2d7a7f3951f512f29e5989563
      https://github.com/quicwg/base-drafts/commit/d13d14a0afc1d4a2d7a7f3951f512f29e5989563
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M index.html

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



From nobody Fri Sep  6 08:50: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 37AA8120D6A for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:50:22 -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 smCAxRJw1EWH for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:50:20 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A64B51208EA for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:50:17 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:50:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567785016; bh=X3AtCuU9bHH4Dk0jjkPGBHVuCudgxe7/L8V3tgBnes0=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=xvNVyqmi9f/qA7OvbvuMxZTpd8eK0iISS0N+k+Jc6pyYyvJLK3yuRnMGXaX3ksG0o LPylWP9nJjQGIEuF14599Odf6h3swf1P+uP8kQlqZ0ENPTmk5GJMJkytrSAUnzRezg abcxyN95cJOGVBOD6PDRlpqPUZ15PVMCGMuGux7Q=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2H6M4IYYOTB75PSDN3P7AMREVBNHHB2OXHYQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3009@github.com>
Subject: [quicwg/base-drafts] Cache git repo, draft references in Circle (#3009)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d728038890c2_4f553f93116cd96c25316a"; 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/q3WH6bgcRhrVGqFHqrwm4eoskj0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:50:27 -0000

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

This appears to shave almost a minute off of build times.
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Cache git repo between Circle runs
  * Cache draft references too

-- File Changes --

    M .circleci/config.yml (28)

-- Patch Links --

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

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

<p>This appears to shave almost a minute off of build times.</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/3009'>https://github.com/quicwg/base-drafts/pull/3009</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Cache git repo between Circle runs</li>
  <li>Cache draft references too</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3009/files#diff-0">.circleci/config.yml</a>
    (28)
  </li>
</ul>

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

----==_mimepart_5d728038890c2_4f553f93116cd96c25316a--


From nobody Fri Sep  6 08:57: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 4C7111200DB for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:57: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 xl3Lj0wAJTcC for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:57: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 DB133120026 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:57:34 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:57:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567785454; bh=FiJf9Qa1HKDbeylLoQ6rYQU5ZgbOUQPwOZTGN5i9g1g=; h=Date:From:To:Subject:From; b=kR09a1Q2RauA/htBV4FI0lm5Nqrdogt0TMVmh/Qs66LzvZr4ikNUPs3SyYSm4vvaw L0uDHeXGny72ivauwR0SmFjlZyTd8ovA7o6WGTQZL6hL0rltWiejDDVFZyZzkIlNTZ l0N+ozP9An8BFxzU/t5S2XfjkYF+nv6MvdJEnK08=
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/circle_caching/b8e45f-c642ae@github.com>
Subject: [quicwg/base-drafts] c642ae: Only gc if called 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/TprSJKDhIQtOn2XGyV_vzjjW3YU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:57:36 -0000

  Branch: refs/heads/circle_caching
  Home:   https://github.com/quicwg/base-drafts
  Commit: c642ae92f3b78642e666d76701a1606d87446e8d
      https://github.com/quicwg/base-drafts/commit/c642ae92f3b78642e666d76701a1606d87446e8d
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M .circleci/config.yml

  Log Message:
  -----------
  Only gc if called for



From nobody Fri Sep  6 08:57: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 2FCB21200DB for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:57: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 OQGSy0lq8S0C for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:57: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 8E801120026 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:57:43 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:57:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567785462; bh=neLMwZOrM6ivzz02qzbUh5IkZgTcBNwi49LNJilnGWA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=AHX9+EX8M/ubvsmyhwJWemRdkVji0mfW7RQK/Q5kFYPtt2CkSrA7xb9rqzq7eial6 E2aYpRk2QQXPwyYiup+Xf46n2GSZolY2EuRTUfTVg2K5AvW/lzJpWfCbMzP3GksGK2 1kqJX2nVaWRp0xL+9/WrHwL3C8FFOKFm6ehQqI44=
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/3009/push/4005692409@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3009@github.com>
References: <quicwg/base-drafts/pull/3009@github.com>
Subject: Re: [quicwg/base-drafts] Cache git repo, draft references in Circle (#3009)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7281f694b2f_11d23ff2596cd9602690b0"; 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/1ZaMGDXuzfSqWeT9Dw5teUzxcp0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:57:45 -0000

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

@MikeBishop pushed 1 commit.

c642ae92f3b78642e666d76701a1606d87446e8d  Only gc if called for


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

----==_mimepart_5d7281f694b2f_11d23ff2596cd9602690b0
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/c642ae92f3b78642e666d76701a1606d87446e8d">c642ae9</a>  Only gc if called 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/3009/files/b8e45fba31c52c5a9bd9dda9b26e8b9443fa4fb5..c642ae92f3b78642e666d76701a1606d87446e8d?email_source=notifications&amp;email_token=AFTOJK5XGHSM3EAYVMWVYDTQIJ4XNA5CNFSM4IUKPTZKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTKMBRGM4DSM2QOVZWQIZUGAYDKNRZGI2DAOI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZZN35HQJEB4UE4MGLQIJ4XNANCNFSM4IUKPTZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4SD53NYUDUXLGBLSTQIJ4XNA5CNFSM4IUKPTZKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTKMBRGM4DSM2QOVZWQIZUGAYDKNRZGI2DAOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3009/files/b8e45fba31c52c5a9bd9dda9b26e8b9443fa4fb5..c642ae92f3b78642e666d76701a1606d87446e8d?email_source=notifications\u0026email_token=AFTOJK5XGHSM3EAYVMWVYDTQIJ4XNA5CNFSM4IUKPTZKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTKMBRGM4DSM2QOVZWQIZUGAYDKNRZGI2DAOI",
"url": "https://github.com/quicwg/base-drafts/pull/3009/files/b8e45fba31c52c5a9bd9dda9b26e8b9443fa4fb5..c642ae92f3b78642e666d76701a1606d87446e8d?email_source=notifications\u0026email_token=AFTOJK5XGHSM3EAYVMWVYDTQIJ4XNA5CNFSM4IUKPTZKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTKMBRGM4DSM2QOVZWQIZUGAYDKNRZGI2DAOI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d7281f694b2f_11d23ff2596cd9602690b0--


From nobody Fri Sep  6 08:58: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 911061200DB for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:58: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 47QhcchTqfFa for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 08:58: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 85BDD120026 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 08:58:09 -0700 (PDT)
Date: Fri, 06 Sep 2019 08:58:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567785488; bh=gyplXNHDg9YfW5Lvu8XnOdvHZDo3EzeX+9kh1m3Rtkc=; h=Date:From:To:Subject:From; b=IN8AWAa0ngCsMoFMX1hdVzgqUPbCSOexVmO4jZmCUW3z+bqSlWFdEz2EX8AinK0MP 0ppRmoL8djUpLU+nRiBL33+f+mKIrumU9pOVgvPfmiylB6RPRtmHof+cEHaShogmll uBQnVZ5jBHSBBRmcPOGNkxPvlmOiAsYaTX7BheX8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d13d14-3ec31e@github.com>
Subject: [quicwg/base-drafts] 3ec31e: Script updating gh-pages from c642ae92. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SfwSuRQCVQgVNK7cKuzaGS-xKpg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 15:58:12 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3ec31e0f3af705675976cd6bc0febed59278bfe1
      https://github.com/quicwg/base-drafts/commit/3ec31e0f3af705675976cd6bc0febed59278bfe1
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M index.html

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



From nobody Fri Sep  6 09:47: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 EDB11120934 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 09:47: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 ECRCWeQ13RhC for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 09:47: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 CD7B612091B for <quic-issues@ietf.org>; Fri,  6 Sep 2019 09:47:18 -0700 (PDT)
Date: Fri, 06 Sep 2019 09:47:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567788437; bh=shGx8EjxGwyxPokNhltXiIHWdelPyE3lDI7BZZjwMx0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=M6TDpz5Gd09jjcCfx3EPxbp0S3M8jYQO8Fcca7b+bIQ5W9Ti229/adfyfBwZ6MLmq byc47ne3+R/jY0gl0qqcMB1HsQDzA0bXtOHvtesQb51+5MyzaPvd5FKJIl1VM2jf3J zsSUwkJ0/yMd6q7ne/wlvOj5g5PJ/rIxZ43qYbso=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYF5CKEK4SMVWD4EAN3P7HCLEVBNHHB2NT5NA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3007/review/284979270@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3007@github.com>
References: <quicwg/base-drafts/pull/3007@github.com>
Subject: Re: [quicwg/base-drafts] Attempt to make the stateless reset text better (#3007)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d728d95a7d22_50453f7e7b8cd9601634bf"; 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/aqfB-9CnC8C7x6rmdkLeBOTqCBc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 16:47:21 -0000

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

ianswett approved 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.
+To entities other than its intended recipient, a stateless reset will appear to
+be a packet with a short header.  For the stateless reset to appear as a valid
+QUIC packet, the Unpredictable Bits field needs to include at least 38 bits of
+data (or 6 bytes, less the two fixed bits).
+
+A minimum size of 21 bytes does not guarantee that a stateless reset is
+difficult to distinguish from other packets if the recipient requires the use of
+a connection ID.  In order to ensure that a stateless reset that appears to be

This second sentence is hard to follow.  How about "To prevent a resulting stateless reset from being distinguished from a valid packet, all 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/3007#pullrequestreview-284979270
----==_mimepart_5d728d95a7d22_50453f7e7b8cd9601634bf
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3007#discussion_r321821045">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.
+To entities other than its intended recipient, a stateless reset will appear to
+be a packet with a short header.  For the stateless reset to appear as a valid
+QUIC packet, the Unpredictable Bits field needs to include at least 38 bits of
+data (or 6 bytes, less the two fixed bits).
+
+A minimum size of 21 bytes does not guarantee that a stateless reset is
+difficult to distinguish from other packets if the recipient requires the use of
+a connection ID.  In order to ensure that a stateless reset that appears to be
</pre>
<p>This second sentence is hard to follow.  How about "To prevent a resulting stateless reset from being distinguished from a valid packet, all 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/3007?email_source=notifications&amp;email_token=AFTOJK4J2MD73EPI4TJ3PTTQIKCRLA5CNFSM4IUESDE2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCD6HARQ#pullrequestreview-284979270">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK32UDMH5NLK3JFS2DDQIKCRLANCNFSM4IUESDEQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK42FSUVWF4EWR3SRCDQIKCRLA5CNFSM4IUESDE2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCD6HARQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3007?email_source=notifications\u0026email_token=AFTOJK4J2MD73EPI4TJ3PTTQIKCRLA5CNFSM4IUESDE2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCD6HARQ#pullrequestreview-284979270",
"url": "https://github.com/quicwg/base-drafts/pull/3007?email_source=notifications\u0026email_token=AFTOJK4J2MD73EPI4TJ3PTTQIKCRLA5CNFSM4IUESDE2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCD6HARQ#pullrequestreview-284979270",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d728d95a7d22_50453f7e7b8cd9601634bf--


From nobody Fri Sep  6 11: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 15A68120A04 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 11:54: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 qcYqcI704EWn for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 11:54: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 BFA6A120A02 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 11:54:05 -0700 (PDT)
Date: Fri, 06 Sep 2019 11:54:04 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567796044; bh=tbGom33sxxyJIu98vcZg0Whyqguzr5p6ia9745iHLZA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zp+3UabRiShvN6RiNviVgt9odfALh1re0qvaBIcT2XP4BRo/jb6cv/Jk/3yxcvSKj 0dfXDSeWqPVE/oDr42sI0eok9ofMTaXzihg59x9ltTlC6ii4aXfgqevpQKoE4Z7tXd NehbGlBdG6c4fhSJ2kUDAFg4kYarSOthVes3GGJo=
From: Nick Harper <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK64SKGKVGEACA5B5U53P7V5ZEVBNHHBYXLIMY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2947/c528972926@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2947@github.com>
References: <quicwg/base-drafts/pull/2947@github.com>
Subject: Re: [quicwg/base-drafts] Describe interaction between QUIC and TLS regarding saved 0-RTT state (#2947)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d72ab4c9228b_16c3fdc842cd9682921b"; 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/9uisKRJ8Tk7rBZtC_pjKh6Rx8eQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 18:54:07 -0000

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

Do I need to take any action to get this PR merged? (Should this be labeled 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/pull/2947#issuecomment-528972926
----==_mimepart_5d72ab4c9228b_16c3fdc842cd9682921b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Do I need to take any action to get this PR merged? (Should this be labeled 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/pull/2947?email_source=notifications&amp;email_token=AFTOJK23XQFRHMFMZ7IBJUDQIKRMZA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6DXY7Q#issuecomment-528972926">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2L4BL3LBEHYVIFKHLQIKRMZANCNFSM4IIVRW7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7HXFHCFX2QOOSQ57DQIKRMZA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6DXY7Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2947?email_source=notifications\u0026email_token=AFTOJK23XQFRHMFMZ7IBJUDQIKRMZA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6DXY7Q#issuecomment-528972926",
"url": "https://github.com/quicwg/base-drafts/pull/2947?email_source=notifications\u0026email_token=AFTOJK23XQFRHMFMZ7IBJUDQIKRMZA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6DXY7Q#issuecomment-528972926",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d72ab4c9228b_16c3fdc842cd9682921b--


From nobody Fri Sep  6 14: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 DC0F5120DEC for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:13: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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7K7S-MPZpi2T for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:13: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 925BE120DEA for <quic-issues@ietf.org>; Fri,  6 Sep 2019 14:13:13 -0700 (PDT)
Date: Fri, 06 Sep 2019 14:13:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567804392; bh=6urq4kQumkA7dCcX4CWBi/9KpxYoHkba4MaqNLvoqrc=; h=Date:From:To:Subject:From; b=2W6yWOODDVUhVeNdkRgRpgsbaAz6KbPF28hBRLpVn45aP0pTlRo5nZig1bQHYk8y6 BUgCNd2kJCoJTF5ibUMxuFB1932IP4Zw2TDozyglzqjJ1SN3v6dsWKBVARzzyJ5Pit z6wqYCCVtEcf94lIeR2vY6CGEjiSsuNtWj0WN0iA=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-initial-secrets-constant/dcae1c-835490@github.com>
Subject: [quicwg/base-drafts] 835490: 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/myhCn3tzJV7CU8gH4ht7brOmDW0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 21:13:15 -0000

  Branch: refs/heads/ianswett-initial-secrets-constant
  Home:   https://github.com/quicwg/base-drafts
  Commit: 835490f5b5d268afe36b22be81d346e96eeb54da
      https://github.com/quicwg/base-drafts/commit/835490f5b5d268afe36b22be81d346e96eeb54da
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-06 (Fri, 06 Sep 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 Fri Sep  6 14: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 1A8B1120DE8 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:13: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 SspqYP0pxhjI for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:13: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 66785120DE6 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 14:13:21 -0700 (PDT)
Date: Fri, 06 Sep 2019 14:13:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567804400; bh=vFIQX7xLsICU+vngGF3F6Rnl4dnXAq5PkOYztiJonYM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=i4A3F9AadeAwhs4hNIZ0cBA46oR+PDQP3Ixgovc3Fh+Yuc44GyD6HKK1CIdDJqALc /FWGh9u4yN+kVT91g1xos1Q2aYPITVfcfIN9VDO4PxK8UcOHPMf+figsI0J6myy6v8 StcEF7X5532j0itsVJQLxT7K3DYgd9AMzHFsEUJk=
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/4006700879@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_5d72cbf0659b1_ddc3fc0f44cd96c140179"; 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/tUFXjH112XvSPjSTZoxAGY0kDUo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 21:13:23 -0000

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

@ianswett pushed 1 commit.

835490f5b5d268afe36b22be81d346e96eeb54da  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/dcae1c4a8bb276730c75a3e1bba79d4ec451dd53..835490f5b5d268afe36b22be81d346e96eeb54da

----==_mimepart_5d72cbf0659b1_ddc3fc0f44cd96c140179
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/835490f5b5d268afe36b22be81d346e96eeb54da">835490f</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/dcae1c4a8bb276730c75a3e1bba79d4ec451dd53..835490f5b5d268afe36b22be81d346e96eeb54da?email_source=notifications&amp;email_token=AFTOJK65DMXP7B5PBXLZPBLQILBXBA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYDMNZQGA4DOOI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK53ROCPCGDGAHV4HXDQILBXBANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2IDFHSMOBW27XIG4DQILBXBA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYDMNZQGA4DOOI.gif" height="1" width="1" 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/dcae1c4a8bb276730c75a3e1bba79d4ec451dd53..835490f5b5d268afe36b22be81d346e96eeb54da?email_source=notifications\u0026email_token=AFTOJK65DMXP7B5PBXLZPBLQILBXBA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYDMNZQGA4DOOI",
"url": "https://github.com/quicwg/base-drafts/pull/2878/files/dcae1c4a8bb276730c75a3e1bba79d4ec451dd53..835490f5b5d268afe36b22be81d346e96eeb54da?email_source=notifications\u0026email_token=AFTOJK65DMXP7B5PBXLZPBLQILBXBA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYDMNZQGA4DOOI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d72cbf0659b1_ddc3fc0f44cd96c140179--


From nobody Fri Sep  6 14: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 F3B12120DEA for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:13: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 Uz3DhWX8OfKM for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:13: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 DD8F2120DE8 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 14:13:39 -0700 (PDT)
Date: Fri, 06 Sep 2019 14:13:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567804419; bh=2gzfo3wSSiSl++S5BXxyC24JQRkOmKVxEIclKg6qff0=; h=Date:From:To:Subject:From; b=jb8hzbm1OcPyWaJzz8xF4Gu3oSGKO1qR3/Q+NpZbfDyhgMbXjhcFqbHrADS0+4Auh r0DoyhSj9VHab122umLIr34Q7c9UrU0Qa6eGkgjSn9K0LEIVCqZxQaRawb7rYAs1cU E9Y+x5iEk4FxHR9B+LmgMgOIUDE6o66dubkKED9Y=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-initial-secrets-constant/835490-076df5@github.com>
Subject: [quicwg/base-drafts] 076df5: 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/_Oo_mbTQ8G7xXtaeVhbZNDppV4s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 21:13:41 -0000

  Branch: refs/heads/ianswett-initial-secrets-constant
  Home:   https://github.com/quicwg/base-drafts
  Commit: 076df56d806ac324dd2b632cd5388427612bc82d
      https://github.com/quicwg/base-drafts/commit/076df56d806ac324dd2b632cd5388427612bc82d
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-06 (Fri, 06 Sep 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 Fri Sep  6 14: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 F0613120DE8 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:13:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.28
X-Spam-Level: 
X-Spam-Status: No, score=-6.28 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, 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 a23lwydzZ2EY for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:13: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 7741A120DE6 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 14:13:48 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 9FB891C02AA for <quic-issues@ietf.org>; Fri,  6 Sep 2019 14:13:47 -0700 (PDT)
Date: Fri, 06 Sep 2019 14:13:47 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2878/push/4006702057@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_5d72cc0b90d79_761b3fb700ccd96c1202ee"; 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/ZPiNKPMzWnXIaVKD94gcmOxNN9M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 21:13:50 -0000

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

@ianswett pushed 1 commit.

076df56d806ac324dd2b632cd5388427612bc82d  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/835490f5b5d268afe36b22be81d346e96eeb54da..076df56d806ac324dd2b632cd5388427612bc82d

----==_mimepart_5d72cc0b90d79_761b3fb700ccd96c1202ee
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/076df56d806ac324dd2b632cd5388427612bc82d">076df56</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/835490f5b5d268afe36b22be81d346e96eeb54da..076df56d806ac324dd2b632cd5388427612bc82d?email_source=notifications&amp;email_token=AFTOJK3IVHTKUFSWYH3GPA3QILBYXA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYDMNZQGIYDKNY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY4UJD6FMBY7D6YLRTQILBYXANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5IYCECSWILKG4WIBTQILBYXA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYDMNZQGIYDKNY.gif" height="1" width="1" 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/835490f5b5d268afe36b22be81d346e96eeb54da..076df56d806ac324dd2b632cd5388427612bc82d?email_source=notifications\u0026email_token=AFTOJK3IVHTKUFSWYH3GPA3QILBYXA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYDMNZQGIYDKNY",
"url": "https://github.com/quicwg/base-drafts/pull/2878/files/835490f5b5d268afe36b22be81d346e96eeb54da..076df56d806ac324dd2b632cd5388427612bc82d?email_source=notifications\u0026email_token=AFTOJK3IVHTKUFSWYH3GPA3QILBYXA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYDMNZQGIYDKNY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d72cc0b90d79_761b3fb700ccd96c1202ee--


From nobody Fri Sep  6 14:14: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 78EA5120DE8 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:14: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 PXgado466WVu for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:14: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 2053E120DE6 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 14:14:00 -0700 (PDT)
Date: Fri, 06 Sep 2019 14:13:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567804439; bh=2lr0nso2z190a4yKil40SWtYLCksAIrFjzKUTNtSnIg=; h=Date:From:To:Subject:From; b=iBB+q8IrfhAQPqQ2hysxZ27bDtrulHQ90/An4gbLTt0pO6rv8c2pnZc58nhgU06MK kz1DZWAo/81NSbERIpOoa5p2U0A+j+mWpaEpJJEal+m4Z9IjyLuENw1+4jUlgaFVka QoG8Wb/qrcPjzSlGmbPLkq49y1iKbonP2+hhb/hY=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-initial-secrets-constant/076df5-f31868@github.com>
Subject: [quicwg/base-drafts] f31868: 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/LMBb9qMXdWkFlE3U7F0-rZn2V2s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 21:14:02 -0000

  Branch: refs/heads/ianswett-initial-secrets-constant
  Home:   https://github.com/quicwg/base-drafts
  Commit: f31868fa2adf17c0e9f9d0a8fc19b351876df1b0
      https://github.com/quicwg/base-drafts/commit/f31868fa2adf17c0e9f9d0a8fc19b351876df1b0
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-06 (Fri, 06 Sep 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 Fri Sep  6 14: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 A4F99120DEA for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:14:10 -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 GAs-jL-5j4uq for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:14: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 C3CB9120DE6 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 14:14:08 -0700 (PDT)
Date: Fri, 06 Sep 2019 14:14:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567804448; bh=dCTSCrlqZuhc/gER8vhrwh3q3VFaEoXFFC6OD105/II=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tCarq84mKUCEvNr8EFEHYyQGa8D5ZVW29GhcEr4hkKIE5QUaYIA6X9msK9NHTZ0tO xitx6vYCRTI8uAT44XtcHz7Zh2hKyGd7sTC+YjFdmMlGGL190HKo+C7z4pWmChDXfd GfYnTRihdbOKV+7GxJbClVBdVTWaearo2BUP3Loc=
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/4006702973@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_5d72cc201d402_75813f8a43ecd9681196fb"; 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/olYuz9bvQEMRXdeaMfzRDooGB1M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 21:14:11 -0000

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

@ianswett pushed 1 commit.

f31868fa2adf17c0e9f9d0a8fc19b351876df1b0  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/076df56d806ac324dd2b632cd5388427612bc82d..f31868fa2adf17c0e9f9d0a8fc19b351876df1b0

----==_mimepart_5d72cc201d402_75813f8a43ecd9681196fb
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/f31868fa2adf17c0e9f9d0a8fc19b351876df1b0">f31868f</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/076df56d806ac324dd2b632cd5388427612bc82d..f31868fa2adf17c0e9f9d0a8fc19b351876df1b0?email_source=notifications&amp;email_token=AFTOJK5GQXH7XR6CJL7F77TQILB2BA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYDMNZQGI4TOMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK67FE3XW6OQGKUKQ5TQILB2BANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZD5QKAABUP6DW3SETQILB2BA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYDMNZQGI4TOMY.gif" height="1" width="1" 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/076df56d806ac324dd2b632cd5388427612bc82d..f31868fa2adf17c0e9f9d0a8fc19b351876df1b0?email_source=notifications\u0026email_token=AFTOJK5GQXH7XR6CJL7F77TQILB2BA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYDMNZQGI4TOMY",
"url": "https://github.com/quicwg/base-drafts/pull/2878/files/076df56d806ac324dd2b632cd5388427612bc82d..f31868fa2adf17c0e9f9d0a8fc19b351876df1b0?email_source=notifications\u0026email_token=AFTOJK5GQXH7XR6CJL7F77TQILB2BA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYDMNZQGI4TOMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d72cc201d402_75813f8a43ecd9681196fb--


From nobody Fri Sep  6 14:14: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 9BDCF120DEA for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:14: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 KRQZHbhUuJfV for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:14:27 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 181D5120DE8 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 14:14:27 -0700 (PDT)
Date: Fri, 06 Sep 2019 14:14:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567804466; bh=6nKlVyeL+/UWheGR8LZoFqLA+JEWWIskH6RXK8nh7x0=; h=Date:From:To:Subject:From; b=YVB8gZ3t/YHfufCx2kSeenOA9/q6ZkuTZRsCcJ17FdaBoTtmYQRG/1v26/naHpixH CQAEJki8fFGOY9DUD9f5ZcBruix6HEbv41qQQmYTHwX5qGgSjC4CUuIXQrgP/TKp6W jz3KdM2GKSlhOzENkh4d/ojkrTGNuVFG2YizLJ+4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/3ec31e-496142@github.com>
Subject: [quicwg/base-drafts] 496142: Script updating gh-pages from 835490f5. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-XEQxAX0aJq6_J5v9OUyD7jab0Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 21:14:29 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 496142e77941b63253d03f852823774e9b09802b
      https://github.com/quicwg/base-drafts/commit/496142e77941b63253d03f852823774e9b09802b
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-06 (Fri, 06 Sep 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 835490f5. [ci skip]



From nobody Fri Sep  6 14:15: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 81F0E120DEE for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:15: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 nvfPUJZErjNq for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:14: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 763B2120DE6 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 14:14:58 -0700 (PDT)
Date: Fri, 06 Sep 2019 14:14:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567804497; bh=dbQ5ZtPnG9J4o6meo3v8H/xW7eApgsokKSWJPRLaM8M=; h=Date:From:To:Subject:From; b=yyH5UJIfQrRV85R12REKDoY668fSr9dvmV5H5CdE5xJfhPR0UX38tuF2V94gf72X/ 2HU/UYYXKUQobJl6ZXxDV6PSAAnR44q1q+VIuEV3HzjlLOtEi8pzl9JanF6IHhX+ez acpZSeHrXcqQYAFATJsyUOJgz6bNgKk1lVpRFCsY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/496142-29da7e@github.com>
Subject: [quicwg/base-drafts] 29da7e: Script updating gh-pages from 076df56d. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qmPFYlSvBOHWXXfeSyeAwOfesFA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 21:15:00 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 29da7e192332f9bc9d9426fa33ce68fde087a93f
      https://github.com/quicwg/base-drafts/commit/29da7e192332f9bc9d9426fa33ce68fde087a93f
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-06 (Fri, 06 Sep 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 076df56d. [ci skip]



From nobody Fri Sep  6 14:15: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 6FE86120DEC for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:15: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 Ube66l9jY4DV for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:15: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 C7726120DE6 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 14:15:14 -0700 (PDT)
Date: Fri, 06 Sep 2019 14:15:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567804514; bh=x73c9vJ3Lw3Lsy1oAq5sryDLpsSL7VuXk9gkIxdECh4=; h=Date:From:To:Subject:From; b=h9ZtiT2b6wF4bnPwannQgUdt9a7WNQ+dy0SL7CQdgI2+JKck68vxnvBlTpKHB/xkO NjnrEMr1cNsJMVKGqteqFyiMmjAMapYacJ0fsiqM9VETvAPVemA6dl97gAb3s2V4Pp TySKduvHNjSg5FBG4lYArjdkioWnh7712ZJGAl2M=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/29da7e-517c88@github.com>
Subject: [quicwg/base-drafts] 517c88: Script updating gh-pages from f31868fa. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Sh9kddjNGohvHoUJ5mQSh9vr9aI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 21:15:17 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 517c888bf4a0351d88ac4b0f84379ad7b670b05f
      https://github.com/quicwg/base-drafts/commit/517c888bf4a0351d88ac4b0f84379ad7b670b05f
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-06 (Fri, 06 Sep 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 f31868fa. [ci skip]



From nobody Fri Sep  6 14:19: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 ED7E1120DEA for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:19: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 qI-olp6lZYek for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:18:59 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C7D54120868 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 14:18:59 -0700 (PDT)
Date: Fri, 06 Sep 2019 14:18:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567804738; bh=T4kGiLaR2Ii1HRnXoTWcIxefq9ox8Pr7fht4b6VVvNY=; h=Date:From:To:Subject:From; b=wtTexSUviiq6j6QXrOfH2AKq02RGKMqJ/j6HAzD2qXNFCMF5IXhC50SHPiak+efSt Cg87NOJQA7XkluMPdL2bLq3WMAsNMQ3YlzJ0+aBBDQ+hMZh0ois2wut0nevzRrOaE3 /Zgt49vUI3InZUTys5azOfDDkN2+kIyobVutOfqA=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-initial-secrets-constant/f31868-58cd0b@github.com>
Subject: [quicwg/base-drafts] 58cd0b: Clarified that saving Connection ID is not new
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3RDkUUyYhGqDUfolcZxO6vP4WJM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 21:19:01 -0000

  Branch: refs/heads/ianswett-initial-secrets-constant
  Home:   https://github.com/quicwg/base-drafts
  Commit: 58cd0b4b24118866353d0eaa358bd03e57dec90b
      https://github.com/quicwg/base-drafts/commit/58cd0b4b24118866353d0eaa358bd03e57dec90b
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

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

  Log Message:
  -----------
  Clarified that saving Connection ID is not new



From nobody Fri Sep  6 14:19: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 567A7120DE8 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14: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 MMmO3rDvDIt7 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:19: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 046ED120868 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 14:19:08 -0700 (PDT)
Date: Fri, 06 Sep 2019 14:19:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567804747; bh=63mTlJ50CQrjIJI0bU4Ao203qn5XWv3FeiN9ey5KQHg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NtXXQkL0K//5PxQo4YtgXA9t73bZPEs2Y5//Xh9+hct+CbX15uGRQdbqmPeqiMKfY CLgVyjBbDZXPTi7uMikJ5y8nG229spt+g0J+OFZ5jUjfelee6M3wU2pGUt3n3BBwNr +4nj+lV2DUr/EEOt+X73N2qqNAW0ARWo70JFOitk=
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/4006716824@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_5d72cd4b211dc_7ea83fa6d72cd9646434d"; 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/Q3Oy-lpfVDJ7s8zRFGlQgkstpws>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 21:19:09 -0000

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

@ianswett pushed 1 commit.

58cd0b4b24118866353d0eaa358bd03e57dec90b  Clarified that saving Connection ID is not new


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2878/files/f31868fa2adf17c0e9f9d0a8fc19b351876df1b0..58cd0b4b24118866353d0eaa358bd03e57dec90b

----==_mimepart_5d72cd4b211dc_7ea83fa6d72cd9646434d
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/58cd0b4b24118866353d0eaa358bd03e57dec90b">58cd0b4</a>  Clarified that saving Connection ID is not new</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#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/f31868fa2adf17c0e9f9d0a8fc19b351876df1b0..58cd0b4b24118866353d0eaa358bd03e57dec90b?email_source=notifications&amp;email_token=AFTOJK7JC6AUGOZH7MF7BT3QILCMXA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYDMNZRGY4DENA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7BX5GMU7RR67NG2WTQILCMXANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5CWROSOU5W3XTMYXLQILCMXA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYDMNZRGY4DENA.gif" height="1" width="1" 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/f31868fa2adf17c0e9f9d0a8fc19b351876df1b0..58cd0b4b24118866353d0eaa358bd03e57dec90b?email_source=notifications\u0026email_token=AFTOJK7JC6AUGOZH7MF7BT3QILCMXA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYDMNZRGY4DENA",
"url": "https://github.com/quicwg/base-drafts/pull/2878/files/f31868fa2adf17c0e9f9d0a8fc19b351876df1b0..58cd0b4b24118866353d0eaa358bd03e57dec90b?email_source=notifications\u0026email_token=AFTOJK7JC6AUGOZH7MF7BT3QILCMXA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYDMNZRGY4DENA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d72cd4b211dc_7ea83fa6d72cd9646434d--


From nobody Fri Sep  6 14:20: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 CDE38120DE8 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:19: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 UsZnQVvEJ5v5 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:19:56 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1863D120868 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 14:19:56 -0700 (PDT)
Date: Fri, 06 Sep 2019 14:19:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567804795; bh=8o4uiQOo1Ju0I36TT7mJSmqYZ/iDYOYJskBDKF+mcFs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=f620dqyToPRGivzVgGlTA1evWwlothy0XdQuCBU0nyc7UnnbEwKWh2WZMIB4inBtv 0aof4tbh9SbY3zSAMBDCzh56HlL/s8BYuTwPMCiKM5x4XrlQbNUJRqQRhlD9YEDkeI c6Ue146M5f7iiBeaRW3fWuvfQZenNd/sci7GVpjE=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5KG5JNQ3QTIN7KVZN3QAHAXEVBNHHBXP6EBY@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/285105090@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_5d72cd7b57773_4a3b3fcd65ecd96c56746"; 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/L1eQi_0OaJ8bMpDZdHuhdpJeIG4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 21:19:58 -0000

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

ianswett 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

Good point, MT suggested some simplifications to the text and I added a sentence clarifying that this is not a new requirement, it just changes when the connection ID is used.

-- 
You are receiving this 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#discussion_r321914284
----==_mimepart_5d72cd7b57773_4a3b3fcd65ecd96c56746
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/2878#discussion_r321914284">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>Good point, MT suggested some simplifications to the text and I added a sentence clarifying that this is not a new requirement, it just changes when the connection ID is used.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK6XA2WXYALLBFGXW4DQILCPXA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCD7FXQQ#discussion_r321914284">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK23GEHJFCEBBCAK55TQILCPXANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZU26LKZ3ESMEH7VVDQILCPXA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCD7FXQQ.gif" height="1" width="1" 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=AFTOJK6XA2WXYALLBFGXW4DQILCPXA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCD7FXQQ#discussion_r321914284",
"url": "https://github.com/quicwg/base-drafts/pull/2878?email_source=notifications\u0026email_token=AFTOJK6XA2WXYALLBFGXW4DQILCPXA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCD7FXQQ#discussion_r321914284",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d72cd7b57773_4a3b3fcd65ecd96c56746--


From nobody Fri Sep  6 14: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 65202120DE6 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:20: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 wB2yavFaW21a for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 14:20: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 0E527120868 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 14:20:29 -0700 (PDT)
Date: Fri, 06 Sep 2019 14:20:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567804828; bh=amZv7ChHBnCXvPGmqETw42cKCcbqt84gWp2GKHpmbLw=; h=Date:From:To:Subject:From; b=DsIwsG6ytvwAeaLQzZfAr/K/exDvcNhX/0VpifHSd2xbEwXvYrjB0mv8gDQ71J0xD jJrtelDUVkZzrXUsGoX+ddKRq57oY5r1vsiMFSeyxrR+u2fVQFDFkZZ+Mk9mdzGo5B moBBw5Q4J4dkqtO5SFjYOK6jfl5zY/W/wVDoc8tM=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/517c88-3b0d58@github.com>
Subject: [quicwg/base-drafts] 3b0d58: Script updating gh-pages from 58cd0b4b. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2kD0ZVtkKJuFyMa6h-ttHMde_yo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 06 Sep 2019 21:20:30 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3b0d587fb2460c0917f1abac79c60dc6f71b0c82
      https://github.com/quicwg/base-drafts/commit/3b0d587fb2460c0917f1abac79c60dc6f71b0c82
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-06 (Fri, 06 Sep 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 58cd0b4b. [ci skip]



From nobody Fri Sep  6 22:03: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 87A1F120AB6 for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 22:03:46 -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 oSESn_5YT7Qx for <quic-issues@ietfa.amsl.com>; Fri,  6 Sep 2019 22:03: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 99474120900 for <quic-issues@ietf.org>; Fri,  6 Sep 2019 22:03:44 -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 0330266006E for <quic-issues@ietf.org>; Fri,  6 Sep 2019 22:03:44 -0700 (PDT)
Date: Fri, 06 Sep 2019 22:03:43 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZK7F65DNG3ADNAB6F3QBWK7EVBNHHBZ2ZITU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2990/review/285156865@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2990@github.com>
References: <quicwg/base-drafts/pull/2990@github.com>
Subject: Re: [quicwg/base-drafts] Simplify ChaCha20 interface (#2990)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d733a2fe8afd_16d23f7e4f8cd9641798fd"; 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/1nMxApbi9MPkwuipmsU-6zJUaVs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 07 Sep 2019 05:03:47 -0000

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


From nobody Sun Sep  8 17:58: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 9ABFA120091 for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 17:58: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 tMsNvxdKzPc7 for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 17:58: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 ECC9012004D for <quic-issues@ietf.org>; Sun,  8 Sep 2019 17:58:19 -0700 (PDT)
Date: Sun, 08 Sep 2019 17:58:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567990699; bh=rACgJ+l+hsBJrk/CzXTh97h3EEHYTVBqTSud0bVf+dk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=c71A+b4eJ812PXc8dDlzOere1Z3Me/b3bpICQmzO2p3kV1IdD1OtV1FkZnpfdq3// rxOWJyspFi3XrVfcvNQqqq35/CjXboPKazloJ6fTfQZKHqN7lwhMNMV3t9gZWR7tVG dBe9iGjdfp5RlsAieavx4bzvutZqJtMfCo8mYrO0=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZMYJICQ5IUV36GNIF3QLEBVEVBNHHB2OECMQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3008/529265440@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3008@github.com>
References: <quicwg/base-drafts/issues/3008@github.com>
Subject: Re: [quicwg/base-drafts] The QUIC bit in stateless resets (#3008)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d75a3aaf006e_5f4d3f9a098cd95c248490"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7HlXOsO3nhF_7HAEuXVVYd-vFWg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 00:58:22 -0000

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

Thanks both.  I just wanted to check and didn't feel like I had the brain cells to answer that.  I don't like relying on the image only, but the text says "two fixed bits", and stateless reset - unlike Version Negotiation - is version-specific.  So I'm 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/3008#issuecomment-529265440
----==_mimepart_5d75a3aaf006e_5f4d3f9a098cd95c248490
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Thanks both.  I just wanted to check and didn't feel like I had the brain cells to answer that.  I don't like relying on the image only, but the text says "two fixed bits", and stateless reset - unlike Version Negotiation - is version-specific.  So I'm 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/3008?email_source=notifications&amp;email_token=AFTOJK6LFJWDTEJQJY2TZ7LQIWNSVA5CNFSM4IUHJCYKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6F7GIA#issuecomment-529265440">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3BSUN7P7CMBERS75TQIWNSVANCNFSM4IUHJCYA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7A6C7PWASG5Z5MV6DQIWNSVA5CNFSM4IUHJCYKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6F7GIA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3008?email_source=notifications\u0026email_token=AFTOJK6LFJWDTEJQJY2TZ7LQIWNSVA5CNFSM4IUHJCYKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6F7GIA#issuecomment-529265440",
"url": "https://github.com/quicwg/base-drafts/issues/3008?email_source=notifications\u0026email_token=AFTOJK6LFJWDTEJQJY2TZ7LQIWNSVA5CNFSM4IUHJCYKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6F7GIA#issuecomment-529265440",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d75a3aaf006e_5f4d3f9a098cd95c248490--


From nobody Sun Sep  8 17: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 E90C312004D for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 17:58: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 gnEUInAf1Mur for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 17:58:20 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4DC85120059 for <quic-issues@ietf.org>; Sun,  8 Sep 2019 17:58:20 -0700 (PDT)
Date: Sun, 08 Sep 2019 17:58:19 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567990699; bh=GMUuHQUByP3QjeIUKrsQGo+IAod8W1fd6Ji6WMYGMGA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1l1cdMPmslDWMeE73vCKw8TeZ+HKglrC735G8fhAEhjrfEsjSh0qVRzjlzoT6+fU8 B0fVrsHX0xQoYhlE96iNe96XSYKPZzkgP7diqUscMC9nwMLQsrqc11/t+LjGHhZF28 whwkynuUo2zJi3IRoDI2TL0InvPLo7xZdJl6ybu4=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZMYJICQ5IUV36GNIF3QLEBVEVBNHHB2OECMQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3008/issue_event/2617120455@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3008@github.com>
References: <quicwg/base-drafts/issues/3008@github.com>
Subject: Re: [quicwg/base-drafts] The QUIC bit in stateless resets (#3008)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d75a3abf854_74913fe0cd4cd964188776"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Xk59wJIc9Vi-IF4cXA3BG5QdOWU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 00:58:23 -0000

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

Closed #3008.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3008#event-2617120455
----==_mimepart_5d75a3abf854_74913fe0cd4cd964188776
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="490242660" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3008" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3008/hovercard" href="https://github.com/quicwg/base-drafts/issues/3008">#3008</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/3008?email_source=notifications&amp;email_token=AFTOJK26FCEHFQKINNNZIILQIWNSXA5CNFSM4IUHJCYKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTP7BNRY#event-2617120455">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4EFO4ZCM6SD6KANGDQIWNSXANCNFSM4IUHJCYA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK23DBSIWUQG366F7NTQIWNSXA5CNFSM4IUHJCYKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTP7BNRY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3008?email_source=notifications\u0026email_token=AFTOJK26FCEHFQKINNNZIILQIWNSXA5CNFSM4IUHJCYKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTP7BNRY#event-2617120455",
"url": "https://github.com/quicwg/base-drafts/issues/3008?email_source=notifications\u0026email_token=AFTOJK26FCEHFQKINNNZIILQIWNSXA5CNFSM4IUHJCYKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTP7BNRY#event-2617120455",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d75a3abf854_74913fe0cd4cd964188776--


From nobody Sun Sep  8 18: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 51DE9120059 for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:08:34 -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 hD7K7EF8tWtT for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:08:32 -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 370BF12004D for <quic-issues@ietf.org>; Sun,  8 Sep 2019 18:08:32 -0700 (PDT)
Date: Sun, 08 Sep 2019 18:08:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567991311; bh=ruZ1y3rjRYhZ9Vuwplu+rd2HwXdPpNthqCVHydX4PM4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Z4aPVASBBFFsppZaGGRdV5VvKb/fcpfMHF6uZ7aB5D19b5HBHYne3HEf/PjyP65h4 3BPCzCQHvqbEQoauxxASf4EaS1cUgXY5V7cJ/RXlNzsqN/5SM4iZPu1qqfmfLqv8QN b1wDet/L4FngL9H8a80nXy4SREobKTFmGqJ9coVE=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYTZZD43O56E4ULHIV3QLFH7EVBNHHB2OXHYQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3009/review/285247588@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3009@github.com>
References: <quicwg/base-drafts/pull/3009@github.com>
Subject: Re: [quicwg/base-drafts] Cache git repo, draft references in Circle (#3009)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d75a60f5c6d9_214e3fddfc2cd96c2407b3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OTLNqvQd5jYPEkJzUDYIC9KEB10>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 01:08:34 -0000

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

martinthomson commented on this pull request.

I was concerned that this wouldn't be very much good.

The `{{ .Revision }}` key means that that cache entry is only going to be good for rebuilding that revision, something that we don't do, except when we are tagging a release.  The tag for `{{ .Branch }}` is probably good, but not for `master`, which will be baking in as soon as this lands (if it hasn't already).

The `{{ epoch }}` tag is only good if we run builds within a second of each other.

How about an idea that I just had.  We can run arbitrary code to generate a file.  If we were to write something to a file and then use `{{ checksum ".reference-cache-key" }}` we could ensure that the value rolls over daily so that we have a hot reference cache.  We could do the same for the git cache so that it is mostly at most a certain date old.  You can even cascade caches by reading from `{{ checksum ".cache-today" }}` and `{{ checksum ".cache-yesterday" }}`.



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

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

<p>I was concerned that this wouldn't be very much good.</p>
<p>The <code>{{ .Revision }}</code> key means that that cache entry is only going to be good for rebuilding that revision, something that we don't do, except when we are tagging a release.  The tag for <code>{{ .Branch }}</code> is probably good, but not for <code>master</code>, which will be baking in as soon as this lands (if it hasn't already).</p>
<p>The <code>{{ epoch }}</code> tag is only good if we run builds within a second of each other.</p>
<p>How about an idea that I just had.  We can run arbitrary code to generate a file.  If we were to write something to a file and then use <code>{{ checksum ".reference-cache-key" }}</code> we could ensure that the value rolls over daily so that we have a hot reference cache.  We could do the same for the git cache so that it is mostly at most a certain date old.  You can even cascade caches by reading from <code>{{ checksum ".cache-today" }}</code> and <code>{{ checksum ".cache-yesterday" }}</code>.</p>

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


From nobody Sun Sep  8 18:11: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 AEC42120089 for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:11: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 LbKTAvLKDIhN for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:11:09 -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 9216712004D for <quic-issues@ietf.org>; Sun,  8 Sep 2019 18:11:09 -0700 (PDT)
Date: Sun, 08 Sep 2019 18:11:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567991468; bh=aj/NShXzrYxEBti+YMOq/cEbOh8JsmZx7giqTisiA9o=; h=Date:From:To:Subject:From; b=PllkqVYk9x458od1if/Q1WDzSuP+yExOnOeJCym/nVDa0TwBTjX/NJOq6hAXGfYqY r5CWYN+xyGA6Qh95naNiQTXIJ64Vs7WWTb6LFWIaetzh9V8ZlLuq8C1a+CJh3Fw/iI Xq7YDOqwlULDM1JnDZPvihjw4Ti83jB5q8fAux6Y=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/cleanup-sr/6048b4-967bbe@github.com>
Subject: [quicwg/base-drafts] 967bbe: Taking Ian's rewording
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ER9WI4QmcrT28gQ6shlCxa9xh5A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 01:11:11 -0000

  Branch: refs/heads/cleanup-sr
  Home:   https://github.com/quicwg/base-drafts
  Commit: 967bbe7b5d2c953b04cc4bc9333c817cce75b5cf
      https://github.com/quicwg/base-drafts/commit/967bbe7b5d2c953b04cc4bc9333c817cce75b5cf
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-09-09 (Mon, 09 Sep 2019)

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

  Log Message:
  -----------
  Taking Ian's rewording



From nobody Sun Sep  8 18:11: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 B1D1612004D for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:11: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 Hf5JwnprLXx4 for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:11: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 73427120089 for <quic-issues@ietf.org>; Sun,  8 Sep 2019 18:11:17 -0700 (PDT)
Date: Sun, 08 Sep 2019 18:11:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567991476; bh=imotvDkEnL+qwp9v4Et8m3Jfq23ciy5L7P02fJmWWw0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JAxEfqJ1pR9KEog2mZTlqh2g0KLZATKv+IOQoSpdJxEUIHvhTfz3sl3gB+Z0vaEmg 1OYJB77lJViky3ckGXa5ont+qMpp7y52S/yo0hOt1UbxSx2JHPQPuTW6SDV0pCNf2G ZMBeBDYy08xanZGe0sKMQ4XJLsRYCE3Q8NiOYJSE=
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/3007/push/4010510193@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3007@github.com>
References: <quicwg/base-drafts/pull/3007@github.com>
Subject: Re: [quicwg/base-drafts] Attempt to make the stateless reset text better (#3007)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d75a6b473781_5f663f9a098cd95c275146"; 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/qSJ11bEQdSdxB4XJlFfDYXR0b34>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 01:11:19 -0000

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

@martinthomson pushed 1 commit.

967bbe7b5d2c953b04cc4bc9333c817cce75b5cf  Taking Ian's rewording


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3007/files/6048b49dc4316683a4e35584d58aabb16719a6ce..967bbe7b5d2c953b04cc4bc9333c817cce75b5cf

----==_mimepart_5d75a6b473781_5f663f9a098cd95c275146
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/967bbe7b5d2c953b04cc4bc9333c817cce75b5cf">967bbe7</a>  Taking Ian&#39;s rewording</li>
</ul>


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

----==_mimepart_5d75a6b473781_5f663f9a098cd95c275146--


From nobody Sun Sep  8 18:12: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 F2C4F120089 for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:12: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 ovGeEjzaHbYB for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:12: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 39A0B12004D for <quic-issues@ietf.org>; Sun,  8 Sep 2019 18:12:49 -0700 (PDT)
Date: Sun, 08 Sep 2019 18:12:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567991568; bh=URYOKonphhHzft+atFebME2llEot6KLY1DeM//2TBKc=; h=Date:From:To:Subject:From; b=A53xYpPQkjosV37My0Rr6fukFVVOa59L4mBMsrkJFhdpEZmrPA/ChnlNqOwPhZJ8B sIdkbINvny17MD440mrG4IJN9heRdE7AUMm7UjjtyiYK8rYbPO/oUQQ1l4RC17BT1A TXACnPQW9fpqHLjt/zj6gWLhmwjgJouvgokNUJhE=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/3b0d58-eb1e93@github.com>
Subject: [quicwg/base-drafts] eb1e93: Script updating gh-pages from 967bbe7b. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/86T89eF11DJ80L5LfrQNBjB-z2M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 01:12:51 -0000

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

  Changed paths:
    M cleanup-sr/draft-ietf-quic-http.html
    M cleanup-sr/draft-ietf-quic-http.txt
    M cleanup-sr/draft-ietf-quic-invariants.html
    M cleanup-sr/draft-ietf-quic-invariants.txt
    M cleanup-sr/draft-ietf-quic-qpack.html
    M cleanup-sr/draft-ietf-quic-qpack.txt
    M cleanup-sr/draft-ietf-quic-recovery.html
    M cleanup-sr/draft-ietf-quic-recovery.txt
    M cleanup-sr/draft-ietf-quic-tls.html
    M cleanup-sr/draft-ietf-quic-tls.txt
    M cleanup-sr/draft-ietf-quic-transport.html
    M cleanup-sr/draft-ietf-quic-transport.txt
    M index.html
    R jri/ack-el/draft-ietf-quic-http.html
    R jri/ack-el/draft-ietf-quic-http.txt
    R jri/ack-el/draft-ietf-quic-invariants.html
    R jri/ack-el/draft-ietf-quic-invariants.txt
    R jri/ack-el/draft-ietf-quic-qpack.html
    R jri/ack-el/draft-ietf-quic-qpack.txt
    R jri/ack-el/draft-ietf-quic-recovery.html
    R jri/ack-el/draft-ietf-quic-recovery.txt
    R jri/ack-el/draft-ietf-quic-tls.html
    R jri/ack-el/draft-ietf-quic-tls.txt
    R jri/ack-el/draft-ietf-quic-transport.html
    R jri/ack-el/draft-ietf-quic-transport.txt
    R jri/ack-el/index.html
    R jri/ecn/draft-ietf-quic-http.html
    R jri/ecn/draft-ietf-quic-http.txt
    R jri/ecn/draft-ietf-quic-invariants.html
    R jri/ecn/draft-ietf-quic-invariants.txt
    R jri/ecn/draft-ietf-quic-qpack.html
    R jri/ecn/draft-ietf-quic-qpack.txt
    R jri/ecn/draft-ietf-quic-recovery.html
    R jri/ecn/draft-ietf-quic-recovery.txt
    R jri/ecn/draft-ietf-quic-tls.html
    R jri/ecn/draft-ietf-quic-tls.txt
    R jri/ecn/draft-ietf-quic-transport.html
    R jri/ecn/draft-ietf-quic-transport.txt
    R jri/ecn/index.html

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



From nobody Sun Sep  8 18:13: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 6FD3C120089 for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:13: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 DMEuhxLLYs1E for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:13: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 DC91A12004D for <quic-issues@ietf.org>; Sun,  8 Sep 2019 18:13:15 -0700 (PDT)
Date: Sun, 08 Sep 2019 18:13:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567991594; bh=AtWJmteGn4X1GN9mjGR+yucKlzYMFjylCqvYn7XkMK4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TScr9LjHqNWMWxv4AjsYyZe1E0K2J5BPbFc+H6IJAmRfRRBxiHtum3dfWco+IwdH6 9UtEYhUPf313SOFn5KMFwkZUdq8IMlH93wShdbOX1OGEmFoSLqBSiMkYCHICsirJej +wvE7wx2NrMD8bpagRGBwogtNmrKJm7htmaA47gk=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5DPJTBELCYD6VVJFV3QLFZVEVBNHHBYXLIMY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2947/c529267154@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2947@github.com>
References: <quicwg/base-drafts/pull/2947@github.com>
Subject: Re: [quicwg/base-drafts] Describe interaction between QUIC and TLS regarding saved 0-RTT state (#2947)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d75a72acefac_57703fd62becd95c40145b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Rc_r3-A5w4WKkQCz7fDRYBV_o6E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 01:13:17 -0000

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

I think that this is borderline editorial, as you more or less have to do this.  It does change the API, which is enough of a change that it's worth having an issue.  I'll open an issue and ask the chairs to call consensus.

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

<p>I think that this is borderline editorial, as you more or less have to do this.  It does change the API, which is enough of a change that it's worth having an issue.  I'll open an issue and ask the chairs to call consensus.</p>

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


From nobody Sun Sep  8 18:14: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 98229120089 for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:14: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 RkOFRD2f2ns3 for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:14: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 235B912004D for <quic-issues@ietf.org>; Sun,  8 Sep 2019 18:14:42 -0700 (PDT)
Date: Sun, 08 Sep 2019 18:14:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567991681; bh=HT7X+LNdQjkWI8waBSTKg8OqktF3lhqK4x3+yh8zBJs=; h=Date:From:To:Subject:From; b=ezg046DBJV82Fh5OC86FXZ9DvJiFRmyMWTbbLz1uuUbJA3B8yGSsG/qIz8WcwLQAm WzgQhlKqTiRf7KGIGW1+5ewghF88CU0qNvcQZ3WnsXaj/dhZFPwlRl0z49trds9fgY /PpwyBlvxcHen4J83JkUpGqqURX6t18ISoztBxBY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/eb1e93-f8e101@github.com>
Subject: [quicwg/base-drafts] f8e101: Script updating issues at 2019-09-09T01:14: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/zKnLdJQh3DUNrJ9CHaFV8v9zaWg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 01:14:44 -0000

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

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-09-09T01:14:34Z. [ci skip]



From nobody Sun Sep  8 18:16: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 C72D4120089 for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:16:19 -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 VoFIlPkK6kFX for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:16: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 76DA812004D for <quic-issues@ietf.org>; Sun,  8 Sep 2019 18:16:18 -0700 (PDT)
Date: Sun, 08 Sep 2019 18:16:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567991777; bh=bESZtstKjGkqrB2X0INhYf4QRnApapVxsMHxE2lsnyQ=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=SNaDMQCv/bo14EnOdTgb4LGdUb2QUmfz4VpfkOIrG1PiVpBULiVDy/7IBO+WDLyGD QVWODK7gvwEPvVzVTe4X6Hqu75cpy9QlQ+sKmUYyN4GValRYAcs5uLVeFXvo6SdU1y U6Y/LCwK8rl0kMbODPq1h2cx4h+KUrg0keI/Dv04=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYWVJKMSQBCGU6ACDN3QLGFDEVBNHHB2QMM2Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3010@github.com>
Subject: [quicwg/base-drafts] Validating 0-RTT configuration in TLS API (#3010)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d75a7e157867_62ca3fc9598cd9642063e6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/hEN3__96Ana9otwjZHFyoaFsmgk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 01:16:20 -0000

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

PR #2947 describes a new piece of the interface between a QUIC and TLS implementation as it relates to 0-RTT.  That's not really new - you had to do this to get 0-RTT working - but it is enough new text that it's worth having this pass under the collective noses of the working group.

@nharper has produced text, which I think is good, but we should run the process.

Chairs, my suggestion is that we mark this "design" and run 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/3010
----==_mimepart_5d75a7e157867_62ca3fc9598cd9642063e6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>PR <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="475883622" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2947" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2947/hovercard" href="https://github.com/quicwg/base-drafts/pull/2947">#2947</a> describes a new piece of the interface between a QUIC and TLS implementation as it relates to 0-RTT.  That's not really new - you had to do this to get 0-RTT working - but it is enough new text that it's worth having this pass under the collective noses of the working group.</p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=653608" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nharper">@nharper</a> has produced text, which I think is good, but we should run the process.</p>
<p>Chairs, my suggestion is that we mark this "design" and run 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/3010?email_source=notifications&amp;email_token=AFTOJK7ZH2IO2GEWHJZTXMTQIWPWDA5CNFSM4IUVSMOKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HKBRTLA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZXESQXIO4FDJ5SM3LQIWPWDANCNFSM4IUVSMOA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7YQGWRFAAW743JR4LQIWPWDA5CNFSM4IUVSMOKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HKBRTLA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3010?email_source=notifications\u0026email_token=AFTOJK7ZH2IO2GEWHJZTXMTQIWPWDA5CNFSM4IUVSMOKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HKBRTLA",
"url": "https://github.com/quicwg/base-drafts/issues/3010?email_source=notifications\u0026email_token=AFTOJK7ZH2IO2GEWHJZTXMTQIWPWDA5CNFSM4IUVSMOKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HKBRTLA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d75a7e157867_62ca3fc9598cd9642063e6--


From nobody Sun Sep  8 18:19: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 645F4120089 for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:19:56 -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 lKqq2D5lRkJJ for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:19:54 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A7B4B12004D for <quic-issues@ietf.org>; Sun,  8 Sep 2019 18:19:54 -0700 (PDT)
Date: Sun, 08 Sep 2019 18:19:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567991993; bh=LJywORYMaoz9757YWtyHWpG2WMrsmIGn+baGpu+nW/8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kuGNyDr9sqmQ3pa66eEUJD3GnwXLKMecn9WqyVwLjZ4nXrbYB1WYjU6PINRzMEdJx Vm7BMIEDgxOOV8FcV0iuTdviLjJlPba/deAYvmJitFWN4zaX4lVwFA8+5Yotc/zKyW V26IUl8f/IoFVJ5+GGw8qjw1iOoSg1VJvcGj01mQ=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2W4UGPFBAONWFIV7F3QLGSTEVBNHHBXP6EBY@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/285248757@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_5d75a8b985fbe_3ef3fd1caccd96438158a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/pBMCwbv0TcjI4wb1Zg0H0N1x4rE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 01:19:56 -0000

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

martinthomson commented on this pull request.



> @@ -805,10 +805,12 @@ 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 though the destination connection ID in client Initial packets
-changes after receiving a Retry.  A server that sends a Retry
-therefore needs to either remember the original connection ID
-or save the original connection ID in the Retry token.
+connection, even though the destination connection ID in client Initial
+packets changes after receiving a Retry.  A server that sends a Retry
+therefore needs to either remember the original connection ID or save
+the original connection ID in the Retry token.  Because the initial
+connection ID is included in the server's transport parameters, the only
+difference is when in the packet processing this connection ID is utilized.

This reads like justification for a change, rather than static text.  How about:

> The initial connection ID is needed by a server to reconstruct packet protection keys and so that it can produce the correct value for the original_connection_id transport parameter.

And are we using "initial" or "original" here?  I went with original on the basis that it distinguished this from Initial packets, but it's not clear to be that that distinction is necessary, or even a good idea.  After all, this connection ID is what is driving packet protection for those packets; the linkage might be useful.

-- 
You are receiving this 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-285248757
----==_mimepart_5d75a8b985fbe_3ef3fd1caccd96438158a
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/2878#discussion_r322040593">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -805,10 +805,12 @@ 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 though the destination connection ID in client Initial packets
-changes after receiving a Retry.  A server that sends a Retry
-therefore needs to either remember the original connection ID
-or save the original connection ID in the Retry token.
+connection, even though the destination connection ID in client Initial
+packets changes after receiving a Retry.  A server that sends a Retry
+therefore needs to either remember the original connection ID or save
+the original connection ID in the Retry token.  Because the initial
+connection ID is included in the server&#39;s transport parameters, the only
+difference is when in the packet processing this connection ID is utilized.
</pre>
<p>This reads like justification for a change, rather than static text.  How about:</p>
<blockquote>
<p>The initial connection ID is needed by a server to reconstruct packet protection keys and so that it can produce the correct value for the original_connection_id transport parameter.</p>
</blockquote>
<p>And are we using "initial" or "original" here?  I went with original on the basis that it distinguished this from Initial packets, but it's not clear to be that that distinction is necessary, or even a good idea.  After all, this connection ID is what is driving packet protection for those packets; the linkage might be useful.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK2I2MM6UCXMLJVOJS3QIWQDTA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEAIZ5I#pullrequestreview-285248757">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK72QN57CFIBGUNXBBDQIWQDTANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3NQ5JE2CZK3I6FWIDQIWQDTA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEAIZ5I.gif" height="1" width="1" 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=AFTOJK2I2MM6UCXMLJVOJS3QIWQDTA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEAIZ5I#pullrequestreview-285248757",
"url": "https://github.com/quicwg/base-drafts/pull/2878?email_source=notifications\u0026email_token=AFTOJK2I2MM6UCXMLJVOJS3QIWQDTA5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEAIZ5I#pullrequestreview-285248757",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d75a8b985fbe_3ef3fd1caccd96438158a--


From nobody Sun Sep  8 18:26: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 B0B32120059 for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:26: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 3lCmxAVG9Vqb for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:26: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 9CCA112004D for <quic-issues@ietf.org>; Sun,  8 Sep 2019 18:26:51 -0700 (PDT)
Date: Sun, 08 Sep 2019 18:26:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567992410; bh=mJVqvTd+LpHULaH1MSi6Jp1gKQi6Njw752BpfjcPDpA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VWoKblf+9Ct4+LdXzAIptgWWQ39FD1puyKECLZK/RopMaHMmCFssMHcfoHX6qy+/C dGTVhSqeACBZNbND7yiBjbncSMRzRL3Z86Wg3Cv/pZzhZYxPxt3ZV3f8Grx0gm3nna 2NYAzeQTU1HZtvv9T8hiDCdPOV0vV2wJpUmcbUzk=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK45JUWIHRMDMP4WGVF3QLONVEVBNHHBYXLIMY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2947/review/285249524@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2947@github.com>
References: <quicwg/base-drafts/pull/2947@github.com>
Subject: Re: [quicwg/base-drafts] Describe interaction between QUIC and TLS regarding saved 0-RTT state (#2947)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d75aa5a92995_19593fbd9a6cd96829382d"; 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/sEEKsMygS1w3HIi3sscQousWxow>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 01:26:53 -0000

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


From nobody Sun Sep  8 18:27: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 2FC4E120091 for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:27: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 iorUd5w6fN2f for <quic-issues@ietfa.amsl.com>; Sun,  8 Sep 2019 18:27: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 27E6B12004D for <quic-issues@ietf.org>; Sun,  8 Sep 2019 18:27:05 -0700 (PDT)
Date: Sun, 08 Sep 2019 18:27:04 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1567992424; bh=FL81NRh10JFFFfy2r0RzZVvE/wrG6dNBy8ug/Zjh9rQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lAoNvmApVrFCNnt8Ob9590WyY1VEP7NKGgS7BJ6qdzbnE678C68I5qhuE1yb2WsmX ywHAEM2Uesvm3yUgHY1n8t8hv1L/r1pCPLHEyX+/gZDeNOtAWO96zaCjIRw/2PnUxZ KdlsIEEcOVILPb6M/VEk1TRRGxjZNF9/eOKRcPrk=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK45FAS22WMI2KI2UAF3QLOOREVBNHHBYXLIMY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2947/review/285249466@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2947@github.com>
References: <quicwg/base-drafts/pull/2947@github.com>
Subject: Re: [quicwg/base-drafts] Describe interaction between QUIC and TLS regarding saved 0-RTT state (#2947)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d75aa68683aa_75f23fe62eacd95c425789"; 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/mII1Vu9aXJhcmoRRjO4Kv6Y0vy8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 01:27:07 -0000

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

kazuho commented on this pull request.

The text looks like a nice improvement :+1: :+1:. LGTM modulo the point below.

> @@ -644,6 +647,27 @@ A client MAY attempt to send 0-RTT again if it receives a Retry or Version
 Negotiation packet.  These packets do not signify rejection of 0-RTT.
 
 
+## Validating 0-RTT Configuration
+
+When a server receives a ClientHello with the "early_data" extension, it has to
+decide whether to accept or reject early data from the client. Some of this
+decision is made by the TLS stack (e.g., checking that the cipher suite being
+resumed was included in the ClientHello; see Section 4.2.10 of {{!TLS13}}). Even
+when the TLS stack has no reason to reject early data, the QUIC stack or the
+application protocol using QUIC might reject early data because the
+configuration of the transport or application associated with the resumed
+session is not compatible with the server's current configuration.
+
+QUIC requires additional transport state to be associated with a 0-RTT session
+ticket. If stateless session tickets are used, this information must be stored
+in the session ticket. Application protocols that use QUIC might have similar

While it is true that additional transport state needs to be associated and verified when doing 0-RTT resumption, I am not sure if that necessarily mean that "this information must be stored in the session ticket."

For example, a server might store the associated states in a NEW_TOKEN token, that also contains the hash value of the session ticket. In such a design, when accepting a new connection, a server can consult the pair of the token and the session ticket, and decide if it can accept 0-RTT.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2947#pullrequestreview-285249466
----==_mimepart_5d75aa68683aa_75f23fe62eacd95c425789
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>The text looks like a nice improvement <g-emoji class=3D"g-emoji" alia=
s=3D"+1" fallback-src=3D"https://github.githubassets.com/images/icons/emo=
ji/unicode/1f44d.png">=F0=9F=91=8D</g-emoji> <g-emoji class=3D"g-emoji" a=
lias=3D"+1" fallback-src=3D"https://github.githubassets.com/images/icons/=
emoji/unicode/1f44d.png">=F0=9F=91=8D</g-emoji>. LGTM modulo the point be=
low.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2947#discussi=
on_r322041150">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -644,6 +647,27 @@ A client MAY attempt =
to send 0-RTT again if it receives a Retry or Version=0D
 Negotiation packet.  These packets do not signify rejection of 0-RTT.=0D=

 =0D
 =0D
+## Validating 0-RTT Configuration=0D
+=0D
+When a server receives a ClientHello with the &quot;early_data&quot; ext=
ension, it has to=0D
+decide whether to accept or reject early data from the client. Some of t=
his=0D
+decision is made by the TLS stack (e.g., checking that the cipher suite =
being=0D
+resumed was included in the ClientHello; see Section 4.2.10 of {{!TLS13}=
}). Even=0D
+when the TLS stack has no reason to reject early data, the QUIC stack or=
 the=0D
+application protocol using QUIC might reject early data because the=0D
+configuration of the transport or application associated with the resume=
d=0D
+session is not compatible with the server&#39;s current configuration.=0D=

+=0D
+QUIC requires additional transport state to be associated with a 0-RTT s=
ession=0D
+ticket. If stateless session tickets are used, this information must be =
stored=0D
+in the session ticket. Application protocols that use QUIC might have si=
milar=0D
</pre>=0D
<p>While it is true that additional transport state needs to be associate=
d and verified when doing 0-RTT resumption, I am not sure if that necessa=
rily mean that "this information must be stored in the session ticket."</=
p>=0D
<p>For example, a server might store the associated states in a NEW_TOKEN=
 token, that also contains the hash value of the session ticket. In such =
a design, when accepting a new connection, a server can consult the pair =
of the token and the session ticket, and decide if it can accept 0-RTT.</=
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/2947?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK4CCBY2ZFF6N2TJUGDQIWQ6RA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEAI7OQ#pullrequestreview-285249466=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK3WT2AA523XK3APGMLQIWQ6RANCNFSM4IIVRW7Q">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK5HWKB5=
RBOJ4HCRWOTQIWQ6RA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCEAI7OQ.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/2947?email_source=3D=
notifications\u0026email_token=3DAFTOJK4CCBY2ZFF6N2TJUGDQIWQ6RA5CNFSM4IIV=
RW72YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
EAI7OQ#pullrequestreview-285249466",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2947?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK4CCBY2ZFF6N2TJUGDQIWQ6RA5CNFSM4IIVRW=
72YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEA=
I7OQ#pullrequestreview-285249466",=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_5d75aa68683aa_75f23fe62eacd95c425789--


From nobody Mon Sep  9 08:03: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 C4A9712008B for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 08:03:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.454
X-Spam-Level: 
X-Spam-Status: No, score=-1.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_NONE=-0.0001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1ifKcbEHnakY for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 08:03:07 -0700 (PDT)
Received: from xtrwsrhn.outbound-mail.sendgrid.net (xtrwsrhn.outbound-mail.sendgrid.net [167.89.101.2]) (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 F0D31120819 for <quic-issues@ietf.org>; Mon,  9 Sep 2019 08:03:05 -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=NnwflEY+hke9WXfBpOvfMcfAvU8=; b=dkRW/8QXNfrNnWXz 3mHuCW3XA9TPCYLFMsHd4i6b2EBB/Hl2JdJfz4AaoGmu0Wb6oi+x54jkBVw1CxpH zv2rrLoGpSYJmdalAAkQ8QYX3r1pmRfft0Qi+xs2qDaCO0T9/3NVPWxftepFWqQU PzM9xMJ3gsxjlsJDSOv55p9McWA=
Received: by filter0105p1iad2.sendgrid.net with SMTP id filter0105p1iad2-11439-5D7669A9-C 2019-09-09 15:03:05.150462602 +0000 UTC m=+507498.582126918
Received: from github-lowworker-20a34ff.cp1-iad.github.net (unknown [140.82.115.71]) by ismtpd0037p1iad2.sendgrid.net (SG) with ESMTP id gvXa0lVTSXqjuaHcqhzcNg for <quic-issues@ietf.org>; Mon, 09 Sep 2019 15:03:05.124 +0000 (UTC)
Received: from github.com (localhost [127.0.0.1]) by github-lowworker-20a34ff.cp1-iad.github.net (Postfix) with ESMTP id 0D85A3409CD for <quic-issues@ietf.org>; Mon,  9 Sep 2019 08:03:05 -0700 (PDT)
Date: Mon, 09 Sep 2019 15:03:05 +0000 (UTC)
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK42VLLDLXKI47R3V5V3QOVDTEVBNHHB2NT5NA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3007/review/285574593@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3007@github.com>
References: <quicwg/base-drafts/pull/3007@github.com>
Subject: Re: [quicwg/base-drafts] Attempt to make the stateless reset text better (#3007)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7669a96798_79143f7e21ecd96431936e"; 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: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak1kAmMklm0BIbDT11fOZQPCrubaVOyvhku5cw Ad4P5FtP1hnvMAZ396HLFmsDI3JrDd4JPqjebJbicxFWJk8N8cJSrMj4YDPkjQzOyQaGbuQZRAB8D2 KzE0ZhlddCF3PjRgGl/crv5IQtbMKaOuFecUY8tVWiFsYgIHRoHV1QDJDQ==
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/uB7BUBppnyUbLAStUjZO2unffJA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 15:03:10 -0000

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


From nobody Mon Sep  9 08:12: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 B31DB120823 for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 08:12: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 twATvAz3oAQn for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 08:12: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 D2A3A120828 for <quic-issues@ietf.org>; Mon,  9 Sep 2019 08:12:26 -0700 (PDT)
Date: Mon, 09 Sep 2019 08:12:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568041945; bh=q6zfXAjq0mzqjfLWIPzWknn087mJ4CG5UAW7ZF0dB64=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NcWoz/ejSwL+Rzr5w6eTJPNwtJWkFzSj6s9zQ+6M1OnRqmmQHXmJo3FOMZZgbeYpR QAuD1OljHuoQ27tZos3eEkNEfHoUfzUbOJgd1rlYNIzXTp8W8ZlogjpIO3bspGZnXF AWfUNmY6QwhDOoV2MY0f3hvywR209iHmA1J1wtHM=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5USW5PIB2RDOODBPV3QOWGTEVBNHHB2OXHYQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3009/c529524438@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3009@github.com>
References: <quicwg/base-drafts/pull/3009@github.com>
Subject: Re: [quicwg/base-drafts] Cache git repo, draft references in Circle (#3009)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d766bd9dc091_735e3fb0c42cd968190232"; 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/GPwyigrp4cYxzMtkFcZ1LXprk1E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 15:12:29 -0000

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

The important piece there are the multi-tiered keys in restore:
```
      - restore_cache:
          name: "Restoring cache - Git"
          keys:
            - v1-cache-git-{{ .Branch }}-{{ .Revision }}
            - v1-cache-git-{{ .Branch }}
            - v1-cache-git-

      - restore_cache:
          name: "Restoring cache - References"
          keys:
            - v1-cache-references-{{ epoch }}
            - v1-cache-references-
```
The revision will never match, so it picks up the most recent git repo cached for that branch.  The epoch will almost never match, so it picks up the most recent reference cache generated.  We could drop the first line of each restore_cache keys directive and get the same 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/3009#issuecomment-529524438
----==_mimepart_5d766bd9dc091_735e3fb0c42cd968190232
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The important piece there are the multi-tiered keys in restore:</p>
<pre><code>      - restore_cache:
          name: "Restoring cache - Git"
          keys:
            - v1-cache-git-{{ .Branch }}-{{ .Revision }}
            - v1-cache-git-{{ .Branch }}
            - v1-cache-git-

      - restore_cache:
          name: "Restoring cache - References"
          keys:
            - v1-cache-references-{{ epoch }}
            - v1-cache-references-
</code></pre>
<p>The revision will never match, so it picks up the most recent git repo cached for that branch.  The epoch will almost never match, so it picks up the most recent reference cache generated.  We could drop the first line of each restore_cache keys directive and get the same 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/3009?email_source=notifications&amp;email_token=AFTOJK6AKO2WWXIC34MHQPDQIZRVTA5CNFSM4IUKPTZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6H6NVQ#issuecomment-529524438">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5N2IYVGE645GMFUMDQIZRVTANCNFSM4IUKPTZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK46IBDLP3JA4Z66VJ3QIZRVTA5CNFSM4IUKPTZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6H6NVQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3009?email_source=notifications\u0026email_token=AFTOJK6AKO2WWXIC34MHQPDQIZRVTA5CNFSM4IUKPTZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6H6NVQ#issuecomment-529524438",
"url": "https://github.com/quicwg/base-drafts/pull/3009?email_source=notifications\u0026email_token=AFTOJK6AKO2WWXIC34MHQPDQIZRVTA5CNFSM4IUKPTZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6H6NVQ#issuecomment-529524438",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d766bd9dc091_735e3fb0c42cd968190232--


From nobody Mon Sep  9 08:32: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 4ED871200B5 for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 08:32: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 FlPz6KKSeKRT for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 08:31:58 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B9AA712008B for <quic-issues@ietf.org>; Mon,  9 Sep 2019 08:31:58 -0700 (PDT)
Date: Mon, 09 Sep 2019 08:31:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568043118; bh=wROIIUU59WHScAAaz5CM479TxoSL93zvmQCdEg4/Vck=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Bn0LbEsSfFePBsBJEBo992q77PAuzjxTtH8cTc9XeVdmj3RYCl4SK9+kinhC70o+U KcyioWtAyH00VNRiiy7ElOXJHW5H388D8+13o9js4Kx01AewFEFLZMcbVbKxYt1YqN rpK2iUqIMfJs335xRPGBvxU7KKlLZtHeRE6T5378=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2XPTE2KIKYCNGA22V3QOYP3EVBNHHB2OXHYQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3009/c529534484@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3009@github.com>
References: <quicwg/base-drafts/pull/3009@github.com>
Subject: Re: [quicwg/base-drafts] Cache git repo, draft references in Circle (#3009)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d76706deb09f_52d73fe715ecd95c2260b4"; 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/8CUjz1TV6q94S5wJr0xf9B0hXvI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 15:32:00 -0000

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

And too, the proof is in the pudding -- the first build on this branch took 1:48; git caching brought it to 0:56, and reference caching brought it to 0:37.
- Code checkout goes from 36 seconds to sub-second (shows as zero)
- Draft build time goes from 32 seconds to 6 seconds
- Saving the git cache costs 5-6 seconds
- Saving the reference cache is sub-second

There's a few seconds' variation around each of those -- the last build on the branch went back up to 0:43.  But still, I stand by my claim that we improve by nearly a minute per build.

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

<p>And too, the proof is in the pudding -- the first build on this branch took 1:48; git caching brought it to 0:56, and reference caching brought it to 0:37.</p>
<ul>
<li>Code checkout goes from 36 seconds to sub-second (shows as zero)</li>
<li>Draft build time goes from 32 seconds to 6 seconds</li>
<li>Saving the git cache costs 5-6 seconds</li>
<li>Saving the reference cache is sub-second</li>
</ul>
<p>There's a few seconds' variation around each of those -- the last build on the branch went back up to 0:43.  But still, I stand by my claim that we improve by nearly a minute per build.</p>

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


From nobody Mon Sep  9 08:36: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 7EF7912008B for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 08:36: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 KH4qCrtsnsZ0 for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 08:36:00 -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 21A6012002F for <quic-issues@ietf.org>; Mon,  9 Sep 2019 08:36:00 -0700 (PDT)
Date: Mon, 09 Sep 2019 08:35:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568043359; bh=+K/lopSufKUU9MZWaGrX4LuspCN9UCcJkt016tXQWCg=; h=Date:From:To:Subject:From; b=y2bsSMlQJnEq+6U+S3kf5ZXHcS6V/xndAuSai3s9AxuWkHCsoRuOJAwVgEl+A7qz2 N8GaEYzSPSHlmAz6VN/ntSImaSlag1R3A3YSMC+DfOoy79WcadUEP7aD83iq+PyGKO KSzKunk7NdQnZ+zMUlc5SfQe/+Nh7LTT5uIJuZ9Q=
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/circle_caching/c642ae-56e9e1@github.com>
Subject: [quicwg/base-drafts] 56e9e1: Add master to fallback path for new branches
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/13it8WnhqGklqDFsjxOnCds0EFQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 15:36:02 -0000

  Branch: refs/heads/circle_caching
  Home:   https://github.com/quicwg/base-drafts
  Commit: 56e9e1a6515ac1ea6e882a83c48d7149070bdd17
      https://github.com/quicwg/base-drafts/commit/56e9e1a6515ac1ea6e882a83c48d7149070bdd17
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-09 (Mon, 09 Sep 2019)

  Changed paths:
    M .circleci/config.yml

  Log Message:
  -----------
  Add master to fallback path for new branches

Newly-created branches are most likely to have been based on master; if no cache exists for a repo, take master as the starting point



From nobody Mon Sep  9 08:36: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 46EDB12008B for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 08:36: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 MbxPGa0fi9LP for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 08:36: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 AB94912002F for <quic-issues@ietf.org>; Mon,  9 Sep 2019 08:36:10 -0700 (PDT)
Date: Mon, 09 Sep 2019 08:36:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568043369; bh=v7CbHXbhDivMQYXKvvFOnX1OHRYDybfWgqKlTKFnnnA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=iTjQcYGAywgOGbbPG645pKKWG8QxHVZoM4g8E4g6KLDIgxjDbcktj4gthLAbZYP5R Cd+Uk6GPmVAhXghHZ3i58VZI2AbK/TOUX2GKqQp8JWBiH5TpETC02L8s1mnuRN2wYB 1SMRTfv0BFN6r/o3rcrqp8ZPKKBD6oGpveruiWJM=
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/3009/push/4013184686@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3009@github.com>
References: <quicwg/base-drafts/pull/3009@github.com>
Subject: Re: [quicwg/base-drafts] Cache git repo, draft references in Circle (#3009)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d767168eceec_34793ff9992cd968211522"; 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/dd3s-9vttLvfox1ZTdcVCyfDadI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 15:36:12 -0000

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

@MikeBishop pushed 1 commit.

56e9e1a6515ac1ea6e882a83c48d7149070bdd17  Add master to fallback path for new branches


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3009/files/c642ae92f3b78642e666d76701a1606d87446e8d..56e9e1a6515ac1ea6e882a83c48d7149070bdd17

----==_mimepart_5d767168eceec_34793ff9992cd968211522
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/56e9e1a6515ac1ea6e882a83c48d7149070bdd17">56e9e1a</a>  Add master to fallback path for new branches</li>
</ul>


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

----==_mimepart_5d767168eceec_34793ff9992cd968211522--


From nobody Mon Sep  9 08:36: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 33B9612008B for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 08:36: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 jrGpJ_2isdTv for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 08:36:43 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9C5EA12002F for <quic-issues@ietf.org>; Mon,  9 Sep 2019 08:36:43 -0700 (PDT)
Date: Mon, 09 Sep 2019 08:36:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568043402; bh=xfZSA6X/BHcS5Lyvwf/JdKl0Efl5Mwi4Fonjupg47yA=; h=Date:From:To:Subject:From; b=Yx4qRDxm7/sVo0XEv7pZbxf7UeCEtFaiZAMuChPcP7a0xuDRGCVTWCUy70MxmP9w3 PFu13yhS6uL45q7V2Qw9CBOuaPkEuHqEQI9kYHWyLD5Lbobl+PatQxT+n6mc78cjwB Zyrl27YQuNdA1X/9naCoZOaMEtAgIoGpUC9JLfZw=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f8e101-576463@github.com>
Subject: [quicwg/base-drafts] 576463: Script updating gh-pages from 56e9e1a6. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5aFb2975gG5U-M7S_Vhlw8H8UJA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 15:36:45 -0000

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

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

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



From nobody Mon Sep  9 08:38: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 7EDCF120127 for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 08:38: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 BREzwKzc8F7C for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 08:38: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 3DC4012008B for <quic-issues@ietf.org>; Mon,  9 Sep 2019 08:38:48 -0700 (PDT)
Date: Mon, 09 Sep 2019 08:38:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568043527; bh=ZgUTEI6i80y7ad73BWCT5+sqMJfeCmiZ/G2EpaQKS30=; h=Date:From:To:Subject:From; b=Ve0Wvb+Cw0bhpTT2G+6hNezbvXqh1wWNp7uWmpGXApK0dCmfFKpMLXF3e1TW6hIGX ghO8mFiX+2qPbJ9GdBShidJwtmSl4F9iW7iMA6mRw1krcg8xmIUqqiLHdMxi+oxqbR K+BKnf6K6Sw9jOmeANscHYoeEK9/i5NSaA1LsOmc=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/576463-09c252@github.com>
Subject: [quicwg/base-drafts] 09c252: Script updating issues at 2019-09-09T15:38:40Z. [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/1EqUqXnBDFZR_3s8mZAvK8K7Dr4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 15:38:49 -0000

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

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-09-09T15:38:40Z. [ci skip]



From nobody Mon Sep  9 09:34: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 85F43120271 for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 09:34: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 VLFwGMJP_TeK for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 09:34: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 85F271201EA for <quic-issues@ietf.org>; Mon,  9 Sep 2019 09:34:38 -0700 (PDT)
Date: Mon, 09 Sep 2019 09:34:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568046877; bh=s6hlqd0VOhg2+DaazFjpNoNzTt49C1eSXHGYO8k2Re0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Q76swyB33Y4od6jpAgEdvB4ZBda3jj/DGwHTZWwiqYtXDPkT/wW+mGTQs/fWRK7PG /Nnq94MA3s0EzQr+QANtxQG2joxJMUZqYik3F8Ls1E00Xh3iPO3scFZiobUTlk4Bkj vxDgJAHrr0A3CoymFFjlx6LUZ1q4A7RDH6G+H67k=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5AYVWQRYDSPHNXCHN3QO723EVBNHHB2NT5NA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3007/review/285625384@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3007@github.com>
References: <quicwg/base-drafts/pull/3007@github.com>
Subject: Re: [quicwg/base-drafts] Attempt to make the stateless reset text better (#3007)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d767f1d790e1_5cd93fe5df2cd9688033d"; 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/GRkHI_afY7Mjqc8bPYu1_kI7bG8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 16:34:41 -0000

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

martinduke approved this pull request.

I believe this PR addresses the stated issue, which is that the text is unclear.

However, I am still concerned about the security properties of this design.

> -16 bytes for AEAD expansion, and an extra byte to allow the peer to
-send a smaller stateless reset than the packet it receives.
-
-The Stateless Reset Token corresponds to the minimum expansion of the
-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.
+To entities other than its intended recipient, a stateless reset will appear to
+be a packet with a short header.  For the stateless reset to appear as a valid
+QUIC packet, the Unpredictable Bits field needs to include at least 38 bits of
+data (or 6 bytes, less the two fixed bits).

5 bytes

> -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.
+To entities other than its intended recipient, a stateless reset will appear to
+be a packet with a short header.  For the stateless reset to appear as a valid
+QUIC packet, the Unpredictable Bits field needs to include at least 38 bits of
+data (or 6 bytes, less the two fixed bits).
+
+A minimum size of 21 bytes does not guarantee that a stateless reset is
+difficult to distinguish from other packets if the recipient requires the use of
+a connection ID.  To prevent a resulting stateless reset from being trivially
+distinguishable from a valid packet, all packets sent by an endpoint SHOULD be
+padded to at least 22 bytes longer than the minimum connection ID that the
+endpoint might use.  An endpoint that sends a stateless reset in response to
+packet that is 43 bytes or less in length SHOULD send a stateless reset that is
+one byte shorter than the packet it responds to.

at least one byte?

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

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

<p>I believe this PR addresses the stated issue, which is that the text is unclear.</p>
<p>However, I am still concerned about the security properties of this design.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3007#discussion_r322332807">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -16 bytes for AEAD expansion, and an extra byte to allow the peer to
-send a smaller stateless reset than the packet it receives.
-
-The Stateless Reset Token corresponds to the minimum expansion of the
-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.
+To entities other than its intended recipient, a stateless reset will appear to
+be a packet with a short header.  For the stateless reset to appear as a valid
+QUIC packet, the Unpredictable Bits field needs to include at least 38 bits of
+data (or 6 bytes, less the two fixed bits).
</pre>
<p>5 bytes</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3007#discussion_r322334238">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -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.
+To entities other than its intended recipient, a stateless reset will appear to
+be a packet with a short header.  For the stateless reset to appear as a valid
+QUIC packet, the Unpredictable Bits field needs to include at least 38 bits of
+data (or 6 bytes, less the two fixed bits).
+
+A minimum size of 21 bytes does not guarantee that a stateless reset is
+difficult to distinguish from other packets if the recipient requires the use of
+a connection ID.  To prevent a resulting stateless reset from being trivially
+distinguishable from a valid packet, all packets sent by an endpoint SHOULD be
+padded to at least 22 bytes longer than the minimum connection ID that the
+endpoint might use.  An endpoint that sends a stateless reset in response to
+packet that is 43 bytes or less in length SHOULD send a stateless reset that is
+one byte shorter than the packet it responds to.
</pre>
<p>at least one byte?</p>

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


From nobody Mon Sep  9 09:44: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 C0949120098 for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 09:44: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 K-WZo4_q086D for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 09:44: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 EC8E112007A for <quic-issues@ietf.org>; Mon,  9 Sep 2019 09:44:14 -0700 (PDT)
Date: Mon, 09 Sep 2019 09:44:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568047454; bh=6lp1og0CD56TC+B5FyxxF0esw9b58y7aaRHYsIhMzwE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IzLuUre4kDGWTBZOfi88V5Wb9TtlK5zfvU6QrtJDFfU5hKagQT+sSO7SWxhOXiM2i B6Eqjyok+dcQKxbLc6/wAU4ld3oj/GCzvbW4I+D5CLGzmdUc1FDa6xw+e26tP3hEz2 Nyzgez1Xg2z4FfCmW8SnfBVwdBRIcqaJTDNAbmsc=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK767RSHZ4JLVFB7DS53QPA63EVBNHHBXP6EBY@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/285639503@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_5d76815de929c_61ab3ff5ae4cd964201160"; 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/F9YmHuosOMaf86SxQRGwmUHF8x8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 09 Sep 2019 16:44:17 -0000

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

MikeBishop commented on this pull request.



> @@ -805,10 +805,12 @@ 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 though the destination connection ID in client Initial packets
-changes after receiving a Retry.  A server that sends a Retry
-therefore needs to either remember the original connection ID
-or save the original connection ID in the Retry token.
+connection, even though the destination connection ID in client Initial
+packets changes after receiving a Retry.  A server that sends a Retry
+therefore needs to either remember the original connection ID or save
+the original connection ID in the Retry token.  Because the initial
+connection ID is included in the server's transport parameters, the only
+difference is when in the packet processing this connection ID is utilized.

At the time, we were trying to avoid confusion between the _original_ DCID, which generated the keys, and the DCID in the current Initial.  It was a useful distinction in the old design.  With this change, I think that distinction is no longer useful.

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

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

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2878#discussion_r322343677">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -805,10 +805,12 @@ 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 though the destination connection ID in client Initial packets
-changes after receiving a Retry.  A server that sends a Retry
-therefore needs to either remember the original connection ID
-or save the original connection ID in the Retry token.
+connection, even though the destination connection ID in client Initial
+packets changes after receiving a Retry.  A server that sends a Retry
+therefore needs to either remember the original connection ID or save
+the original connection ID in the Retry token.  Because the initial
+connection ID is included in the server&#39;s transport parameters, the only
+difference is when in the packet processing this connection ID is utilized.
</pre>
<p>At the time, we were trying to avoid confusion between the <em>original</em> DCID, which generated the keys, and the DCID in the current Initial.  It was a useful distinction in the old design.  With this change, I think that distinction is no longer useful.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK5OW3KDKKQ2DMYLXJ3QIZ4N3A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEDIGTY#discussion_r322343677">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5K6UZGFZALIK3HAYTQIZ4N3ANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK75EXGMYA2UP32VUSDQIZ4N3A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEDIGTY.gif" height="1" width="1" 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=AFTOJK5OW3KDKKQ2DMYLXJ3QIZ4N3A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEDIGTY#discussion_r322343677",
"url": "https://github.com/quicwg/base-drafts/pull/2878?email_source=notifications\u0026email_token=AFTOJK5OW3KDKKQ2DMYLXJ3QIZ4N3A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEDIGTY#discussion_r322343677",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d76815de929c_61ab3ff5ae4cd964201160--


From nobody Mon Sep  9 17:12: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 D567B120810 for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 17:12: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 RshIPce6O8Dg for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 17:12: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 BAC12120180 for <quic-issues@ietf.org>; Mon,  9 Sep 2019 17:12:11 -0700 (PDT)
Date: Mon, 09 Sep 2019 17:12:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568074330; bh=I8I+kSxgqOUEvcucJRLaWjOCk0GXU8B8848la1nxsNo=; h=Date:From:To:Subject:From; b=2CZL8TF2AR8CW3KCOrT3hFLjuTGkqCu3vie2UpQ1Ky6DzbcP2D/63ZOniP1o7AR21 4osERqKgP0Zo9UtINCAtAzsmR7ZLCxChDzl1DH7mtWYsmoKMINGmpWK+kvAqvblvzP 3GHcZIp2e1OT0vWqm82SutopnW/lcBybxt97aDEE=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/cleanup-sr/967bbe-b88ee1@github.com>
Subject: [quicwg/base-drafts] b88ee1: (38+2)/8 != 6
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5hVgI83QDgcnhsa88EmOma59PN4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 00:12:13 -0000

  Branch: refs/heads/cleanup-sr
  Home:   https://github.com/quicwg/base-drafts
  Commit: b88ee12bc752eee3a8c2a0564fdbf2c04ddbdddd
      https://github.com/quicwg/base-drafts/commit/b88ee12bc752eee3a8c2a0564fdbf2c04ddbdddd
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  (38+2)/8 != 6



From nobody Mon Sep  9 17:12: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 AE9C5120809 for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 17:12: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 GulaCltsI1EQ for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 17:12: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 CC912120180 for <quic-issues@ietf.org>; Mon,  9 Sep 2019 17:12:19 -0700 (PDT)
Date: Mon, 09 Sep 2019 17:12:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568074338; bh=6iHKcL9CJeeku5jyId7IlTDzRJt/HXAFUtrHCC6RJwc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kYgmr6Yw1JcZQ30PXs34KX1Q5yObK/F2lt6zBvhA1zKH4NJvTzJhy1e4xneBOe64z L/n+imrBFZHBvUBC2+CBBwctPtlKqu06zJ14C5nBYVHJcfSVcR+8j61wcDpNtRnT7A jyl/0JTlaC08rGXlgLsFuUyKYTLjwIXLmjPjXQ+E=
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/3007/push/4014885859@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3007@github.com>
References: <quicwg/base-drafts/pull/3007@github.com>
Subject: Re: [quicwg/base-drafts] Attempt to make the stateless reset text better (#3007)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d76ea62da9e2_2d763feac74cd960985e2"; 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/L6BeGkGrZ3-NJigfl8PMl2R2_kU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 00:12:22 -0000

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

@martinthomson pushed 1 commit.

b88ee12bc752eee3a8c2a0564fdbf2c04ddbdddd  (38+2)/8 != 6


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3007/files/967bbe7b5d2c953b04cc4bc9333c817cce75b5cf..b88ee12bc752eee3a8c2a0564fdbf2c04ddbdddd

----==_mimepart_5d76ea62da9e2_2d763feac74cd960985e2
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/b88ee12bc752eee3a8c2a0564fdbf2c04ddbdddd">b88ee12</a>  (38+2)/8 != 6</li>
</ul>


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

----==_mimepart_5d76ea62da9e2_2d763feac74cd960985e2--


From nobody Mon Sep  9 17:12: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 D4810120809 for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 17:12:30 -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 kiEzUqeHm4lp for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 17:12: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 423CF120180 for <quic-issues@ietf.org>; Mon,  9 Sep 2019 17:12:29 -0700 (PDT)
Date: Mon, 09 Sep 2019 17:12:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568074348; bh=VGulSuWvrJxG4PaP4fN0H1k5FrvW2KBaYhUV/221Sqs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KGeKr4TOA5IDjE4DExatCoCYINqORtfaF8ysrsxD13pqlGqDN0iI6gTWWRcFv2Hhh 6kLEnrA8xRkzVnYwcDP9TUcHVeAPJZoMEDCYkBrIHfFNrmg1QxzqIGvWDmkQnNgfE1 zw/MslGkCcJsCIPbxJDc9ENrjC1R9P+e7w+mq8j8=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYBNGWJOJQOTPPXMM53QQHNZEVBNHHB2NT5NA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3007/review/285847769@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3007@github.com>
References: <quicwg/base-drafts/pull/3007@github.com>
Subject: Re: [quicwg/base-drafts] Attempt to make the stateless reset text better (#3007)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d76ea6c92714_579b3ff571ecd96095327"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ebFFFEefnUmsjQVvPEQsxdEnWkE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 00:12:31 -0000

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

martinthomson commented on this pull request.



> -16 bytes for AEAD expansion, and an extra byte to allow the peer to
-send a smaller stateless reset than the packet it receives.
-
-The Stateless Reset Token corresponds to the minimum expansion of the
-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.
+To entities other than its intended recipient, a stateless reset will appear to
+be a packet with a short header.  For the stateless reset to appear as a valid
+QUIC packet, the Unpredictable Bits field needs to include at least 38 bits of
+data (or 6 bytes, less the two fixed bits).

oops

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3007#discussion_r322505274
----==_mimepart_5d76ea6c92714_579b3ff571ecd96095327
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/3007#discussion_r322505274">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -16 bytes for AEAD expansion, and an extra byte to allow the peer to
-send a smaller stateless reset than the packet it receives.
-
-The Stateless Reset Token corresponds to the minimum expansion of the
-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.
+To entities other than its intended recipient, a stateless reset will appear to
+be a packet with a short header.  For the stateless reset to appear as a valid
+QUIC packet, the Unpredictable Bits field needs to include at least 38 bits of
+data (or 6 bytes, less the two fixed bits).
</pre>
<p>oops</p>

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


From nobody Mon Sep  9 17:13: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 ACD59120809 for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 17:13: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 vgVQTG-wKpqj for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 17:13:31 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3697F120180 for <quic-issues@ietf.org>; Mon,  9 Sep 2019 17:13:31 -0700 (PDT)
Date: Mon, 09 Sep 2019 17:13:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568074410; bh=d5iSgxCIe3W7BS591q7mYKMhu0Mx58KCN2bID+lDeGA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TSl0kDvXKGHaUOoRRC9DLbzAL7Ui9LW462esPW0KekNODG/D9b1zWctRhhlMV1MMh uOxscCaviPgHlhL18pi8p4sIfJFy7Ve60BQDMmgYQ+S705gz9Tl/19F8snykbcaS/U aKFD3nDcpS40zwIpci1fwiKq+TuvnGk2u/UgbLnE=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2MOILHKPVBP2EK6NF3QQHRVEVBNHHB2NT5NA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3007/review/285848000@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3007@github.com>
References: <quicwg/base-drafts/pull/3007@github.com>
Subject: Re: [quicwg/base-drafts] Attempt to make the stateless reset text better (#3007)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d76eaaa655af_6ac73ff4448cd96c8869d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mcgOpliGInINYCJrG3JiK_dc-9U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 00:13:33 -0000

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

martinthomson commented on this pull request.



> -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.
+To entities other than its intended recipient, a stateless reset will appear to
+be a packet with a short header.  For the stateless reset to appear as a valid
+QUIC packet, the Unpredictable Bits field needs to include at least 38 bits of
+data (or 6 bytes, less the two fixed bits).
+
+A minimum size of 21 bytes does not guarantee that a stateless reset is
+difficult to distinguish from other packets if the recipient requires the use of
+a connection ID.  To prevent a resulting stateless reset from being trivially
+distinguishable from a valid packet, all packets sent by an endpoint SHOULD be
+padded to at least 22 bytes longer than the minimum connection ID that the
+endpoint might use.  An endpoint that sends a stateless reset in response to
+packet that is 43 bytes or less in length SHOULD send a stateless reset that is
+one byte shorter than the packet it responds to.

This is precisely one.  If the sender is following their side and sending the absolute minimum, then you can't go smaller without the resulting packet becoming obviously invalid.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3007#discussion_r322505449
----==_mimepart_5d76eaaa655af_6ac73ff4448cd96c8869d
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/3007#discussion_r322505449">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -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.
+To entities other than its intended recipient, a stateless reset will appear to
+be a packet with a short header.  For the stateless reset to appear as a valid
+QUIC packet, the Unpredictable Bits field needs to include at least 38 bits of
+data (or 6 bytes, less the two fixed bits).
+
+A minimum size of 21 bytes does not guarantee that a stateless reset is
+difficult to distinguish from other packets if the recipient requires the use of
+a connection ID.  To prevent a resulting stateless reset from being trivially
+distinguishable from a valid packet, all packets sent by an endpoint SHOULD be
+padded to at least 22 bytes longer than the minimum connection ID that the
+endpoint might use.  An endpoint that sends a stateless reset in response to
+packet that is 43 bytes or less in length SHOULD send a stateless reset that is
+one byte shorter than the packet it responds to.
</pre>
<p>This is precisely one.  If the sender is following their side and sending the absolute minimum, then you can't go smaller without the resulting packet becoming obviously invalid.</p>

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


From nobody Mon Sep  9 17:13: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 8157A120809 for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 17:13: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 MjoiambiwGM9 for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 17:13: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 E3DE2120180 for <quic-issues@ietf.org>; Mon,  9 Sep 2019 17:13:36 -0700 (PDT)
Date: Mon, 09 Sep 2019 17:13:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568074416; bh=YPiCtKzedvuAJSBaRtVQZS493y2N4TUfTdTiFHrqE3U=; h=Date:From:To:Subject:From; b=yAxe7vc4Onp2ujvcSYhLc8w69EuBi9rqg1YxL/sIHXZBkCsUm3Ox+qlZj8Lxnf2nt gQ4vDWvNkremno19vx00UyvB8FW1pCMeDbuty7YmtUgYArMmfqcGvTjRWN0TpQP5Ga /U0QaiZEoX+eIUFiKMQQCs5Sch6VVk89q/9R15do=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/09c252-e90c75@github.com>
Subject: [quicwg/base-drafts] e90c75: Script updating gh-pages from b88ee12b. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/z4K1JRLsdRi0NiiIzrvkiKhhU4E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 00:13:38 -0000

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

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

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



From nobody Mon Sep  9 17:15: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 9FEB0120809 for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 17:15: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 U75wkNnooX_a for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 17:15: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 4C0B5120180 for <quic-issues@ietf.org>; Mon,  9 Sep 2019 17:15:30 -0700 (PDT)
Date: Mon, 09 Sep 2019 17:15:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568074529; bh=UM5UDfVUoaei4Rja2M6Dux7WHwM9O1kViM0NY7jIp8c=; h=Date:From:To:Subject:From; b=StPxTmiFk2yRmf8odE9RLch5CgYsJZfD17hlvaElOt/16C0lrW4yCUWWPehhV8ujK QGEs6xeT7y2GkLxBsvAKRn6r6SxBQpNKGlizjWk3YZQt0DdM5G9ER9ClCVMKu2J3PA 1JQyC5vAcuXDKaiHnnqeUwnS+9GZQ2aMkdNupbH0=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/e90c75-12570f@github.com>
Subject: [quicwg/base-drafts] 12570f: Script updating issues at 2019-09-10T00:15: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/L0iyFsvfOOZ8-zdPbhTI4Zyjwdg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 00:15:32 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 12570f5df9221e7a1ed673ae2ba7cc9c7f60f241
      https://github.com/quicwg/base-drafts/commit/12570f5df9221e7a1ed673ae2ba7cc9c7f60f241
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-09-10T00:15:22Z. [ci skip]



From nobody Mon Sep  9 17: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 DCEA2120809 for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 17:15: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 OA0jRY1x6BoY for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 17:15: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 31D5A120180 for <quic-issues@ietf.org>; Mon,  9 Sep 2019 17:15:46 -0700 (PDT)
Date: Mon, 09 Sep 2019 17:15:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568074545; bh=4jQijWnsC4siTvE4Np5dZYtZ1jADUK5BVlC7IdJWe1g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Q3FVobZITUWXlqCotowD4dLHvvrrwvyl2ssD7jlF2xHTJIhWP3eXjwGpQD86x2NxI K/Pd9bFOkDIq23AAmArZn5ue7VzaKYF6NyYA1IQibfMjhJS0vWwElJMxBYchIdDGIg AtxuF4I6PKqUbO4I7sXtq8uYW/v+f5E5vsXjYdh8=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ4I4Y4XDQSH22CZTN3QQH2DEVBNHHB2NT5NA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3007/c529715076@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3007@github.com>
References: <quicwg/base-drafts/pull/3007@github.com>
Subject: Re: [quicwg/base-drafts] Attempt to make the stateless reset text better (#3007)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d76eb317d4ed_51653fda668cd964392e6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/RlCZOtsCgRXoKxhOwSUG-KPo-as>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 00:15:48 -0000

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

@martinduke if you can lay out what you think the security concerns are in another issue, that would helpful.  I realize that there are plenty of compromises in this design, which make this less than ideal.  But first I'd like to try to understand where you think this is falling short.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3007#issuecomment-529715076
----==_mimepart_5d76eb317d4ed_51653fda668cd964392e6
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> if you can lay out what you think the security concerns are in another issue, that would helpful.  I realize that there are plenty of compromises in this design, which make this less than ideal.  But first I'd like to try to understand where you think this is falling short.</p>

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


From nobody Mon Sep  9 17:19: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 A484612080A for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 17:19: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 ceHF47cleIxd for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 17:19: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 3295F120180 for <quic-issues@ietf.org>; Mon,  9 Sep 2019 17:19:22 -0700 (PDT)
Date: Mon, 09 Sep 2019 17:19:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568074761; bh=7P7spx4+RyDr50QCq+T3lG0dTeggYfNZABAyzxDI7I8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eigIDJrgT4iISKlv3tKVgVBoVnV5g5Bw2q/mUCGKySVVSzYz1TziH58QpVx8i1rig YgV+/kBKK9BXjsiXRIwfH1W6ivFLuZxqtt4A7OKT7qI1rtiWIwNYXJJVrBjMU1vVN2 bEnDZRhwOfahmU6pzbzSxT+ibqSMBcUr60N1Neic=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZIPCSLDJMXJ2H5FAV3QQIHTEVBNHHB2OXHYQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3009/c529715739@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3009@github.com>
References: <quicwg/base-drafts/pull/3009@github.com>
Subject: Re: [quicwg/base-drafts] Cache git repo, draft references in Circle (#3009)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d76ec093e9fc_6e413fe391ccd96856466"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mMfCj98IV3sGP5e6v-ZiSvnVkbc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 00:19:23 -0000

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

That's great for now, while there are relatively few new commits to add and the references are fresh.  However, we are creating caches for things that won't ever be used again (``{{ .Revision }}` and `{{ epoch }}`), which takes time that doesn't pay back.

More seriously, the `{{ .Branch }}` thing is a one-time event.  We will always be picking up the cache that you create the first time `master` uses this build.  And the references cache will be old in less than a week now, but that is the cache that will be used in perpetuity.  Sure, this is good in the sense that the build will survive networking blips (assuming that we don't add more citations), but those references will be ancient.

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

<p>That's great for now, while there are relatively few new commits to add and the references are fresh.  However, we are creating caches for things that won't ever be used again (``{{ .Revision }}<code>and</code>{{ epoch }}`), which takes time that doesn't pay back.</p>
<p>More seriously, the <code>{{ .Branch }}</code> thing is a one-time event.  We will always be picking up the cache that you create the first time <code>master</code> uses this build.  And the references cache will be old in less than a week now, but that is the cache that will be used in perpetuity.  Sure, this is good in the sense that the build will survive networking blips (assuming that we don't add more citations), but those references will be ancient.</p>

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


From nobody Mon Sep  9 17:29: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 1E90B120045 for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 17:29: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 eRjabReitCiK for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 17:29:38 -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 6E74B120024 for <quic-issues@ietf.org>; Mon,  9 Sep 2019 17:29:38 -0700 (PDT)
Date: Mon, 09 Sep 2019 17:29:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568075377; bh=AZ4JZ70dQQg3nY0ryicx/tAAO8NYvVPVfi6YQ/iSARY=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=h/QtMR/2t0lkFnOjJPlmXRTbb7wo5Qyc0arhziow6Q8ulWg1+4oy/hMznBQVRLUp/ tuiCURiOeY8Zjpsx1kzi2C/JoJbV/l73XjSfzRuuQeL9k6Rcbzg1Pbpeq5AICnwc49 NJn/zSMcUxbNPTjLUXnQVRDWESlJo+pTz08Ir/Os=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5TJO2YORWXBS7WWB53QQJODEVBNHHB2SP4NM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3011@github.com>
Subject: [quicwg/base-drafts] Original/Initial Connection ID (#3011)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d76ee7196381_792e3f84816cd96018775"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7mspIL-4BcwnegLa7F70K4ZAiQc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 00:29:40 -0000

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

The connection ID that the client chooses for the Destination Connection ID hold special status.  It is used for source address validation for servers that send Retry or Version Negotiation, it determines the packet protection keys for Initial packets, and it is used to validate the Retry.

If we go with #2878 (which isn't yet decided, but seems plausible) then we have an opportunity to revisit this naming.  The name "original" was chosen to distinguish this connection ID from the one that was in other Initial packets, as the value wasn't the same for all Initial packets and the packet protection keys were also consistent.  Using "initial" might be feasible if the packet protection keys are all based on this one value.

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

<p>The connection ID that the client chooses for the Destination Connection ID hold special status.  It is used for source address validation for servers that send Retry or Version Negotiation, it determines the packet protection keys for Initial packets, and it is used to validate the Retry.</p>
<p>If we go with <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="465552398" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2878" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2878/hovercard" href="https://github.com/quicwg/base-drafts/pull/2878">#2878</a> (which isn't yet decided, but seems plausible) then we have an opportunity to revisit this naming.  The name "original" was chosen to distinguish this connection ID from the one that was in other Initial packets, as the value wasn't the same for all Initial packets and the packet protection keys were also consistent.  Using "initial" might be feasible if the packet protection keys are all based on this one value.</p>

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


From nobody Mon Sep  9 18: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 1EF1B12009C for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 18:45:48 -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 x-vF5wo5ljJg for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 18:45: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 5DD71120024 for <quic-issues@ietf.org>; Mon,  9 Sep 2019 18:45:46 -0700 (PDT)
Date: Mon, 09 Sep 2019 18:45:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568079945; bh=1pjvjx9NHyp5pF6F960nshR5ta7w6jSsMJ4K2j9C1Mc=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=T5l2rI0wQeBu5aJUv+3yvwOGH1vhVTCCb4IYqBK/26FLR1noQTJNM5kN5cNixHasf PASqhrYjgI49HHHxSXeVaCJIPxKdvDMtXRC7TO7XvHDu1Xy+QOY9oQGiOwWsMBtvfj VqTDXWttcbi6uELVbQCuQTzoFZ0rU2v93HrU/u3c=
From: Masakazu Kitajo <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZX53IIE2TPA32G5PF3QQZMTEVBNHHB2SR7IY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3012@github.com>
Subject: [quicwg/base-drafts] Add CRYPTO_BUFFER_EXCEEDED to the error code table (#3012)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77004956a08_11f03fae4bccd95c29374a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: maskit
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/woRPZcqqDuZrvkrf06n4XclVWho>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 01:45:48 -0000

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

`CRYPTO_BUFFER_EXCEEDED` is described in section 20 (Transport Error Codes) but it&#39;s not on the error code table in section 22.3 (QUIC Transport Error Codes Registry).
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Add CRYPTO_BUFFER_EXCEEDED to the error code table

-- File Changes --

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

-- Patch Links --

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

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

<p><code>CRYPTO_BUFFER_EXCEEDED</code> is described in section 20 (Transport Error Codes) but it's not on the error code table in section 22.3 (QUIC Transport Error Codes Registry).</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/3012'>https://github.com/quicwg/base-drafts/pull/3012</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Add CRYPTO_BUFFER_EXCEEDED to the error code table</li>
</ul>

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

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

----==_mimepart_5d77004956a08_11f03fae4bccd95c29374a--


From nobody Mon Sep  9 21:42: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 BE84312080A for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 21:42: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 UPZL9jcIvweY for <quic-issues@ietfa.amsl.com>; Mon,  9 Sep 2019 21:42: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 3F5B1120807 for <quic-issues@ietf.org>; Mon,  9 Sep 2019 21:42:35 -0700 (PDT)
Date: Mon, 09 Sep 2019 21:42:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568090554; bh=zlx1/UaTRlJZpjORVzwp/mw5bOdmSlqCyXKDfOEwCzc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BgXeA/Xb4+tl+q6e5ch811pnw7/ItoDwg+pyiPsTwDZWCEJLG6JKddXL4Cq5+eIOv srPh96gIE/dzYTXLBLL6QpixqIZgTxoX2TchK81KjnUjomB3MEbfpSu+GhiQ+qeSFC y+UCG68VbqtPEdLQfcxsrSLoZVETw/ZL0eGLz+xA=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY2LOEDBZ2VURVEWCN3QRVEVEVBNHHB2SP4NM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3011/529766760@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3011@github.com>
References: <quicwg/base-drafts/issues/3011@github.com>
Subject: Re: [quicwg/base-drafts] Original/Initial Connection ID (#3011)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7729ba6c84b_75b93fdec22cd9641723be"; 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/v4DRvI6LgqSJb1QHPx5rRoIJeM8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 04:42:37 -0000

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

See also https://github.com/quicwg/base-drafts/issues/2926

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

<p>See also <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="471619541" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2926" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2926/hovercard" href="https://github.com/quicwg/base-drafts/issues/2926">#2926</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/3011?email_source=notifications&amp;email_token=AFTOJK5GESFZY2ZVF2WPH33QI4QTVA5CNFSM4IVBPQ4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6JZS2A#issuecomment-529766760">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3WOQ4ZVWQUWH3SEQLQI4QTVANCNFSM4IVBPQ4A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3ZDMQHSDCZPNDGLQDQI4QTVA5CNFSM4IVBPQ4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6JZS2A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3011?email_source=notifications\u0026email_token=AFTOJK5GESFZY2ZVF2WPH33QI4QTVA5CNFSM4IVBPQ4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6JZS2A#issuecomment-529766760",
"url": "https://github.com/quicwg/base-drafts/issues/3011?email_source=notifications\u0026email_token=AFTOJK5GESFZY2ZVF2WPH33QI4QTVA5CNFSM4IVBPQ4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6JZS2A#issuecomment-529766760",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7729ba6c84b_75b93fdec22cd9641723be--


From nobody Tue Sep 10 01:06: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 8EB7A12006A for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 01:06: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 WBBYqJIt0aks for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 01:05: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 4762712004E for <quic-issues@ietf.org>; Tue, 10 Sep 2019 01:05:59 -0700 (PDT)
Date: Tue, 10 Sep 2019 01:05:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568102758; bh=5jMHC3vkCey0dzVX2JMuaGvkRnJHCJ/KIWNSpL1jTJ4=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=TxykEw9c3YYnpaHW9RUGhjfYOhs7pqdsu0gcjpsrwX7YjosscpdBPsO3aTao8J5CC dKO7p9sTuKrZZYLZFUMIt7ZD9Bx/GzAH3D3n0dduisMxBSh7VABtrsfOOs5+88i4gN lrbd3WKTC6+dHnon18aa9yYclfIPqyblj08GQPY4=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYQBKSTFFRRM2CCEWN3QSF6NEVBNHHB2S7N5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3013@github.com>
Subject: [quicwg/base-drafts] QUIC versions can no longer be greased (#3013)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7759665cb42_6dfa3ff9532cd968760f9"; 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/7WXxZMc6eLLNUgeugE9J2t_G7xA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 08:06:01 -0000

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

Section 6.3 states:
> For a server to use a new version in the future, clients need to correctly handle unsupported versions. To help ensure this, a server SHOULD include a version that is reserved for forcing version negotiation (0x?a?a?a?a as defined in Section 15) when generating a Version Negotiation packet.

I think that the text might be stale, as we no longer specify how a client should handle the payload of the Version Negotiation packet. All what we specify now is that _when a client receives a Version Negotiation packet, it MUST abandon the current connection attempt_.

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

<p>Section 6.3 states:</p>
<blockquote>
<p>For a server to use a new version in the future, clients need to correctly handle unsupported versions. To help ensure this, a server SHOULD include a version that is reserved for forcing version negotiation (0x?a?a?a?a as defined in Section 15) when generating a Version Negotiation packet.</p>
</blockquote>
<p>I think that the text might be stale, as we no longer specify how a client should handle the payload of the Version Negotiation packet. All what we specify now is that <em>when a client receives a Version Negotiation packet, it MUST abandon the current connection attempt</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/3013?email_source=notifications&amp;email_token=AFTOJK2IYSXFBZRBEKFTKSDQI5IONA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HKL5XUQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5LZUYSFJQQUJOOKTTQI5IONANCNFSM4IVEKYOA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZJDPNZBDFWPTYLPN3QI5IONA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HKL5XUQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3013?email_source=notifications\u0026email_token=AFTOJK2IYSXFBZRBEKFTKSDQI5IONA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HKL5XUQ",
"url": "https://github.com/quicwg/base-drafts/issues/3013?email_source=notifications\u0026email_token=AFTOJK2IYSXFBZRBEKFTKSDQI5IONA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HKL5XUQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7759665cb42_6dfa3ff9532cd968760f9--


From nobody Tue Sep 10 01:38: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 CDEA61200A3 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 01:38:04 -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 S3sEhEraR9QH for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 01:38: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 48A28120045 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 01:38:03 -0700 (PDT)
Date: Tue, 10 Sep 2019 01:38:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568104682; bh=Dt2K7Re8bqIQEZOcmXPQ1khK5VqPT30y/3Zl/Au92qE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Gl4D3jVPwNAWhwx6Rblt9DQEITIvv7UYeeF7uSM72eKRTSrdr2+jP570w2ivntU5O 9v5lITmizdHslTLlxVLpophy7HvxHDnjcVHop845Bd1JrMTL1Ok19GWVroTmscxKNQ c8g0m4IpZNjG4sLVZDjlbLdWEFpmOaGn0rgwAKfM=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2PMBXYRUF5NOYL2S53QSJWVEVBNHHB2SR7IY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3012/review/285989152@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3012@github.com>
References: <quicwg/base-drafts/pull/3012@github.com>
Subject: Re: [quicwg/base-drafts] Add CRYPTO_BUFFER_EXCEEDED to the error code table (#3012)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7760ea8a1e6_70cd3ff9532cd968338928"; 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/UjZBw6H2MoVSsT9A790-kDNIlas>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 08:38:05 -0000

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

marten-seemann approved this pull request.



> @@ -5877,6 +5877,7 @@ The initial contents of this registry are shown in {{iana-error-table}}.
 | 0x7   | FRAME_ENCODING_ERROR      | Frame encoding error          | {{error-codes}} |
 | 0x8   | TRANSPORT_PARAMETER_ERROR | Error in transport parameters | {{error-codes}} |
 | 0xA   | PROTOCOL_VIOLATION        | Generic protocol violation    | {{error-codes}} |
+| 0xD   | CRYPTO_BUFFER_EXCEEDED    | CRYPTO data buffer overflowed | {{error-codes}} |

Not an issue with this PR, but I'm wondering if we should change the number to 0x9, in order to fill the gap.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3012#pullrequestreview-285989152
----==_mimepart_5d7760ea8a1e6_70cd3ff9532cd968338928
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/3012#discussion_r322617659">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -5877,6 +5877,7 @@ The initial contents of this registry are shown in {{iana-error-table}}.
 | 0x7   | FRAME_ENCODING_ERROR      | Frame encoding error          | {{error-codes}} |
 | 0x8   | TRANSPORT_PARAMETER_ERROR | Error in transport parameters | {{error-codes}} |
 | 0xA   | PROTOCOL_VIOLATION        | Generic protocol violation    | {{error-codes}} |
+| 0xD   | CRYPTO_BUFFER_EXCEEDED    | CRYPTO data buffer overflowed | {{error-codes}} |
</pre>
<p>Not an issue with this PR, but I'm wondering if we should change the number to 0x9, in order to fill the gap.</p>

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


From nobody Tue Sep 10 02:38: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 73F5612009E for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 02:38: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 LtLEIk6Jf4nL for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 02:38: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 B81E2120052 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 02:38:25 -0700 (PDT)
Date: Tue, 10 Sep 2019 02:38:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568108305; bh=Y5GEYA68If5UstYs9loX/OMQRUj3tg4gr4sV6VVfH6U=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dB+4B2+CxncpbkCgvnhJoxiTpy5mIy9Lxpf2Vy9IYsYP0npxL4U5octtKHa5ZogzT jyvE4AwJ4NHeJjwwq21l8/Tg7nMcXgtsMdGMGmLWPg4+2d+YMkRol4HjRlYsFHk6uq 2/amTtrRexHCHrEgXoIImKFBJ4nlpIYIVK2oqaVA=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7LC5XYMFLWQAWYHNN3QSJYDEVBNHHB2S7N5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3013/529856838@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3013@github.com>
References: <quicwg/base-drafts/issues/3013@github.com>
Subject: Re: [quicwg/base-drafts] QUIC versions can no longer be greased (#3013)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d776f11a5ba_43ef3f81218cd96c34712"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yU9zzWattYmhzwFs_AJkFHRfDq4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 09:38:27 -0000

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

This is still possible, it just doesn't have any effect on a version 1 client.  I think that we can leave this as-is without ill 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/issues/3013#issuecomment-529856838
----==_mimepart_5d776f11a5ba_43ef3f81218cd96c34712
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This is still possible, it just doesn't have any effect on a version 1 client.  I think that we can leave this as-is without ill 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/issues/3013?email_source=notifications&amp;email_token=AFTOJK4GIILTHCE4OJQ72I3QI5TJDA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6KPSRQ#issuecomment-529856838">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7IKZU7OB34YMRPWKDQI5TJDANCNFSM4IVEKYOA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4GF6X7D3WQIQ2R4QTQI5TJDA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6KPSRQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3013?email_source=notifications\u0026email_token=AFTOJK4GIILTHCE4OJQ72I3QI5TJDA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6KPSRQ#issuecomment-529856838",
"url": "https://github.com/quicwg/base-drafts/issues/3013?email_source=notifications\u0026email_token=AFTOJK4GIILTHCE4OJQ72I3QI5TJDA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6KPSRQ#issuecomment-529856838",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d776f11a5ba_43ef3f81218cd96c34712--


From nobody Tue Sep 10 07:07: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 3C86A120132 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 07:07: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, HTML_IMAGE_ONLY_24=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 xmG1g3bCXF2t for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 07:07:05 -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 680B9120110 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 07:07:05 -0700 (PDT)
Date: Tue, 10 Sep 2019 07:07:04 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568124424; bh=/fHu6G+y9WAxYVKBd+lch2z+Ew8yV0pyuQySn6bZ4u4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FnAKizUlX6t+41SbewI9L+NXkLAGcqxQUYt6SGtLy3/v6w6tXSZQfnM/EJu0z4Ng3 cB4Z+7PUHLhK9AshSRM8KUTIz+R3l73q75A231ox2TeGdoEocAobOo9XgqMB8QytKM i39xP/RJRTcm9wfxLdGhEpKEzIdmAfFfEYBtGOpA=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2W6RUIFNKPD7LR62F3QTQIREVBNHHB2S7N5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3013/529951922@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3013@github.com>
References: <quicwg/base-drafts/issues/3013@github.com>
Subject: Re: [quicwg/base-drafts] QUIC versions can no longer be greased (#3013)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77ae0885b8c_69ed3f9ee0ccd96850098"; 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/ENdaFBrr_4q3Ix8shk-tDL10NH0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 14:07:07 -0000

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

> This is still possible, it just doesn't have any effect on a version 1 client.

I'm not sure, as the client is required to "abandon the current connection attempt" ([section 6.2](https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#rfc.section.6.2)) when receiving a Version Negotiation packet, even without consulting the payload of that packet.

Doesn't that prohibit the servers from sending VN packets against V1 packets, assuming that servers would prefer serving all the connections that it can accept?

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

<blockquote>
<p>This is still possible, it just doesn't have any effect on a version 1 client.</p>
</blockquote>
<p>I'm not sure, as the client is required to "abandon the current connection attempt" (<a href="https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#rfc.section.6.2" rel="nofollow">section 6.2</a>) when receiving a Version Negotiation packet, even without consulting the payload of that packet.</p>
<p>Doesn't that prohibit the servers from sending VN packets against V1 packets, assuming that servers would prefer serving all the connections that it can accept?</p>

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


From nobody Tue Sep 10 07: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 F2A0212008A for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 07:40:15 -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 OF2SbWrou3Sk for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 07:40: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 885ED120178 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 07:40:13 -0700 (PDT)
Date: Tue, 10 Sep 2019 07:40:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568126412; bh=jlKVHAi/+in8TBjC/ukbQRqPhIcycfrDZCHTpW4BmDY=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=2cC+NqfVe8FEQphIPB3z8W7NPX3EEKocGSyarB1RDQX+wFlj55mKJ45w6fErL3Vtl P8D4JEYSyapnPJO4DqdcxTk7QA3jRxODpMzjBlT3bf5keiXZ6qnzItah1LQ+Mkg4np u+52vzmPa7efTOvaNbaHweX5Xi0uykQk1hpI+Vbw=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZIUW5J3FYXJKWONBN3QTUEZEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014@github.com>
Subject: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77b5cc7c9a7_434c3fde6b8cd96027465"; 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/j-uP4wiUFVvZAbxbZ7Gfsuf7KgE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 14:40:16 -0000

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

Retry packet does not have a checksum (e.g., CRC32, AEAD tag), and therefore is fragile to accidental bit flips that happen on the wire.

Are we fine with that? I ask this, because it seems to me that an one bit flip in some parts of a Retry packet can cause the connection establishment effort to fail in unexpected ways. To paraphrase, are we fine with certain deployments of QUIC being more fragile to accidental bit flips during connection establishment, than compared to TCP (that always have the checksum)? Note that checksum is an optional feature in UDP.

Below are what I believe would happen there is a bit flip in a Retry packet.

Consider the case where a bit in the SCID field of a Retry packet is flipped. The client would send back an Initial packet that carries this CID as the DCID. To the server, such an Initial packet would look like an attack, as it contains a Retry Token issued for a different server CID. Therefore, the server is likely to either drop the Initial packet, or close the connection immediately. This behavior would be a must for firewall generating Retry packets in order to redistribute the load between the servers running behind, as the load would be distributed by assigning different server CIDs to different servers.

Consider the case where a bit in the Token field of a Retry packet is flipped. The client would send back an Initial packet that carries this corrupt token. To the server, such an Initial packet *might* look like an Initial packet carrying an outdated token. Then, that server would send back a Retry packet carrying a new Retry token. But the client would drop the new Retry packet (because the client is required to accept only one Retry packet). The client continues retransmitting Initial packets using the corrupt token, until it time outs.

Bit flips in the DCID, ODCID, as such packets would be dropped by the client. Bit flips in the length fields are likely to cause no harm, and in the worst case scenario it would look either of the above.

PS. Version Negotiation packet also lacks a checksum. Though I think we are not going to use that packet type in V1 (see #3013).

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

<p>Retry packet does not have a checksum (e.g., CRC32, AEAD tag), and therefore is fragile to accidental bit flips that happen on the wire.</p>
<p>Are we fine with that? I ask this, because it seems to me that an one bit flip in some parts of a Retry packet can cause the connection establishment effort to fail in unexpected ways. To paraphrase, are we fine with certain deployments of QUIC being more fragile to accidental bit flips during connection establishment, than compared to TCP (that always have the checksum)? Note that checksum is an optional feature in UDP.</p>
<p>Below are what I believe would happen there is a bit flip in a Retry packet.</p>
<p>Consider the case where a bit in the SCID field of a Retry packet is flipped. The client would send back an Initial packet that carries this CID as the DCID. To the server, such an Initial packet would look like an attack, as it contains a Retry Token issued for a different server CID. Therefore, the server is likely to either drop the Initial packet, or close the connection immediately. This behavior would be a must for firewall generating Retry packets in order to redistribute the load between the servers running behind, as the load would be distributed by assigning different server CIDs to different servers.</p>
<p>Consider the case where a bit in the Token field of a Retry packet is flipped. The client would send back an Initial packet that carries this corrupt token. To the server, such an Initial packet <em>might</em> look like an Initial packet carrying an outdated token. Then, that server would send back a Retry packet carrying a new Retry token. But the client would drop the new Retry packet (because the client is required to accept only one Retry packet). The client continues retransmitting Initial packets using the corrupt token, until it time outs.</p>
<p>Bit flips in the DCID, ODCID, as such packets would be dropped by the client. Bit flips in the length fields are likely to cause no harm, and in the worst case scenario it would look either of the above.</p>
<p>PS. Version Negotiation packet also lacks a checksum. Though I think we are not going to use that packet type in V1 (see <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="491515369" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3013" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3013/hovercard" href="https://github.com/quicwg/base-drafts/issues/3013">#3013</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/3014?email_source=notifications&amp;email_token=AFTOJK43UEACUDSQZ2MSJU3QI6WUZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HKPAFKA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3CCUIFSGHRAWF4IMLQI6WUZANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4C2B7VAVTGJ26BXUDQI6WUZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HKPAFKA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK43UEACUDSQZ2MSJU3QI6WUZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HKPAFKA",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK43UEACUDSQZ2MSJU3QI6WUZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HKPAFKA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d77b5cc7c9a7_434c3fde6b8cd96027465--


From nobody Tue Sep 10 07:47: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 90ADD120154 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 07:47: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 6D8CASHjY4VX for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 07:47: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 5DB9512008A for <quic-issues@ietf.org>; Tue, 10 Sep 2019 07:47:22 -0700 (PDT)
Date: Tue, 10 Sep 2019 07:47:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568126841; bh=Z7vPTueiO83L/RXrHdQslUEwy3tXN2nK1bjCJ2jdiBg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lDunFg362GOBDRXXpe7Hfry8CRDrq5/SfJ0DxyOxL1LgxCF8VoriDad7HT4lzOLT9 Ldy1A6nAbmRqw5yweVALIRgYT1iphmZTAbJAY2TxMlPZlzkV86F1lGDc3QgizexSjb 7++QqVGPdi+c7vSfTD+cYsKFHMQeM0G0gH4WNl10=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2IOA5LQ5YRGFLH7U53QT4ATEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/529970951@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77b77937e13_7dd93fd8638cd9646964d"; 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/X1-FRVscxbkgiORH7LnEnwp3R1E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 14:47:24 -0000

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

One option would be to require UDP checksum for QUIC, right?

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

<p>One option would be to require UDP checksum for QUIC, right?</p>

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


From nobody Tue Sep 10 07:57: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 60DFD1201DE for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 07:57: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 FF-FSMOFxIP5 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 07:57: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 8B65E1201DC for <quic-issues@ietf.org>; Tue, 10 Sep 2019 07:57:14 -0700 (PDT)
Date: Tue, 10 Sep 2019 07:57:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568127433; bh=OF1QXaxQcdtN4GCalPK7MfrGpbExLWlJN5ZqKLafS30=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=doHsYTrg03iQgL34rblieEj4m4tASdhUUpys5s7Jav5AVOvf9zhlIGyUdNpSl84mS 1nmv+3qoTuMJh8qSb2N3pL2YFgu6onS8ofvvKEt1fxlFWTnAYXeSSipQ+6sNn71Ojt 7QoJLBi3y9BhfaesGZJwbVyqDavkrpjOG1RpYjrc=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4VSIOJ6MCUZCIIRKN3QT5FTEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/529975592@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77b9c9b5484_541c3fa8ceecd9641568c9"; 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/4hqwGVcKHeCL7yAisAh5YjkMeyk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 14:57:17 -0000

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

@nibanks I don't think we should mix those layers. It would prevent QUIC from running elsewhere.

I do think that everything should be checksummed, like the initial packet. The problem is versioning, so each version need some official checksum schema.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-529975592
----==_mimepart_5d77b9c9b5484_541c3fa8ceecd9641568c9
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> I don't think we should mix those layers. It would prevent QUIC from running elsewhere.</p>
<p>I do think that everything should be checksummed, like the initial packet. The problem is versioning, so each version need some official checksum schema.</p>

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


From nobody Tue Sep 10 07:59: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 08E9A1201AA for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 07:59: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 jmnD9O0l0FR9 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 07:59: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 3CD5A1201C6 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 07:59:04 -0700 (PDT)
Date: Tue, 10 Sep 2019 07:59:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568127543; bh=27nduc/WXViuYn5e5Mx6AemqQBgn+VHjWv0eLr3/W94=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=u2T6Sq9Gdu8xDu4DLigFmD8x38assxwsypakoJffGVBdnbLHHxWogfXNWFIcQyPTs bFoZwHR8qNKZgcarImaJGWY0SJ4hlbyxYHgUqjmWkX9y9guKGnr+UyJOcrAqWlknt4 UmZYanFcn7BvbraPM0fTc+HZ16PtpJ2xT2elhrkE=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYPYPI4QC7D4632GPF3QT5MPEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/529976463@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77ba374998f_6c1d3fd5d90cd96c180025"; 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/UyXkcaGle9UbTWsgP4KNbCZR5Pw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 14:59:06 -0000

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

I don't think it's a huge requirement that QUIC must be sent over a medium that is checksummed. IPv6 also has checksum already too, right?

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

<p>I don't think it's a huge requirement that QUIC must be sent over a medium that is checksummed. IPv6 also has checksum already too, right?</p>

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


From nobody Tue Sep 10 08:03: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 6F3D41201A3 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 08:03: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 BnbuXDvxnHho for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 08:03:52 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7152F120170 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 08:03:52 -0700 (PDT)
Date: Tue, 10 Sep 2019 08:03:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568127832; bh=l3hO8dxYhGHWrf3T6di2y/sWRz4mGpjzNGpG8GhHD+A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zSYUxEmVLvQZmChY7Xzoin5BqwjD9+6bSKWTls52dHatEtsQmP/Hz7usJWtm0HtoT ryqy3A6GG/7Q0khjjodFWaWR3in2bihKx4y4FuIkZVxkBHEWEJ5OaX+V3m748vgKXs vv+0pXc2XIzVUerLsj+JO7CQ/5cP/BDmOJHHfPEk=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZKD6MZJM22BIHMF5F3QT56PEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/529978855@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77bb57e9541_541a3fa8ceecd96439427d"; 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/f4O-_VhF5ZIoDz3dD8udD1KJclU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 15:03:53 -0000

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

Well, sort of, but since QUIC in 99.999% if the cases does its own QUICsumming, it would be an odd requirement.

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

<p>Well, sort of, but since QUIC in 99.999% if the cases does its own QUICsumming, it would be an odd requirement.</p>

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


From nobody Tue Sep 10 08:04: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 6E0FE1208C0 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 08:04: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 dHf0yRAgNfIs for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 08:04: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 C8ACE120227 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 08:04:32 -0700 (PDT)
Date: Tue, 10 Sep 2019 08:04:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568127871; bh=YPD9xHLq8VxAjSrVkvnh8owwhPtI7QbqgbpRnH9hJKA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jBjT4Xs8IvWp0We7uH7O2EZIapOtvMHi2A9/PvIVZKI9ON2kKG+S4n7ry018gk/n5 x+1pq6W4642bZ+MDIODq0lz3by2Hw+NXWY6Sb317jd0eK2f/XR8TJHi2mxzc0R0MbH DSn139m0wcLfOFTGfETnwWQPjJCeQIkLKIuDxz8A=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5TYU26I3Q2K2XVKQ53QT6A7EVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/529979277@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77bb7fdac76_2c9e3f8f95ccd9682064af"; 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/f-kATtK6JCBcNeUzVOYGoipq71Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 15:04:40 -0000

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

Of course UDP sums still make sense for intermediate routing but that is fabric internal.


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

<p>Of course UDP sums still make sense for intermediate routing but that is fabric internal.</p>

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


From nobody Tue Sep 10 08:06: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 19F5E120170 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 08:06: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 iOGjluGJrAew for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 08:06: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 6394D120043 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 08:06:49 -0700 (PDT)
Date: Tue, 10 Sep 2019 08:06:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568128008; bh=9CKkqTu5rel/yQihNalqFrK6YVnS3ZfIzTfsOAWJ5+M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=P5JjvP67FJmAAWomq7RQIcNXNHCzIOc+7fy/r54loKXwBhVWFoTjQvJQkMLQ+eORc 9RXJIoiahHU0YoywMHy1E0p7W9kuthjKY9VglsOYIoEEgyIdX/RafDI/+HhZX2h4bY iqqTppGVNpk/rb8WRvKaerbuJIgKTduJtSlNZ/Ow=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK73MB6OREGFV5YZNH53QT6JREVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/529980498@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77bc0834b47_666e3fb4d24cd9681982c"; 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/CBf-tmcjE_VuTlFsRwfMRufRpXo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 15:06:51 -0000

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

I'd personally prefer to depend on UDP in this case, especially since it already has performant hardware solutions. Why invent something new when there is a pre-existing solution? Also, we are only charted for UDP, as far as I know.

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

<p>I'd personally prefer to depend on UDP in this case, especially since it already has performant hardware solutions. Why invent something new when there is a pre-existing solution? Also, we are only charted for UDP, as far as I know.</p>

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


From nobody Tue Sep 10 08:08: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 A1FEA1201EF for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 08:08: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 BcGha99gWH9d for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 08:08:38 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E19C3120170 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 08:08:37 -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 4473FA0609 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 08:08:37 -0700 (PDT)
Date: Tue, 10 Sep 2019 08:08:37 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY2VIOGIAWMKFBNRUN3QT6QLEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/529981354@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77bc7535efb_44373fec736cd96082022"; 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/j99Jc9HjIlkhGw6sxNhEOvkBA-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: Tue, 10 Sep 2019 15:08:40 -0000

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

Sure, only UDP, I'd just like to avoid hardcoding that dependency for a single case when you could just add a sha256 at the end 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/issues/3014#issuecomment-529981354
----==_mimepart_5d77bc7535efb_44373fec736cd96082022
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Sure, only UDP, I'd just like to avoid hardcoding that dependency for a single case when you could just add a sha256 at the end 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/issues/3014?email_source=notifications&amp;email_token=AFTOJK7ZWHIFT47Y73SKC7TQI6Z7LA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6LN7KQ#issuecomment-529981354">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK24NBZDKAZAFWSKR4DQI6Z7LANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYSLF5MN7L6YH2VTQTQI6Z7LA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6LN7KQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK7ZWHIFT47Y73SKC7TQI6Z7LA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6LN7KQ#issuecomment-529981354",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK7ZWHIFT47Y73SKC7TQI6Z7LA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6LN7KQ#issuecomment-529981354",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d77bc7535efb_44373fec736cd96082022--


From nobody Tue Sep 10 08:10: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 8A3981208A2 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 08:10: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 f3ur9ZRtax-Z for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 08:10: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 7B9631208BD for <quic-issues@ietf.org>; Tue, 10 Sep 2019 08:10:10 -0700 (PDT)
Date: Tue, 10 Sep 2019 08:10:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568128209; bh=VLwx8IdhGnRyl1rRZraEQ8QE/zTbQIWaiZfLh+G3eIM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=r3vUoTRVBu0B3h69orr/b7k16YvX2AOnjaCGkxp/QjJh8TwHymGpBkvaxQHlAbl3m UallzVxtXZXJ2KaAahCADs8RRRTLszX1Nd1ByzRThOSVYfYR77YsJQWjQ8K84sES+g aeJawHkgtPhFr6AxScQwaGNsyhXrVj3cpQ8HPe2E=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4FVPZ4X2MTIAXAPCN3QT6WDEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/529982122@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77bcd1a783c_74223fb9806cd96825617d"; 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/R_c9HF4bO8u1rI9l-AP2U9Dqt4k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 15:10:14 -0000

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

I think it's reasonable to recommend using UDP checksums, particularly for unprotected packets such as Retry and VN.

I hadn't thought through the implications of a corrupted Retry token to realize it makes the handshake unrecoverable.  I'm not sure I want to fix that issue now, but I think it's worth documenting.

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

<p>I think it's reasonable to recommend using UDP checksums, particularly for unprotected packets such as Retry and VN.</p>
<p>I hadn't thought through the implications of a corrupted Retry token to realize it makes the handshake unrecoverable.  I'm not sure I want to fix that issue now, but I think it's worth documenting.</p>

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


From nobody Tue Sep 10 08:26: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 6CF791201C6 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 08:26: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 fIWLMlyenokv for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 08:26:01 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8E3A51201AA for <quic-issues@ietf.org>; Tue, 10 Sep 2019 08:26:01 -0700 (PDT)
Date: Tue, 10 Sep 2019 08:26:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568129160; bh=ExHpX0dpbr+m4XpK1S9GGC0LIGEdDSJ/slwQ15CFFKU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=x9AMRG/QID4fXbWk25QCEUiuhmPhoc3ruBL+oFy/+t+oNKqNHScP5kKwREKp3rdq+ q4w170mb81pZuqEucPUuZxkVr8DxDp/b9jYaC8gIV/OHPWeCeVw6HNnaLpEIppsNhR CQllvwA90FJOvIuqKznsof/pw6g/Zj/vwiajbRpw=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK74D7657C7ZRM4K2B53QTZQREVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/529989334@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77c0889c83d_1de63fbab24cd964159734"; 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/buQ_ZBl0tHScYywh3PVjXWS6WA0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 15:26:04 -0000

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

FWIW, I think that there are three options:
1. Document the behavior, recommend using UDP checksums.
2. Define a QUIC error code that recommends the client to retry establishing a connection. Then, a server recognizing the situations listed above can send that error code.
3. Add a checksum to the Retry packet. It could be a CRC, or could be a GMAC (i.e. AES-GCM without any encrypted data).

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

<p>FWIW, I think that there are three options:</p>
<ol>
<li>Document the behavior, recommend using UDP checksums.</li>
<li>Define a QUIC error code that recommends the client to retry establishing a connection. Then, a server recognizing the situations listed above can send that error code.</li>
<li>Add a checksum to the Retry packet. It could be a CRC, or could be a GMAC (i.e. AES-GCM without any encrypted data).</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/3014?email_source=notifications&amp;email_token=AFTOJK3DVGRVO32RBB5KZO3QI64ARA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6LP5VQ#issuecomment-529989334">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYTUYURDYVBJMGSHE3QI64ARANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2W6N4JSPE2HVO6BKDQI64ARA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6LP5VQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK3DVGRVO32RBB5KZO3QI64ARA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6LP5VQ#issuecomment-529989334",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK3DVGRVO32RBB5KZO3QI64ARA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6LP5VQ#issuecomment-529989334",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d77c0889c83d_1de63fbab24cd964159734--


From nobody Tue Sep 10 08:59: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 A76AA1201C6 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 08:58: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 8YYebQA12Odu for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 08:58:57 -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 E385F120043 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 08:58:56 -0700 (PDT)
Date: Tue, 10 Sep 2019 08:58:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568131136; bh=KDxwRZoalDwMIrHjyBrJfzMIXH4UcjDhA2ACqcnwcoI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BFUiGZoi863Op0JBQB5R3wrPfffLUc9htM3/HSzH5NQ8Ji3ImGov2r+9LxCBbqRRE ls8gEzZYXAYyRwq3aij+EQ8z0tvllzUXLy8kaDQgFljh2tGXZrK9KTD08y2G+R+rMl lpOJYid/uW00CezsasZzQlZlRfgt4MfF0Nd77tw0=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK322TQRQV4CQDSSIOV3QUEM7EVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/530004485@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77c83fe69ba_6fd3ff8dcacd9641251d2"; 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/CHK7ezZWr-me4kUswCbI5B27I88>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 15:58:59 -0000

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

Id suggest not using GMAC, at least for VNEG, because GMAC might be outdated before VNEG, and it is complex.

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

<p>Id suggest not using GMAC, at least for VNEG, because GMAC might be outdated before VNEG, and it is complex.</p>

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


From nobody Tue Sep 10 09:05: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 9652512022A for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 09:05: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 tE_fMvRuS53r for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 09:05:55 -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 EB5D5120058 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 09:05:54 -0700 (PDT)
Date: Tue, 10 Sep 2019 09:05:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568131554; bh=xlqNyuWxvc+7/nFDtBeMM6gW/o8wNusgISGLACeVPvw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=m5dKU8dfP65cwqTTcvXG3/x5sVQmVa4eex9rfirO3dMnfQebX8lanIILrZ2iu2Fla 2u/Ud4YKnSWkGY8IPMzZ0dIYZKJdl7LUztlJjYCEsDpeEt+ZrJ5GN5Wpb5sop1CSId 2ml0JBKN0Qvuz1HOa26RJvVOJbkkTq0to0cIBWG0=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK46U6R7BECO5CGBJF53QT6GFEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/530007372@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77c9e299be_31103fba8a2cd95c110644"; 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/24N6MCl0zKRCD1XiXOyQo5LEdH0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 16:05:57 -0000

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

@mikkelfj Retry is a concept specific to QUIC v1, which already depends on AES-GCM for protecting the integrity of Initial packets. Therefore, IMO use of GMAC would be a reasonable choice _if we decide to give it a checksum_. Use of GMAC would be simpler than other algorithms, because then QUIC stacks can use the existing code that encrypts the Initial packet; Retry packet would be a packet that is encrypted exactly the same way as the Initial packet, with the only exceptions being that the nonce is fixed to zero and that the encrypted part is zero 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/issues/3014#issuecomment-530007372
----==_mimepart_5d77c9e299be_31103fba8a2cd95c110644
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> Retry is a concept specific to QUIC v1, which already depends on AES-GCM for protecting the integrity of Initial packets. Therefore, IMO use of GMAC would be a reasonable choice <em>if we decide to give it a checksum</em>. Use of GMAC would be simpler than other algorithms, because then QUIC stacks can use the existing code that encrypts the Initial packet; Retry packet would be a packet that is encrypted exactly the same way as the Initial packet, with the only exceptions being that the nonce is fixed to zero and that the encrypted part is zero bytes.</p>

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


From nobody Tue Sep 10 09:15: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 9F640120058 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 09:15:09 -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 TTzU3zbm41RE for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 09:15:07 -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 A0B6B12010D for <quic-issues@ietf.org>; Tue, 10 Sep 2019 09:15:07 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 200E22615A7 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 09:15:07 -0700 (PDT)
Date: Tue, 10 Sep 2019 09:15:06 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZI54ERV3MW4ZPQIG53QUGJVEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/530011189@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77cc0ace337_b4f3fa90e4cd9602254f8"; 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/rM3ThtJqSJjlScqLZ7AQBeHVedo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 16:15:10 -0000

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

I don't think we disagree. I did mention VNEG explicitly. But, one could argue that that if VNEG uses a different hash, why not use it for Retry as well - not that I care that much.

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

<p>I don't think we disagree. I did mention VNEG explicitly. But, one could argue that that if VNEG uses a different hash, why not use it for Retry as well - not that I care that much.</p>

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


From nobody Tue Sep 10 10:11: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 32DDF120058 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 10:11:45 -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 cAgJFExFmWJp for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 10:11: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 ABF93120041 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 10:11:43 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 0619D8C0549 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 10:11:43 -0700 (PDT)
Date: Tue, 10 Sep 2019 10:11:42 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ43TGSHKIE6V5UGI53QUM55EVBNHHB2S7N5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3013/530033346@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3013@github.com>
References: <quicwg/base-drafts/issues/3013@github.com>
Subject: Re: [quicwg/base-drafts] QUIC versions can no longer be greased (#3013)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77d94eea626_258c3fc80c4cd95c166014"; 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/mD8dHvRCNvzgfBrvkvo3XFcx7-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, 10 Sep 2019 17:11:45 -0000

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

We may want to change the text to say that these versions are reserved for future greasing, but yeah, I think the text needs some rework.

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

<p>We may want to change the text to say that these versions are reserved for future greasing, but yeah, I think the text needs some rework.</p>

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


From nobody Tue Sep 10 10:31: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 161A3120041 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 10:31:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.434
X-Spam-Level: 
X-Spam-Status: No, score=-6.434 tagged_above=-999 required=5 tests=[BAYES_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, T_SPF_HELO_TEMPERROR=0.01, T_SPF_TEMPERROR=0.01] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CyGJEj4AsOcp for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 10:31:18 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E6405120074 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 10:31:17 -0700 (PDT)
Date: Tue, 10 Sep 2019 10:31:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568136677; bh=PZolga85z5RmvGJhWTEvbFSer1/L5pyC4juFqQwTKWY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=fLJeGbw5S/JUrMsbv8l6dxIhGdR35LrZe9w0gGp9t04XI0RHe48WTVANJhxz7jvG1 Fqb+G38d4EezMw6hUwbZaEd9Cq4gH3/zDSadGoq42VatHwti5D7zBY1o992e4txvaq +/NJwcoHbCtofk8Qf+j36fQA0mI1GU7g2S3GnBSg=
From: Ryan Hamilton <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZOSUNZYESF4KT55PN3QUPHJEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/530041159@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77dde4f219c_db93fd85b8cd96c96096"; 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/bx2EDRERWb9MU9KdVoVu43FDVWk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 17:31:20 -0000

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

This definitely seems like a reasonable concern to me. I'd be inclined to extend to Retry packets the use of obfuscation/encryption similar to what we do for Initial packets. Heck, we could even encrypt the retry token itself if we really wished to (in keeping with our philosophy of obfuscating/hiding as much as humanly possible)

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

<p>This definitely seems like a reasonable concern to me. I'd be inclined to extend to Retry packets the use of obfuscation/encryption similar to what we do for Initial packets. Heck, we could even encrypt the retry token itself if we really wished to (in keeping with our philosophy of obfuscating/hiding as much as humanly possible)</p>

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


From nobody Tue Sep 10 11:27: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 4A754120041 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 11:27:26 -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 zhTXKEY-z5Zr for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 11:27: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 0172612008C for <quic-issues@ietf.org>; Tue, 10 Sep 2019 11:27:24 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 5743D6E14A5 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 11:27:24 -0700 (PDT)
Date: Tue, 10 Sep 2019 11:27:24 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-use-contains/000000-7daa64@github.com>
Subject: [quicwg/base-drafts] 7daa64: Use contains()
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1JJhETGa5IaQ8GgcjFq4N6pUzpM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 18:27:26 -0000

  Branch: refs/heads/ianswett-use-contains
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7daa6462428e3bda9313451976223c156bc05866
      https://github.com/quicwg/base-drafts/commit/7daa6462428e3bda9313451976223c156bc05866
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Use contains()

Per @martinthomson suggestion, use contains() instead of the implicit check.

Fixes #2569 
An alternative to #2987



From nobody Tue Sep 10 11:28: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 1D98112008C for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 11:28: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_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 moESczvtQCA1 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 11:28: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 7AC7E120041 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 11:28:10 -0700 (PDT)
Date: Tue, 10 Sep 2019 11:28:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568140089; bh=SVzOv8E4AX4+4aly+VsJ0oueUnmaaYf9/Eu4arAMd24=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=WQMHC5CU6jph9L/MZ8dFYfzFiyqRtkIOVV5EC5E2nLrFauTQDmH/1r+CyZtd+4vcO lwKDrSgIdNoIBxK4D2AyY2IVLkIrITpfdGXFmdgp+wtd1A7s75wdVX8AB25Wke6RuS BGFguN5NeJiw7jxXJv70p/6q4nf8h/EcmVtVM6kU=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5PJQCROR3XGIDPYC53QUV4TEVBNHHB2UFYJQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3015@github.com>
Subject: [quicwg/base-drafts] Use contains() in recovery pseudocode (#3015)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77eb3987539_2bbf3f7f8c4cd95c40943b"; 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/oPwllA1ZPpW_TPE53sIqSkXqV88>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 18:28:12 -0000

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

Per @martinthomson suggestion, use contains() instead of the implicit check.

Fixes #2569 
An alternative to #2987
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Use contains()

-- File Changes --

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

-- Patch Links --

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

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

<p>Per <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> suggestion, use contains() instead of the implicit check.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #2569.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="427329370" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2569" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2569/hovercard" href="https://github.com/quicwg/base-drafts/issues/2569">#2569</a><br>
An alternative to <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="484591681" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2987" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2987/hovercard" href="https://github.com/quicwg/base-drafts/pull/2987">#2987</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/3015'>https://github.com/quicwg/base-drafts/pull/3015</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Use contains()</li>
</ul>

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

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

----==_mimepart_5d77eb3987539_2bbf3f7f8c4cd95c40943b--


From nobody Tue Sep 10 11:28: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 44883120098 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 11:28: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 xtHUAsDxpezZ for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 11:28: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 0039F12008C for <quic-issues@ietf.org>; Tue, 10 Sep 2019 11:28:43 -0700 (PDT)
Date: Tue, 10 Sep 2019 11:28:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568140123; bh=r8aHXTEPmkaHNskFc2TQm9056dIu3YvgF4cexM/Mcvg=; h=Date:From:To:Subject:From; b=v38Z/brQFYaebxES04/SoVQJnM1KKgwoh/8BeM07OSoSABNUAZCJsrgtDxB4sfd0w FaIvm5Ap1viWJRqsvCp1tZQxG/pvIhqAYza/SoqXPOSQ8nT4Tje2a256SyNwLstLrr BIV7M+QMAb3F69nXVoYvLK/XPCUgCA9RTycgGu4A=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/12570f-539eba@github.com>
Subject: [quicwg/base-drafts] 539eba: Script updating gh-pages from 7daa6462. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZRQwLO2YOE7TO7__6RMxTFShGaY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 18:28:46 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 539ebafa9f67c7eb9a9b98b1f67b4b247df25e54
      https://github.com/quicwg/base-drafts/commit/539ebafa9f67c7eb9a9b98b1f67b4b247df25e54
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

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



From nobody Tue Sep 10 11:29: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 019201207FE for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 11:29:32 -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 lfH0sqbXced3 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 11:29:30 -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 4E05A120273 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 11:29:30 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id A63031C04F3 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 11:29:29 -0700 (PDT)
Date: Tue, 10 Sep 2019 11:29:29 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYHJ56OEYP5N2XKBWN3QUWBTEVBNHHBZYSIIE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2987/c530063169@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2987@github.com>
References: <quicwg/base-drafts/pull/2987@github.com>
Subject: Re: [quicwg/base-drafts] Replace remove() with setting to null (#2987)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77eb8997765_439c3fce314cd9684136f9"; 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/zgdgk5ix1r3QvOdwT3K7VVs0UHI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 18:29:32 -0000

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

I created a 1-line PR #3015 to use contains().  I slightly prefer that one to this 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/2987#issuecomment-530063169
----==_mimepart_5d77eb8997765_439c3fce314cd9684136f9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I created a 1-line PR <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="491829324" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3015" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3015/hovercard" href="https://github.com/quicwg/base-drafts/pull/3015">#3015</a> to use contains().  I slightly prefer that one to this 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/2987?email_source=notifications&amp;email_token=AFTOJK2TYOSBEXULY46JHTTQI7RQTA5CNFSM4IPA4SAKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6MB6QI#issuecomment-530063169">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5ENANGIKMKQK6AXC3QI7RQTANCNFSM4IPA4SAA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4KX62QCR25KORLMULQI7RQTA5CNFSM4IPA4SAKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6MB6QI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2987?email_source=notifications\u0026email_token=AFTOJK2TYOSBEXULY46JHTTQI7RQTA5CNFSM4IPA4SAKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6MB6QI#issuecomment-530063169",
"url": "https://github.com/quicwg/base-drafts/pull/2987?email_source=notifications\u0026email_token=AFTOJK2TYOSBEXULY46JHTTQI7RQTA5CNFSM4IPA4SAKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6MB6QI#issuecomment-530063169",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d77eb8997765_439c3fce314cd9684136f9--


From nobody Tue Sep 10 11:30: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 BFD33120041 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 11: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 0ZllssmV6E-Y for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 11:30: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 6E60D1201B7 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 11:30:54 -0700 (PDT)
Date: Tue, 10 Sep 2019 11:30:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568140253; bh=174nmyFXE48Kc0fl87UTWhMzhAqqViOET/gfY1IKCVw=; h=Date:From:To:Subject:From; b=Ylfdeqs76dromidLbJGSqCanVgG3mXXm/NLYHQhInadJpo+flYsTEH1nKjXBL1vr1 RkuR/w/SebeYVjITvq32ozXYOlU8gGH0j7xKa86mo0NNoVJ8REdOajqB7dW7A1HqSn n2bXquLuv9RTM0EjpcyFWYL4DODAmcytoBrmfDzI=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/539eba-d194c6@github.com>
Subject: [quicwg/base-drafts] d194c6: Script updating issues at 2019-09-10T18:30: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/Rfn72rofDKwRuuikaUUMk0bIIRk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 18:30:56 -0000

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

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-09-10T18:30:46Z. [ci skip]



From nobody Tue Sep 10 11:32: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 3222D120041 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 11:32: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 KKH47h2HDr9s for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 11:32: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 283A71201B7 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 11:32:23 -0700 (PDT)
Date: Tue, 10 Sep 2019 11:32:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568140342; bh=6nG4UScvScVn/XSD05Hlv+FVECsBcgB7OcCMmrTipkg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ttYb5LnGStpHuQv+SsFdQbmokUS4gH/6l2Ks0d3ElaxVWTMHZ5/k8rzy7MUc97dCr BWdw5srjbNaLdVzFDwXQdAFLypv2rhZdfe8wBx3Bh7qBa6bw/ma40St9rLj3U5cViH iXFjGXohGAi6IEGHFNj7Oyj1C3jANDPK9yxC6KqE=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7POG7EU2VIS4JIJGF3QUWMNEVBNHHB2UFYJQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3015/review/286352229@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3015@github.com>
References: <quicwg/base-drafts/pull/3015@github.com>
Subject: Re: [quicwg/base-drafts] Use contains() in recovery pseudocode (#3015)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77ec365bfee_70a63faf3fccd96c236980"; 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/zPkhAQLR84iBNi9NgZGyss_0Uzo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 18:32:25 -0000

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

janaiyengar approved this pull request.

I like this 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/3015#pullrequestreview-286352229
----==_mimepart_5d77ec365bfee_70a63faf3fccd96c236980
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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

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


From nobody Tue Sep 10 11: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 2EFF31201EA for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 11:32: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 h3IDmdcOWRdO for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 11:32: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 E01C5120041 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 11:32:39 -0700 (PDT)
Date: Tue, 10 Sep 2019 11:32:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568140359; bh=TinUc7DB/fil0SRn99C646o35Lsv7tiIMXBHy+HeCMk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=onOlTBCGpIFS7g7VxyjRhS9sHwPjfTF4oqaSAVe1lPEvn7aCbCKTpj7D8URxmGfMH UD1Z/7ZVP59/1s6GcbsES4IyVzWEJGZhxYwOkavLuueUe0qqTVKy9QNM/3RgUDY720 +gw5+Y+z8/aq+NTRtLhcNEmuUrhcEZV/qtgeGC3g=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2ECNMIRH3NBIQNYCF3QUWNPEVBNHHBZYSIIE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2987/c530064391@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2987@github.com>
References: <quicwg/base-drafts/pull/2987@github.com>
Subject: Re: [quicwg/base-drafts] Replace remove() with setting to null (#2987)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77ec473ad57_3dcf3fecb74cd964354798"; 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/uPpyEzQ5UJ4EoRenU-zYn9kRWrY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 18:32:41 -0000

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

I like #3015 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/2987#issuecomment-530064391
----==_mimepart_5d77ec473ad57_3dcf3fecb74cd964354798
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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


From nobody Tue Sep 10 11: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 BAF811208B6 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 11:43: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_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 UpL6MUklxJZU for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 11:43: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 D0445120832 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 11:43:45 -0700 (PDT)
Date: Tue, 10 Sep 2019 11:43:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568141025; bh=GF+/Y4zJ4nmS0c4hQJ0n3sffDwePIKNfINr0cv0RsLE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hPlD9Xf7btfiCEefUa+7lkYBX8ZHpEd3dT+CgRm2b4+yMyujlNwN3WXSSBH5N1N0J Q9hTpmsCYIaiac14jPo3oyEhCyDCkADT7nkduVxqR1NBbcIXHz3eKHj4qBlQ9VnDqv FPmRlidxqhmbs12/5TwjkHbfhub7+zmShxycqWDo=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4PO6T3ESB74WFU7BF3QUXXBEVBNHHB2OXHYQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3009/c530068800@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3009@github.com>
References: <quicwg/base-drafts/pull/3009@github.com>
Subject: Re: [quicwg/base-drafts] Cache git repo, draft references in Circle (#3009)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77eee0eeb4c_59453ff560ecd96c3844a3"; 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/kDnpSAvDfXl8M1T5Jn4Jd3A92Y0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 18:43:50 -0000

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

> We will always be picking up the cache that you create the first time `master` uses this build. And the references cache will be old in less than a week now, but that is the cache that will be used in perpetuity.

That would be true if we created a cache once and never wrote an updated one.  But we're not -- we're creating a fresher one each time we run.  We'll be picking up the cache from the *last* time master built, not the first.

Because each key is immutable once written, the keys *have* to be unique (epoch and revision).  But when we're searching by prefix, that doesn't mean it's going to use the oldest possible match.

>From https://circleci.com/docs/2.0/caching/#source-caching:
> If there are multiple matches, the **most recently generated cache** will be used.

Again, look at the actual behavior for builds on this branch:
- Build 12474 uses both caches from build 12461
- Build 12461 uses both caches from build 12459
- Build 12459 uses both caches from build 12457
- Build 12457 uses both caches from build 12455
- Build 12455 uses both caches from build 12453
- Build 12453 uses the git cache from build 12451 and creates the reference cache
- Build 12451 uses the git cache from build 12449
- Build 12449 creates the git cache

Each build creates a new cache instance, and each run uses:
- The most recent git cache for the current revision, or branch, or for master, or overall
- The most recent reference cache from any previous run

Sure, odds are that each stored cache only gets used once and then sits there collecting dust until Circle expires it 30 days later, which means we're not amortizing the time to create the cache over multiple future runs.  But the combined time to store a new cache instance and retrieve the latest cache instance is massively outweighed by the time saved by having that cache.

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

<blockquote>
<p>We will always be picking up the cache that you create the first time <code>master</code> uses this build. And the references cache will be old in less than a week now, but that is the cache that will be used in perpetuity.</p>
</blockquote>
<p>That would be true if we created a cache once and never wrote an updated one.  But we're not -- we're creating a fresher one each time we run.  We'll be picking up the cache from the <em>last</em> time master built, not the first.</p>
<p>Because each key is immutable once written, the keys <em>have</em> to be unique (epoch and revision).  But when we're searching by prefix, that doesn't mean it's going to use the oldest possible match.</p>
<p>From <a href="https://circleci.com/docs/2.0/caching/#source-caching" rel="nofollow">https://circleci.com/docs/2.0/caching/#source-caching</a>:</p>
<blockquote>
<p>If there are multiple matches, the <strong>most recently generated cache</strong> will be used.</p>
</blockquote>
<p>Again, look at the actual behavior for builds on this branch:</p>
<ul>
<li>Build 12474 uses both caches from build 12461</li>
<li>Build 12461 uses both caches from build 12459</li>
<li>Build 12459 uses both caches from build 12457</li>
<li>Build 12457 uses both caches from build 12455</li>
<li>Build 12455 uses both caches from build 12453</li>
<li>Build 12453 uses the git cache from build 12451 and creates the reference cache</li>
<li>Build 12451 uses the git cache from build 12449</li>
<li>Build 12449 creates the git cache</li>
</ul>
<p>Each build creates a new cache instance, and each run uses:</p>
<ul>
<li>The most recent git cache for the current revision, or branch, or for master, or overall</li>
<li>The most recent reference cache from any previous run</li>
</ul>
<p>Sure, odds are that each stored cache only gets used once and then sits there collecting dust until Circle expires it 30 days later, which means we're not amortizing the time to create the cache over multiple future runs.  But the combined time to store a new cache instance and retrieve the latest cache instance is massively outweighed by the time saved by having that cache.</p>

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


From nobody Tue Sep 10 12:15: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 F314F120274 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 12:15:18 -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 IWT_9un8KlSU for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 12:15: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 5C44F12081F for <quic-issues@ietf.org>; Tue, 10 Sep 2019 12:15:17 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 79854961C0F for <quic-issues@ietf.org>; Tue, 10 Sep 2019 12:15:16 -0700 (PDT)
Date: Tue, 10 Sep 2019 12:15:16 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6MYCQLV56SC5GZVFV3QU3NJEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/530080294@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d77f6446a6f0_35a33fb915ecd96c102582"; 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/T80NHTJPVqbkDJQdzaZwKnF7O0g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 19:15:24 -0000

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

+1. Using AES-GCM-128 with initial salts for retry could solve this elegantly.

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

<p>+1. Using AES-GCM-128 with initial salts for retry could solve this elegantly.</p>

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


From nobody Tue Sep 10 12: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 8368012008C for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 12:48: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 UhGlifUfkDf2 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 12:48:54 -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 3C16E120255 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 12:48:52 -0700 (PDT)
Date: Tue, 10 Sep 2019 12:48:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568144931; bh=XBcaLFf5z9pyumyD3rtUg2eIY+oAHVB5XVCcpsk/y00=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FU1uIXB/Z8SA4wPwZ8xY4E4XXm+nR4jUSZ8DRzccFJiqi7cKo4STHBVAjjFWZAmeg QTV+naNExaN7DjG9fLVM4bI7RUQAsfTtlKmMAdLxe8FgFJ7J7QsS/JZdn7k3JNukq/ TAwKQL4K/UpZE+Py0UYaYDXz7cZCPVDSk5G8D6Cs=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK26KUMGVHF5XHXYVF53QU7LHEVBNHHBYH45I4@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/530091849@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_5d77fe233235b_225e3fbf2aecd960706c3"; 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/visw1jLdj9ZLIn4boNDABUEANPk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 19:48:55 -0000

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

I agree with @martinthomson . We should remove the restrictions and add text explaining that servers can either buffer or send retry. I can write the PR if it helps.

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

<p>I 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> . We should remove the restrictions and add text explaining that servers can either buffer or send retry. I can write the PR if it helps.</p>

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


From nobody Tue Sep 10 14:59: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 8D38E12022A for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 14:59: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 lptDGEMSEsnR for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 14:59:21 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0C7BC120074 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 14:59:20 -0700 (PDT)
Date: Tue, 10 Sep 2019 14:59:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568152760; bh=r8WPUOAb60qQge5FDyvFNKg2Ew9po5Ta0h4V5jXgt40=; h=Date:From:To:Subject:From; b=GcRUZKKXqlJ7S+xLN+5RHjcKeseJZzQmWNs5hgELSUi/3UZlFJuoXzc6EKnMiMmJG OgSGWI+rfSYotBGqIWiB/xfwKDwPHAAyXKEb49YQ0Cs3a0RRReSh/jUyd3j/OMXYJ4 GyaDXdr3KSRucTiy1gamLlp3W5YXyaymDuLA6tkQ=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-initial-secrets-constant/58cd0b-9c4573@github.com>
Subject: [quicwg/base-drafts] 9c4573: 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/y8h-y6lQ64eFtEEJA6uV7ohYi3Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 21:59:23 -0000

  Branch: refs/heads/ianswett-initial-secrets-constant
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9c45730ca607fd1961fff9505db0841ca9430b10
      https://github.com/quicwg/base-drafts/commit/9c45730ca607fd1961fff9505db0841ca9430b10
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Martin's suggestion



From nobody Tue Sep 10 14:59: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 7117B120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 14:59: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 ird1haGh0Qy5 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 14:59: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 A6CFE120232 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 14:59:28 -0700 (PDT)
Date: Tue, 10 Sep 2019 14:59:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568152767; bh=d58lnnNanA6At4QXyRWN7t01JJoxFdR79OReJI7as+M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OGUhLWDLuYSHjWtuj1ZNgl0HiyN4ieGiQ/GVSGmqQOReYbL7aWd6ojfbyH6qmW0fv +Q6+2aX+axm1t9v+obsPQwyLYxw0XnlEk1P2MW6dsoe+0D6tQLDiZD/yIP0PdVDidW Y2QqJtloNKwJHZlykwPFqU6msZdvRV5x5UUUNOAY=
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/4019273961@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_5d781cbfb01e0_6cbe3fc127ecd95c38722e"; 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/ZrNTjVUh0W4_Cvi4U3oIG19y9yo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 21:59:31 -0000

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

@ianswett pushed 1 commit.

9c45730ca607fd1961fff9505db0841ca9430b10  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/58cd0b4b24118866353d0eaa358bd03e57dec90b..9c45730ca607fd1961fff9505db0841ca9430b10

----==_mimepart_5d781cbfb01e0_6cbe3fc127ecd95c38722e
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/9c45730ca607fd1961fff9505db0841ca9430b10">9c45730</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/58cd0b4b24118866353d0eaa358bd03e57dec90b..9c45730ca607fd1961fff9505db0841ca9430b10?email_source=notifications&amp;email_token=AFTOJK5626T7STYGMRGJZYLQJAKD7A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYTSMRXGM4TMMI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6GMQJX3ZUXSCQWGS3QJAKD7ANCNFSM4H7BHVFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK63EVCQHTONW4BVRTLQJAKD7A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYTSMRXGM4TMMI.gif" height="1" width="1" 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/58cd0b4b24118866353d0eaa358bd03e57dec90b..9c45730ca607fd1961fff9505db0841ca9430b10?email_source=notifications\u0026email_token=AFTOJK5626T7STYGMRGJZYLQJAKD7A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYTSMRXGM4TMMI",
"url": "https://github.com/quicwg/base-drafts/pull/2878/files/58cd0b4b24118866353d0eaa358bd03e57dec90b..9c45730ca607fd1961fff9505db0841ca9430b10?email_source=notifications\u0026email_token=AFTOJK5626T7STYGMRGJZYLQJAKD7A5CNFSM4H7BHVF2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TKNJXGAZDCMKQOVZWQIZUGAYTSMRXGM4TMMI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d781cbfb01e0_6cbe3fc127ecd95c38722e--


From nobody Tue Sep 10 15:00: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 3540A12022A for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:00: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 QksvKUJe-nnV for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:00: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 4F04A120074 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:00:44 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:00:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568152843; bh=Hey99d1FoekXSO5x1vtJ+BXubXM7ZFJMfY1k0is8P8g=; h=Date:From:To:Subject:From; b=VeJd4irbb6igRGOfPkFcby27MEykqVfYgFuE8+oCBTMEZyK7hgfkOTAUD5pxnXkIv 3qWtXMJenhjJ+EJ1H+lp4hi4H7hVxJXOJMnbh9dIGv7NlvMd7xzv08QRYytxaKOPT3 sZKce8flXaDZuF6Hrygfup+w+/sOIwqFaXyPOPP4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d194c6-9230cf@github.com>
Subject: [quicwg/base-drafts] 9230cf: Script updating gh-pages from 9c45730c. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/e0SOyCjl10w4vKrgy2z86NCGAkw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:00:46 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9230cf402a434ac10ea42f09c772099800bcabb2
      https://github.com/quicwg/base-drafts/commit/9230cf402a434ac10ea42f09c772099800bcabb2
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-10 (Tue, 10 Sep 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 9c45730c. [ci skip]



From nobody Tue Sep 10 15: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 1D09E1200E0 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:05: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 GPCKtglQrAjv for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:05: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 D8152120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:05:08 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:05:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153108; bh=3W1DVMeJfddfprNhxgWer1dliEsRAT9fg1NOfySbRSo=; h=Date:From:To:Subject:From; b=uBFBk+7mLpwifJiYEVhJNpRizC4Sgk2Y9aNImgRIF/TCv4TncGExLJylXUuscjq9d f8Qgnuwyt6hYa2/iA/tHypSNmRhR3DiXcJSeBe96qJMdN1WdxDKil5ORAjg+LA3haA bHNYq6uHG6M8ztp3dzoINhruE9dv0hjuUH9UN0pA=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/10497d-a6a720@github.com>
Subject: [quicwg/base-drafts] a6a720: Use contains() (#3015)
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/aREKA7W-ndi-RjVq6X0lIxrmR4I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:05:10 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: a6a7203c7dff9dae6408f8cfbb008e14c1aeaf9a
      https://github.com/quicwg/base-drafts/commit/a6a7203c7dff9dae6408f8cfbb008e14c1aeaf9a
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Use contains() (#3015)

Per @martinthomson suggestion, use contains() instead of the implicit check.

Fixes #2569 
An alternative to #2987



From nobody Tue Sep 10 15:05: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 72335120019 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:05: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, 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 p8BO4OhxLKkg for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:05: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 46707120074 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:05:09 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:05:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153108; bh=+6X6VUU00IPdP8zsiKImekSeiFlHWaNqRdkCKAsMsyM=; h=Date:From:To:Subject:From; b=Ej3m+iceyXiYwbbq3MgUD6RaQ3yoOAEWTG/FgO3NkWgZYUj3ACMg88HtZfuGvO4Xr tC97P+qAPa25NZRTwfLPRhEjnekVXiemUtwLty5QJCQDoIaNfXwzq54VF4lWy/3r57 oER/UIxX8FV/S2kYl7CZqRzd4o5lWicgZ95gDMyc=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-use-contains/7daa64-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/ohMxJi-43XLBK6p2yXOXnCOEG3A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:05:10 -0000

  Branch: refs/heads/ianswett-use-contains
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue Sep 10 15:05: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 3B0431200E0 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:05: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 IcnJeNbuSVid for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:05:17 -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 DDE9F120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:05:16 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:05:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153116; bh=hkCPwO/+hwq1ZN4VPnFbsB1Gh3mkJrolS9cKpUZdrZY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ceM/4/4YLTwvr5iIi2Qef3dQzoLtK77ZV2p4w9y5GthShgTr1eC/THHGhad95yPnC pNGKxUOHVWuwd0bR4UqO66WSIgWoijR1TGIe2d1jzmd9s88mPQx0zbO8Uff7LTlSKh N3jXpXwvI1fL3vYQj9H958YKd2Ro6N32PsyZFocE=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7BURAAIEBCP3Y4FXV3QVPKZEVBNHHBS6EHLI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2569/issue_event/2623840458@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2569@github.com>
References: <quicwg/base-drafts/issues/2569@github.com>
Subject: Re: [quicwg/base-drafts] RTT sample should be taken only once for each largest_acked (#2569)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d781e1c24e4d_6a03fad656cd96c31678d"; 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/E9qKey3l9Fs3QZJN8Gb7eqaF7N8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:05:18 -0000

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

Closed #2569 via #3015.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/2569#event-2623840458
----==_mimepart_5d781e1c24e4d_6a03fad656cd96c31678d
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="427329370" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2569" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2569/hovercard" href="https://github.com/quicwg/base-drafts/issues/2569">#2569</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="491829324" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3015" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3015/hovercard" href="https://github.com/quicwg/base-drafts/pull/3015">#3015</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/2569?email_source=notifications&amp;email_token=AFTOJK26FJXZ7XLORW46PTTQJAKZZA5CNFSM4HCP4ZR2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSKBSQ#event-2623840458">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYC3TLQXI4TEW7C4JLQJAKZZANCNFSM4HCP4ZRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4AFJMFUYGMQ7HQBADQJAKZZA5CNFSM4HCP4ZR2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSKBSQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/2569?email_source=notifications\u0026email_token=AFTOJK26FJXZ7XLORW46PTTQJAKZZA5CNFSM4HCP4ZR2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSKBSQ#event-2623840458",
"url": "https://github.com/quicwg/base-drafts/issues/2569?email_source=notifications\u0026email_token=AFTOJK26FJXZ7XLORW46PTTQJAKZZA5CNFSM4HCP4ZR2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSKBSQ#event-2623840458",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d781e1c24e4d_6a03fad656cd96c31678d--


From nobody Tue Sep 10 15:05: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 31D84120019 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:05: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 uhn95PpD-z_8 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:05: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 2D60B120074 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:05:17 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:05:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153116; bh=jZqa+Tw6W/xpmBGuzhDUd7fykqJiwk9ewQeF+9iVxVU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Zp4b3ILozPsEgzCejvMbX62wNPButEfvZWrKncyHKIBQ1E/Smesu/rMqr6j2uuSIG JKMwBdU154ejzUpQSXgeT0kJMh91925W0QNgOx04d4SQiOJjznIGJo+M/5ZWePlX1O 67wHvhSnbWFDOgkVOSEPHUBynG1peFDjlJaZNPD0=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZOK4MMVH5X5ETHERF3QVPKZEVBNHHB2UFYJQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3015/issue_event/2623840452@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3015@github.com>
References: <quicwg/base-drafts/pull/3015@github.com>
Subject: Re: [quicwg/base-drafts] Use contains() in recovery pseudocode (#3015)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d781e1c5dd47_4aea3ff98e8cd9683510ca"; 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/acsgAg_L4UFLPtQzfCHJIpQOvtk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:05:19 -0000

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

Merged #3015 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/3015#event-2623840452
----==_mimepart_5d781e1c5dd47_4aea3ff98e8cd9683510ca
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="491829324" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3015" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3015/hovercard" href="https://github.com/quicwg/base-drafts/pull/3015">#3015</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/3015?email_source=notifications&amp;email_token=AFTOJK7RQW76GZAN374XQ3DQJAKZZA5CNFSM4IVLCUEKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSKBRA#event-2623840452">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ6LFSGCWWGFEOYOPDQJAKZZANCNFSM4IVLCUEA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6SSBNT63AFJMUQUPDQJAKZZA5CNFSM4IVLCUEKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSKBRA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3015?email_source=notifications\u0026email_token=AFTOJK7RQW76GZAN374XQ3DQJAKZZA5CNFSM4IVLCUEKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSKBRA#event-2623840452",
"url": "https://github.com/quicwg/base-drafts/pull/3015?email_source=notifications\u0026email_token=AFTOJK7RQW76GZAN374XQ3DQJAKZZA5CNFSM4IVLCUEKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSKBRA#event-2623840452",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d781e1c5dd47_4aea3ff98e8cd9683510ca--


From nobody Tue Sep 10 15:05: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 4BE7C120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:05: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 FwJPomPRr8XT for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:05: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 13FCC120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:05:34 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:05:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153133; bh=Yzwp9Zy4jmFZIkpvkunfnM1+YcWkb//s6OYccqf79/0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EM2HVKlGgjHqhZzAzqBOjr1+lFZlYXamIZJCBQ37qZ46voYfyls080n/XhgVEpBld YXR5+U12tuGsCvSx/T+Msbt0alDVpS6f+w2Si5UJvdscINmDYtw/ZrPz8Kb8K7JgHa adw2ndw5tXOq7owmb0wc1TdVfRkCp3SoKsaLqS+A=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5GVIO76YAYKLAH5353QVPLZEVBNHHBZYSIIE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2987/issue_event/2623841000@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2987@github.com>
References: <quicwg/base-drafts/pull/2987@github.com>
Subject: Re: [quicwg/base-drafts] Replace remove() with setting to null (#2987)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d781e2ce93ec_39f83faaa76cd964236328"; 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/kjKASKNIc1KOr06xCkKwsMSsJdo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:05:35 -0000

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

Closed #2987.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2987#event-2623841000
----==_mimepart_5d781e2ce93ec_39f83faaa76cd964236328
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="484591681" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2987" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2987/hovercard" href="https://github.com/quicwg/base-drafts/pull/2987">#2987</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/2987?email_source=notifications&amp;email_token=AFTOJK5KT7PEX3Y7UQMNU53QJAK2ZA5CNFSM4IPA4SAKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSKF2A#event-2623841000">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYNXV4I2FXJB2MIZGLQJAK2ZANCNFSM4IPA4SAA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK452HTYDAG7DWDWM2TQJAK2ZA5CNFSM4IPA4SAKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSKF2A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2987?email_source=notifications\u0026email_token=AFTOJK5KT7PEX3Y7UQMNU53QJAK2ZA5CNFSM4IPA4SAKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSKF2A#event-2623841000",
"url": "https://github.com/quicwg/base-drafts/pull/2987?email_source=notifications\u0026email_token=AFTOJK5KT7PEX3Y7UQMNU53QJAK2ZA5CNFSM4IPA4SAKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSKF2A#event-2623841000",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d781e2ce93ec_39f83faaa76cd964236328--


From nobody Tue Sep 10 15: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 4A0F61200E0 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:06: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 s91eWRSOCg1g for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:06:24 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5E005120074 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:06:24 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:06:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153183; bh=K3oAhni8iAwGIxErbjz627eUtdpyOcMBPZd5ihCX1Fc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VBFyCHUBUQBdWebqY5N+YonrUcMsoTSFJljBNEW5J4oYt/Xb5b6QTJklCGXTrxUDg G38mRl6x21PmvYPVHHUAwrY8xNe+uNbL1RP6FHXwL5a5tkmdvtn2R5JewgkPn8Idan EIVAbZIsW4MiCUHlghFOnsqKda59/X6BqFEzHL2E=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7N76JA2F3D6IZJJX53QVBM7EVBNHHB2AE7TY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2998/review/286461995@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2998@github.com>
References: <quicwg/base-drafts/pull/2998@github.com>
Subject: Re: [quicwg/base-drafts] Error codes can't cause errors (#2998)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d781e5f88ea9_6cb63fc127ecd95c4098df"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/j1LDaRZfbyWk2Tms1wYMOaTunL8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:06:26 -0000

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

martinthomson commented on this pull request.



> @@ -1394,6 +1394,11 @@ the entire connection when an error is encountered.  These are referred to as
 {{QUIC-TRANSPORT}}.  An endpoint MAY choose to treat a stream error as a
 connection error.
 
+Because new error codes can be defined without negotiation (see {{extensions}}),
+receipt of an unknown error code or use of an error code in an unexpected
+context MUST NOT be treated as an error.  However, closing a stream can
+constitute an error regardless of the error code -- see {{request-response}}.

```suggestion
constitute an error regardless of the error code; see {{request-response}}.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2998#pullrequestreview-286461995
----==_mimepart_5d781e5f88ea9_6cb63fc127ecd95c4098df
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/2998#discussi=
on_r322983447">draft-ietf-quic-http.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1394,6 +1394,11 @@ the entire connecti=
on when an error is encountered.  These are referred to as=0D
 {{QUIC-TRANSPORT}}.  An endpoint MAY choose to treat a stream error as a=
=0D
 connection error.=0D
 =0D
+Because new error codes can be defined without negotiation (see {{extens=
ions}}),=0D
+receipt of an unknown error code or use of an error code in an unexpecte=
d=0D
+context MUST NOT be treated as an error.  However, closing a stream can=0D=

+constitute an error regardless of the error code -- see {{request-respon=
se}}.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-constitute an error regardless of the error c=
ode -- see {{request-response}}.=0D
+constitute an error regardless of the error code; see {{request-response=
}}.=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/2998?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK4MQE5ILLCUOM4WMA3QJAK57A5CNFSM4IRRX4EKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJRAKY#pullrequestreview-286461995=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK74THJTQUCYPGM6AODQJAK57ANCNFSM4IRRX4EA">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK6C23L6=
J6VR5YQTPPDQJAK57A5CNFSM4IRRX4EKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJRAKY.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/2998?email_source=3D=
notifications\u0026email_token=3DAFTOJK4MQE5ILLCUOM4WMA3QJAK57A5CNFSM4IRR=
X4EKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
EJRAKY#pullrequestreview-286461995",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2998?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK4MQE5ILLCUOM4WMA3QJAK57A5CNFSM4IRRX4=
EKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJ=
RAKY#pullrequestreview-286461995",=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_5d781e5f88ea9_6cb63fc127ecd95c4098df--


From nobody Tue Sep 10 15:06: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 83FA7120232 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:06: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 Btqe0dJfWZwU for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:06: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 A38061200E0 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:06:28 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:06:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153187; bh=8wcEilGFq6gsXgCpqHUBacGuzaUb6SgvjzY0Nx/S7eE=; h=Date:From:To:Subject:From; b=ObtNDGn5s0zRFSzzitYBi3uUfwdbJTfRY7a4L3CEs+nSaz/7TdifXF2pEfrqF33dq +COuyOHfld2KiK45fmZmGRJQ1HqehxC8lmW921qk5KJIDeWCei6HnQpQjmu0uhg9Up tCwnnMVtJvlGqG+t8Iya1S14MDi4tbNxQpCmzVFY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/9230cf-fb2eff@github.com>
Subject: [quicwg/base-drafts] fb2eff: Script updating gh-pages from a6a7203c. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4YCBEx1e1JIhd2EZU_6l_bMiWY0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:06:31 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: fb2eff018307041ea44bec1cb12e082d173b1cd6
      https://github.com/quicwg/base-drafts/commit/fb2eff018307041ea44bec1cb12e082d173b1cd6
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-10 (Tue, 10 Sep 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 a6a7203c. [ci skip]



From nobody Tue Sep 10 15:07: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 B1636120877 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07: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 euNaUX7Uf7rZ for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07:00 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 678171207FC for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:07:00 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:06:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153219; bh=adOc9tLgpHqeHXKsEPh4xvWTh+6t0x8Jb+p0XzxUM4g=; h=Date:From:To:Subject:From; b=GqKTMqdnKZoPMrDykKfXO0MIXRXown+HawYpuuLx6ZQJeYcmE7EoqlzPe+Ptt3TBN Q8a3CtQxL/OfVCeELXHvktBG+xMasIKLWFAR+ij+zWlHA52I6Pj+Xv9jz0Y4Gelmaj c+tjdrr1RrFq59MBmal5YDFaKZR/kNLVtIgfHBmw=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/a6a720-f9d421@github.com>
Subject: [quicwg/base-drafts] 75941f: Talk more about multiple tokens
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Gb_DlvqHYhYpS2npxW9alA8xOmY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:07:09 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 75941fc64c6c052376423810b270755c5a7e83b7
      https://github.com/quicwg/base-drafts/commit/75941fc64c6c052376423810b270755c5a7e83b7
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-08-16 (Fri, 16 Aug 2019)

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

  Log Message:
  -----------
  Talk more about multiple tokens

This addresses some questions about use of multiple tokens, as well as
cleaning up the text adjacent in minor ways.

Closes #2801.


  Commit: 9195b40650ee9d5d5d1f90106754d4c7f802ef10
      https://github.com/quicwg/base-drafts/commit/9195b40650ee9d5d5d1f90106754d4c7f802ef10
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-08-16 (Fri, 16 Aug 2019)

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

  Log Message:
  -----------
  Reword


  Commit: 6f997b45ca333ecca7228b3924fdf4771cd76fdd
      https://github.com/quicwg/base-drafts/commit/6f997b45ca333ecca7228b3924fdf4771cd76fdd
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-08-16 (Fri, 16 Aug 2019)

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

  Log Message:
  -----------
  Not migration, just address change


  Commit: 992fa67711500ce5432ed071c4efb18390a8fa6a
      https://github.com/quicwg/base-drafts/commit/992fa67711500ce5432ed071c4efb18390a8fa6a
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-08-16 (Fri, 16 Aug 2019)

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

  Log Message:
  -----------
  Add missing word back


  Commit: f9d4213513d125b99703ee37aaa6d87a19b04a1f
      https://github.com/quicwg/base-drafts/commit/f9d4213513d125b99703ee37aaa6d87a19b04a1f
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  Merge pull request #2962 from quicwg/multi-token

Talk more about multiple tokens


Compare: https://github.com/quicwg/base-drafts/compare/a6a7203c7dff...f9d4213513d1


From nobody Tue Sep 10 15: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 BCA2E120232 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07: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, TVD_SPACE_RATIO=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 gkMbQTIAR7ca for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07:02 -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 05A1112086F for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:07:02 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 4B32DC60801 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:07:00 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:07:00 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/multi-token/992fa6-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/S03evTUVVdY_M5KQOyy-7cRckKY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:07:09 -0000

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


From nobody Tue Sep 10 15:07: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 7D59B120859 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07:11 -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 bUnbZ77quRn0 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07: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 CFD3D1208CD for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:07:09 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 3FCF8521175 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:07:09 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:07:09 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYC7NWTP6L5DISLGIN3QVBP3EVBNHHBZCN75Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2962/issue_event/2623844086@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2962@github.com>
References: <quicwg/base-drafts/pull/2962@github.com>
Subject: Re: [quicwg/base-drafts] Talk more about multiple tokens (#2962)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d781e8d30c36_59253fad3a0cd95c637951"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4tCtv503aOuw9N_o_CFHGkrIQLI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:07:15 -0000

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

Merged #2962 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/2962#event-2623844086
----==_mimepart_5d781e8d30c36_59253fad3a0cd95c637951
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="478789612" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2962" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2962/hovercard" href="https://github.com/quicwg/base-drafts/pull/2962">#2962</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/2962?email_source=notifications&amp;email_token=AFTOJKY2WXQ3WYKYXCFLMMDQJALA3A5CNFSM4IKQMQB2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSK55Q#event-2623844086">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3ZEGHFG4R32INRQP3QJALA3ANCNFSM4IKQMQBQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3X6PIAG3AOC5XZ2NDQJALA3A5CNFSM4IKQMQB2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSK55Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2962?email_source=notifications\u0026email_token=AFTOJKY2WXQ3WYKYXCFLMMDQJALA3A5CNFSM4IKQMQB2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSK55Q#event-2623844086",
"url": "https://github.com/quicwg/base-drafts/pull/2962?email_source=notifications\u0026email_token=AFTOJKY2WXQ3WYKYXCFLMMDQJALA3A5CNFSM4IKQMQB2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSK55Q#event-2623844086",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d781e8d30c36_59253fad3a0cd95c637951--


From nobody Tue Sep 10 15: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 884891208CD for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07: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 zaeyTELwQ70h for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07:09 -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 3F9D31208C3 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:07:09 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:07:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153228; bh=NLfDdGKHpQvRa5Nx5sA61NcU/vCL64zShlGwn9vt07o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Pic1rl8YGJkzZfaUPoBIY1pHw7YFOZ//ya0fdtj4g+i7shz0sB3Y0PZdvlsPFjI7m KlTccpOeIgIrDCEOUOh+NyfT5/7d2Y2YNRXW3A+SCbePlIMPkYvDv7tE1lwQbmh3M4 13TrBQixgekcbu3QrlXUJ8Ie+P/XXsxOqsDdR9fY=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYXIDIY77ULJJN5IZV3QVBPZEVBNHHBWQT5GA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2801/issue_event/2623844093@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2801@github.com>
References: <quicwg/base-drafts/issues/2801@github.com>
Subject: Re: [quicwg/base-drafts] describe how a client is supposed to handle multiple tokens (#2801)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d781e8c88aa7_6563fad656cd96c71216d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9Z6pNBaINNTfw2kTimXN6ONpAgQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:07:17 -0000

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

Closed #2801 via #2962.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/2801#event-2623844093
----==_mimepart_5d781e8c88aa7_6563fad656cd96c71216d
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="457342256" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2801" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2801/hovercard" href="https://github.com/quicwg/base-drafts/issues/2801">#2801</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="478789612" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2962" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2962/hovercard" href="https://github.com/quicwg/base-drafts/pull/2962">#2962</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/2801?email_source=notifications&amp;email_token=AFTOJK3MCSKV6MVG2PECJD3QJALAZA5CNFSM4HY5XTI2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSK57I#event-2623844093">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ3OYEW7NHYYCKMDGDQJALAZANCNFSM4HY5XTIQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK67SVWD5PLT5EWN55DQJALAZA5CNFSM4HY5XTI2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSK57I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/2801?email_source=notifications\u0026email_token=AFTOJK3MCSKV6MVG2PECJD3QJALAZA5CNFSM4HY5XTI2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSK57I#event-2623844093",
"url": "https://github.com/quicwg/base-drafts/issues/2801?email_source=notifications\u0026email_token=AFTOJK3MCSKV6MVG2PECJD3QJALAZA5CNFSM4HY5XTI2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSK57I#event-2623844093",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d781e8c88aa7_6563fad656cd96c71216d--


From nobody Tue Sep 10 15:07: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 50D501208B7 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07:18 -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 HhytJQh94_I3 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07: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 94EEB12089D for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:07:16 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 0362DA03B2 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:07:16 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:07:15 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/http/unknown_error_codes/bca2f5-7480f8@github.com>
Subject: [quicwg/base-drafts] 7480f8: No --
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/b93RM6OHeNcsgtiDO6hHpKDRfSs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:07:24 -0000

  Branch: refs/heads/http/unknown_error_codes
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7480f8f835db8fb0b1fe5707e2fc65c677172ff4
      https://github.com/quicwg/base-drafts/commit/7480f8f835db8fb0b1fe5707e2fc65c677172ff4
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  No --



From nobody Tue Sep 10 15:07: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 715B812085E for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07: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 J4TYBxjRbAEa for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07: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 E2E4012089F for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:07:24 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:07:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153244; bh=zaksbB4q2QaEWx4+Q/M6IVTZlVjlqgTV5YCo2TOtwxA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dn9L1DnUYLG6lbMVLHip1+bdMrOJGGWppjkyx9mBBWbnIyB+wRJN/iACuYaLlTJHM xZihz47JSLRuYHHugM6mHcKgeFlnW3okosXFi+Ht3foG5Sc8tZj9cSAVvscCO2Z3ul qmwgmkehDCThV9YSK5l02D5qohuh4l9eZk2IJUzk=
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/2998/push/4019296461@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2998@github.com>
References: <quicwg/base-drafts/pull/2998@github.com>
Subject: Re: [quicwg/base-drafts] Error codes can't cause errors (#2998)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d781e9c2f55d_348e3fb73b6cd96429255"; 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/WI-dSxm8kTCdGkcs93QpIQM44Gs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:07:27 -0000

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

@MikeBishop pushed 1 commit.

7480f8f835db8fb0b1fe5707e2fc65c677172ff4  No --


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2998/files/bca2f5d6497503495fec0bef3b007ccb49c1dae4..7480f8f835db8fb0b1fe5707e2fc65c677172ff4

----==_mimepart_5d781e9c2f55d_348e3fb73b6cd96429255
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/7480f8f835db8fb0b1fe5707e2fc65c677172ff4">7480f8f</a>  No --</li>
</ul>


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

----==_mimepart_5d781e9c2f55d_348e3fb73b6cd96429255--


From nobody Tue Sep 10 15: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 AF93E12022A for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07: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 NZXGoO3YaMav for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07: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 BE7A4120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:07:41 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:07:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153261; bh=4Q4erNBTFuo9ktAe39OENVERJ2PWTKOnxDP/ntkA3a8=; h=Date:From:To:Subject:From; b=iBaI2daKo+9tFCt8Bv03w1/vfAt7ZtLEHn+GZTiTST0/OHq2AHp5WTwipb+dDwy8z R9nlwEJKH+seoFcbLzA8RtnYL7MtF6nidujkQjVwIWi5jtW+/FCLwfWaROIn5RrNfs FfwXdeTskereUN8jlhjtLL8PLiNI3wErbNyX71Tk=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/f9d421-519148@github.com>
Subject: [quicwg/base-drafts] 36609c: Simplify ChaCha20 interface
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/sbjshzp3o-3S4F2qxS0B121AA_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: Tue, 10 Sep 2019 22:07:44 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 36609c20e66663a11a678b30f5d0330b11bba62c
      https://github.com/quicwg/base-drafts/commit/36609c20e66663a11a678b30f5d0330b11bba62c
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-08-26 (Mon, 26 Aug 2019)

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

  Log Message:
  -----------
  Simplify ChaCha20 interface

The nonce can just be opaque bytes.

The block counter is tricky, as noted in the issue.  The "obvious"
choice is little-endian, as that is consistent with the philosophy of
the designer (as I understand it), but that is not anything more than a
guess.

Absent strong evidence that big-endian is a better choice, I'm going to
err on the side of not making a substantive change here.  But I think
that we need a consensus call to support that viewpoint.

Closes #2171.


  Commit: b0f00edf9f8ba7139a6b7a2c36edd44112de5482
      https://github.com/quicwg/base-drafts/commit/b0f00edf9f8ba7139a6b7a2c36edd44112de5482
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

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

  Log Message:
  -----------
  Simplify more


  Commit: 519148f86e7ac22715efd04e246bbd4faef082e1
      https://github.com/quicwg/base-drafts/commit/519148f86e7ac22715efd04e246bbd4faef082e1
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  Merge pull request #2990 from quicwg/chacha-simple

Simplify ChaCha20 interface


Compare: https://github.com/quicwg/base-drafts/compare/f9d4213513d1...519148f86e7a


From nobody Tue Sep 10 15: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 3E7C5120019 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07: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 LnnHLsCTFTxt for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07: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 386DE120074 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:07:42 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:07:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153261; bh=d9PtEbiqMIuOuWrw2Wi0LqJ/nh4yJEuwXjbLENZvAKw=; h=Date:From:To:Subject:From; b=Ob7lPEHwRkg3QtWOQlU9vXAgsrfJoJmAGqlOMJlMr15+dL6X3clQUdQXcwbpam/+D jxu1PW2e2DTpF58aJRVIvv20hbzoji9MWIQ5ZaFYVgmymJ1lECRKYpsnqWERWkShaU yKtPSghrSyP7UBw05H026dO7q0dNJeDAviILWLOA=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/chacha-simple/b0f00e-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/h9JnwQftJWKKlkBm2T7b6U2rzmQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:07:45 -0000

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


From nobody Tue Sep 10 15:08: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 809EF12022A for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07: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 jDAcpQouq7W9 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07:50 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3E382120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:07:50 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:07:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153269; bh=bPXyYfHnAbamjYMGB+2po6OslU89sIvS1FJvF5TlSrk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=n3BoOxZY6+b7Q2qwLlpuh09YPVcj7U66s/jRp4DNNv8x5b7jl5BMgrrXQEINsoD3I PBSQMFrhzFuHckWs7/ChjZb/BJwLwrSXHShLE759U9B05Yiq1dgqmx0mLrGnJehqmZ xb62GldgEBrlHYBfJYrFaakf9HlfXFOqf6OrfFhA=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5ZGJMFFNK5UZSXXO53QVBSLEVBNHHBZ2ZITU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2990/issue_event/2623845360@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2990@github.com>
References: <quicwg/base-drafts/pull/2990@github.com>
Subject: Re: [quicwg/base-drafts] Simplify ChaCha20 interface (#2990)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d781eb58b5a2_d533f8dd8acd9602696f5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tqdKKqdsWg7LX-UfpixMIrZtkFc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:07:52 -0000

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

Merged #2990 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/2990#event-2623845360
----==_mimepart_5d781eb58b5a2_d533f8dd8acd9602696f5
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="485173405" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2990" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2990/hovercard" href="https://github.com/quicwg/base-drafts/pull/2990">#2990</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/2990?email_source=notifications&amp;email_token=AFTOJK4TT5JIQOVOITBKACDQJALDLA5CNFSM4IPOMEWKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLH4A#event-2623845360">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4B6BGZGPZT33ZHRE3QJALDLANCNFSM4IPOMEWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYT767LBAASPQVQ6IDQJALDLA5CNFSM4IPOMEWKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLH4A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2990?email_source=notifications\u0026email_token=AFTOJK4TT5JIQOVOITBKACDQJALDLA5CNFSM4IPOMEWKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLH4A#event-2623845360",
"url": "https://github.com/quicwg/base-drafts/pull/2990?email_source=notifications\u0026email_token=AFTOJK4TT5JIQOVOITBKACDQJALDLA5CNFSM4IPOMEWKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLH4A#event-2623845360",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d781eb58b5a2_d533f8dd8acd9602696f5--


From nobody Tue Sep 10 15:08: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 2F12A120806 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07: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 M8QwDXXDZOGb for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07:50 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5483A120074 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:07:50 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:07:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153269; bh=YeYHxhKyk4dAHBM4fOoOjEEKfiWo5j0DVfiT7bp3FwI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZNcWUL6v1NqlruW2ZKSsMNAFvY+1fvn52/PdddQVsG5aVVVQeCyhdtqi2rHrE2azH 3a4w4XgNJYZpTWk+FGVPg2H9rq/Dv7nYC1W9kwOioYKgsfXm76eILUKG+yNt5q6vh6 /JZkUHfgfWwWO1dXKeO6w6m2XBObgdFdN1hw80mc=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6DK7RDIXLCUQ364HV3QVBSLEVBNHHBOTHDPI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2171/issue_event/2623845362@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2171@github.com>
References: <quicwg/base-drafts/issues/2171@github.com>
Subject: Re: [quicwg/base-drafts] ChaCha inputs (#2171)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d781eb57ada3_77273fda1f0cd96831093c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5-TwDNB9cYv3YtTtBnfQ_r4wAuk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:07:53 -0000

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

Closed #2171 via #2990.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/2171#event-2623845362
----==_mimepart_5d781eb57ada3_77273fda1f0cd96831093c
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="390914938" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2171" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2171/hovercard" href="https://github.com/quicwg/base-drafts/issues/2171">#2171</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="485173405" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2990" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2990/hovercard" href="https://github.com/quicwg/base-drafts/pull/2990">#2990</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/2171?email_source=notifications&amp;email_token=AFTOJK4UUYVEB3YLYOFNIA3QJALDLA5CNFSM4GKKU3K2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLH4Q#event-2623845362">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYYZWBZKUZQOP4HY7LQJALDLANCNFSM4GKKU3KQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4WXHH5AJIYR5ADR7DQJALDLA5CNFSM4GKKU3K2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLH4Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/2171?email_source=notifications\u0026email_token=AFTOJK4UUYVEB3YLYOFNIA3QJALDLA5CNFSM4GKKU3K2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLH4Q#event-2623845362",
"url": "https://github.com/quicwg/base-drafts/issues/2171?email_source=notifications\u0026email_token=AFTOJK4UUYVEB3YLYOFNIA3QJALDLA5CNFSM4GKKU3K2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLH4Q#event-2623845362",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d781eb57ada3_77273fda1f0cd96831093c--


From nobody Tue Sep 10 15:08:18 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 9691D120019 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2
X-Spam-Level: 
X-Spam-Status: No, score=-2 tagged_above=-999 required=5 tests=[BAYES_00=-1.9,  DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id C8Ho-YuHJczl for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07: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 923C4120826 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:07:52 -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=UmeE+X3nmIDXhvWt74PbZbUVN2g=; b=IuHqg6rFn+KasTpI sqvJmclJq5ajPm+6z0NmNHgXLtuY2I2U2hDzzwXpUlyKNv0Olj+5WTTnSwI1tZ3p hYfRb/AihRL8O3XtkL5HmCzm/s9/GIXv/zUesvlH1NbmH0uPzFUlxy1YOp4UDszz YcP7X7B5MN19/GHoD3P8/BygEFw=
Received: by filter0852p1las1.sendgrid.net with SMTP id filter0852p1las1-9054-5D781EB6-2C 2019-09-10 22:07:50.993592368 +0000 UTC m=+3870.238106064
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) by ismtpd0038p1iad2.sendgrid.net (SG) with ESMTP id wECrOdwKSqSTyaPD5ctFnQ for <quic-issues@ietf.org>; Tue, 10 Sep 2019 22:07:50.892 +0000 (UTC)
Date: Tue, 10 Sep 2019 22:07:51 +0000 (UTC)
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/519148-635110@github.com>
Subject: [quicwg/base-drafts] a0d619: Error codes can't cause errors
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
X-SG-EID: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak11qrk2/LtoEO2C4usK+azifJ/km+4uve5W2g nuapD12l/EQ9AApYMEs2pVQjuD7L2A249NGQpoN0kztAPbJZ0DKXjYL+f0oDDNryfjJAeaGPo5ji0y wTK10NFywr1btuvnt30/s2Yl7l7sk1UU8v0z4ZaW2q7Oeo5tYPkbbVcm+w==
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/RL_9DTXuqG6ugdOhMaAK06QPdwg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:07:55 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: a0d61919a538dc6a5356175d110c8d26c3f93fed
      https://github.com/quicwg/base-drafts/commit/a0d61919a538dc6a5356175d110c8d26c3f93fed
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-08-28 (Wed, 28 Aug 2019)

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

  Log Message:
  -----------
  Error codes can't cause errors


  Commit: bca2f5d6497503495fec0bef3b007ccb49c1dae4
      https://github.com/quicwg/base-drafts/commit/bca2f5d6497503495fec0bef3b007ccb49c1dae4
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-04 (Wed, 04 Sep 2019)

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

  Log Message:
  -----------
  Ian's suggested wording


  Commit: 7480f8f835db8fb0b1fe5707e2fc65c677172ff4
      https://github.com/quicwg/base-drafts/commit/7480f8f835db8fb0b1fe5707e2fc65c677172ff4
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  No --


  Commit: 63511079c66213a73a4266aa4ac728a7bc2d501d
      https://github.com/quicwg/base-drafts/commit/63511079c66213a73a4266aa4ac728a7bc2d501d
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Error codes can't cause errors (#2998)

* Error codes can't cause errors

* Ian's suggested wording

* No --


Compare: https://github.com/quicwg/base-drafts/compare/519148f86e7a...63511079c662


From nobody Tue Sep 10 15:08: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 4D93C120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.026
X-Spam-Level: 
X-Spam-Status: No, score=-2.026 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H2=-0.026, 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 Nk8R3M0geE5m for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07:53 -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 E9F47120836 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:07:52 -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=NtWuh9FiOXLd2jfCkhy7zvMtbW4=; b=deanUUYTlaooknjd gxFBSo1djwSUUmAcJlaL2CbYRdOzw9drGwiGY9ok9VUEjONy0WUJiBLUJNYK0cwg V7cLCdvTvWf8ZdG8SoNBUT/0upmHTO/zAoB1+FHb+GOqjppwOSnAHpaalcI+Pa6R cBDTnNC4hnzxJbPtpnYdNFHWbvk=
Received: by filter0075p1iad2.sendgrid.net with SMTP id filter0075p1iad2-17423-5D781EB7-34 2019-09-10 22:07:51.707425265 +0000 UTC m=+1439.097277071
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) by ismtpd0025p1mdw1.sendgrid.net (SG) with ESMTP id A6Tc5MEeQ-mRK-KXFntGww for <quic-issues@ietf.org>; Tue, 10 Sep 2019 22:07:51.656 +0000 (UTC)
Date: Tue, 10 Sep 2019 22:07:51 +0000 (UTC)
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/http/unknown_error_codes/7480f8-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
X-SG-EID: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak248/nta1LS2b92oR/gfQTxjlhfXHQtkCVmxA fK5JBCzpxkCdWjuJ5dSAltzqlJ5kq/hmO6XtQSqCtLu/k7QR/CEY6SIUuCkpkqABJ4HbJiLwOJDdjn fTKy6zw51DoxyVlLpYuDrBM0jcHlV4y9D7OKpcSOTqOTYmY8QFFYfenGlQ==
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/31H9O-bG1XETkaVToD2UAOKNzmk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:07:55 -0000

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


From nobody Tue Sep 10 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 14399120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:08: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 D9P67uD4zjqK for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:07:59 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B2CD6120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:07:59 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:07:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153278; bh=GSPxwryMrWaTp8+ImOAkum8r9/3n18KtoP+gik9S/ZM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=o0v+5lVGjFLxxWadCJmGHTHznk3SbCqQ8bofrxO3hItlF02+zitofkDrD2Z23hFKF p/S7URiU6zePhkkQeOeQO4CRecf9hD1/kTkNOH6GSa7XkEJRd01Y6pydcurKshS7nH 81rYnSDI1uZYH1Oev3sFGHwh0AcMxAZnPGM611TE=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5BVXHY4LMNERJ4ZA53QVPU5EVBNHHBWTLI4U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2816/issue_event/2623845683@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2816@github.com>
References: <quicwg/base-drafts/issues/2816@github.com>
Subject: Re: [quicwg/base-drafts] Handling RESET_STREAM and STOP_SENDING with invalid error codes (#2816)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d781ebedd142_1aea3fe7612cd96c2589fa"; 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/r9t--Zv2B8mOYqxGmGkM76WKhIE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:08:01 -0000

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

Closed #2816 via #2998.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/2816#event-2623845683
----==_mimepart_5d781ebedd142_1aea3fe7612cd96c2589fa
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="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> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="486580126" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2998" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2998/hovercard" href="https://github.com/quicwg/base-drafts/pull/2998">#2998</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/2816?email_source=notifications&amp;email_token=AFTOJKYMQT623YETI3XQSS3QJALD5A5CNFSM4HZKNEJ2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLKMY#event-2623845683">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3CE5KXM7MNJUNHJ4DQJALD5ANCNFSM4HZKNEJQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2WZCQCDGY5O4H3FPLQJALD5A5CNFSM4HZKNEJ2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLKMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/2816?email_source=notifications\u0026email_token=AFTOJKYMQT623YETI3XQSS3QJALD5A5CNFSM4HZKNEJ2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLKMY#event-2623845683",
"url": "https://github.com/quicwg/base-drafts/issues/2816?email_source=notifications\u0026email_token=AFTOJKYMQT623YETI3XQSS3QJALD5A5CNFSM4HZKNEJ2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLKMY#event-2623845683",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d781ebedd142_1aea3fe7612cd96c2589fa--


From nobody Tue Sep 10 15:08:36 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 D774B120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:08:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.408
X-Spam-Level: 
X-Spam-Status: No, score=-1.408 tagged_above=-999 required=5 tests=[BAYES_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_NONE=-0.0001, RCVD_IN_MSPIKE_H2=-0.026, 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 hBQhyj7Gbn0b for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:08:01 -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 78325120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:08:01 -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=jkTUVIYQa1W2X74PMgG+r5lnbTw=; b=qp6zy4NmqIKTUfX+ Vd4WSo9cZYTujFCbrW+ETce+1Umz74sUaFXN58V2pwYFx0YBbdpK7PjdDhywl4y9 bZXwudSHfNkAaoooOYEGezv7n7+QaxSHxWenKrW3bmiGqCKKDTGuorQDINg7mbFa +noMbtB79VweWwiyzFKteNoHf6s=
Received: by filter0088p1iad2.sendgrid.net with SMTP id filter0088p1iad2-29601-5D781EC0-E 2019-09-10 22:08:00.477614525 +0000 UTC m=+1177.138834992
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) by ismtpd0021p1iad2.sendgrid.net (SG) with ESMTP id SAxnK-H1Q0COErlHnbpJEQ for <quic-issues@ietf.org>; Tue, 10 Sep 2019 22:08:00.493 +0000 (UTC)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 52F2C8C0605 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:08:00 -0700 (PDT)
Date: Tue, 10 Sep 2019 22:08:00 +0000 (UTC)
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3JKYM6INCKXED42F53QVPVBEVBNHHB2AE7TY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2998/issue_event/2623845677@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2998@github.com>
References: <quicwg/base-drafts/pull/2998@github.com>
Subject: Re: [quicwg/base-drafts] Error codes can't cause errors (#2998)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d781ec0436ca_687e3f7e060cd9602193ae"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-SG-EID: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak02yZGygm5OJqOWu6pZy91f8L8TV3qrZmA2A8 GbHW7K7qPDLO4TOT2kS9A3yWfneVkt+XVdEaZlf/qZp3dk48BYByFkjOsoCO6XCs2/g/OXz/OJaeQX ly9GDyUthBTgamHihrhQez8wZA9/HfGb7du9Hzdiwz0OARmj0wN/R1IVmkLjVvB3l5VANddjFTqvP0 k=
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ldR238twMGurkq0Z3RLahzR4JKs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:08:03 -0000

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

Merged #2998 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/2998#event-2623845677
----==_mimepart_5d781ec0436ca_687e3f7e060cd9602193ae
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="486580126" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2998" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2998/hovercard" href="https://github.com/quicwg/base-drafts/pull/2998">#2998</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/2998?email_source=notifications&amp;email_token=AFTOJK72SI3MIOKHOHMLZSTQJALEBA5CNFSM4IRRX4EKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLKLI#event-2623845677">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ6MDWPTQ23Z34DFCDQJALEBANCNFSM4IRRX4EA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2QX3LFRUUAN2A6GKLQJALEBA5CNFSM4IRRX4EKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLKLI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2998?email_source=notifications\u0026email_token=AFTOJK72SI3MIOKHOHMLZSTQJALEBA5CNFSM4IRRX4EKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLKLI#event-2623845677",
"url": "https://github.com/quicwg/base-drafts/pull/2998?email_source=notifications\u0026email_token=AFTOJK72SI3MIOKHOHMLZSTQJALEBA5CNFSM4IRRX4EKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLKLI#event-2623845677",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d781ec0436ca_687e3f7e060cd9602193ae--


From nobody Tue Sep 10 15:08:51 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 403B8120826 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:08:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.001
X-Spam-Level: 
X-Spam-Status: No, score=-2.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_NONE=-0.0001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id z8-ndV6FGO6h for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:08:18 -0700 (PDT)
Received: from o8.sgmail.github.com (o8.sgmail.github.com [167.89.101.199]) (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 77A11120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:08:18 -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=BEuCKa7OTKf9S1O8uMl8T9VDp50=; b=LbYtOnUotvEePZZd 35V7nJZXcPvcRLcUouwbXBiI83J8DXoaX4Y270pm8TsuOrEGBinDHq/TlAb1rdWy K5TZUiPlGYzO5KXs5iEAcDaKKYnsddsXRhBKusLyqTreblZgK03yjZfOWEFyOkAf 3eDTi6wBBqgoe6s3Q5kKUpW4PXk=
Received: by filter0761p1las1.sendgrid.net with SMTP id filter0761p1las1-15330-5D781ED1-5 2019-09-10 22:08:17.22516676 +0000 UTC m=+3566.320488744
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) by ismtpd0010p1iad2.sendgrid.net (SG) with ESMTP id iyr5jzXtQJ-KXwTo1_GksQ for <quic-issues@ietf.org>; Tue, 10 Sep 2019 22:08:17.113 +0000 (UTC)
Date: Tue, 10 Sep 2019 22:08:17 +0000 (UTC)
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/fb2eff-285e81@github.com>
Subject: [quicwg/base-drafts] 285e81: Script updating gh-pages from f9d42135. [ci skip]
Mime-Version: 1.0
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: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak3FuFP0NciTmwhX+TRr++bv2/6JeFuqKLhT59 SGye+Wzi2pYfJWly2dG6KscANRVK5HoN5HHNTXO9wj/axNpquslyYTZg3PyON9TxR8uUKJj9PuvlmT Vnz3lZ6fk7+2jxkN8Iyc/v0ja3eohA0Jok9pjVDWO+56Hj+c39LsAYBhXQ==
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Mf0Fl0Foq97lu-k984CyVKkom9w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:08:24 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 285e8133638bec3309c2134f90abc38fb4977191
      https://github.com/quicwg/base-drafts/commit/285e8133638bec3309c2134f90abc38fb4977191
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-10 (Tue, 10 Sep 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 f9d42135. [ci skip]



From nobody Tue Sep 10 15: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 733831208AC for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:08: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, FROM_EXCESS_BASE64=0.001, 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 wRGPNOiKDPgH for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:08: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 1BB39120862 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:08:36 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:08:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153315; bh=3mpfgDqF16hbab6UP91o5eXnPiFrp2wGhg5xC7uxBd8=; h=Date:From:To:Subject:From; b=Bajlne0jAWbyf0YgHcqt+/RT8x9mgwpT7Uky7RL5xT9M1SYtaBe8HgPLDNGLurFuP +F93aaDXV09aTrBxw/Xr5T9a5hTih5XssBPPOcUlFk+NtZTVEaUHTuZEgLB5RWiwLj LnkKQTnpfZ3IunHHzRfWNCJbE7E5m2a3y44E7d8U=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/635110-d549dd@github.com>
Subject: [quicwg/base-drafts] d549dd: QPACK [editorial] Update text to include both crit...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lGKpX5-3ZYnUHRj65xZaRY51FPY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:08:42 -0000

  Branch: refs/heads/master=0D
  Home:   https://github.com/quicwg/base-drafts=0D
  Commit: d549dd35c419deef8d1ddf1f93eff2154e901007=0D
      https://github.com/quicwg/base-drafts/commit/d549dd35c419deef8d1ddf=
1f93eff2154e901007=0D
  Author: Bence B=C3=A9ky <bencebeky@users.noreply.github.com>=0D
  Date:   2019-09-10 (Tue, 10 Sep 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-qpack.md=0D
=0D
  Log Message:=0D
  -----------=0D
  QPACK [editorial] Update text to include both criteria of "blocking ent=
ry". (#2937)=0D
=0D
* blocking=0D
=0D
* Revert changes to section 2.1.2.1. Avoiding Blocked Insertions=0D
=0D
=0D


From nobody Tue Sep 10 15: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 2D8CF120814 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:08: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 hbTiSMxhhoox for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:08:45 -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 BB868120832 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:08:45 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:08:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153325; bh=JouQvE+yF+/WFm/JTXn5Goiurj2y1UFzU2vgvWZzKw8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QxUxKeisA/q9Ym/8w/jMADY2bPXY7S9D/nETajG2Cp6YYrQ+vwEiXOQBMED/3iIo0 UNP9wJ9VsOVpIH/FKOINMgh6jRjVayNdmXHtTJn/IxljTfAn6LDjOKscuC1X0cc65t elpQLpq6CfUeHwpPXrZxk5UOrmZNMJevkolaSk/A=
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5ROZQO4BDOFZOJJOF3QVPX3EVBNHHBYU23SE@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/issue_event/2623847178@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2937@github.com>
References: <quicwg/base-drafts/pull/2937@github.com>
Subject: Re: [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_5d781eed3288b_71463febcd4cd968279375"; 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/AqxYR3nX495ejbKgO7ONHQGZc28>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:08:53 -0000

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

Merged #2937 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/2937#event-2623847178
----==_mimepart_5d781eed3288b_71463febcd4cd968279375
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="475224977" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2937" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2937/hovercard" href="https://github.com/quicwg/base-drafts/pull/2937">#2937</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/2937?email_source=notifications&amp;email_token=AFTOJK6BC646RSGM7L2IKFTQJALG3A5CNFSM4IIIEQT2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLWCQ#event-2623847178">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7GOZRSENFGDKHJ7L3QJALG3ANCNFSM4IIIEQTQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY5WTFA2LYJ5WPSXRLQJALG3A5CNFSM4IIIEQT2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLWCQ.gif" height="1" width="1" 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=AFTOJK6BC646RSGM7L2IKFTQJALG3A5CNFSM4IIIEQT2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLWCQ#event-2623847178",
"url": "https://github.com/quicwg/base-drafts/pull/2937?email_source=notifications\u0026email_token=AFTOJK6BC646RSGM7L2IKFTQJALG3A5CNFSM4IIIEQT2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSLWCQ#event-2623847178",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d781eed3288b_71463febcd4cd968279375--


From nobody Tue Sep 10 15: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 B9CB81200E0 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:09: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 LnESwYf9pipt for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:09: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 1CDAC120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:09:16 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:09:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153355; bh=v/+V0Lae5cCxEjhsMTuQpouO86XTp6Twm/1E8Wj9R+c=; h=Date:From:To:Subject:From; b=rhSBhr+5XeldbFBECeWsOJbf1fyGwuahb2PWNY/HCJvB14xjoIzkho/pKNZcl774m U4sgHLneL1t0IMaDvyttjGkrb3HlMAAPIAMsi+2UhYVNGOQfgB/no0+Ysxp3q1gP/j I08XtAs1ySUZ3lNdlo10flbnZ4wyMEFnggXsXsPg=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/285e81-88db8d@github.com>
Subject: [quicwg/base-drafts] 88db8d: Script updating gh-pages from 63511079. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wHwWQS3j5tDggtrKYUmZdgjkPbs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:09:18 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 88db8df69e7a03a2461072d99cf451fc259edd3b
      https://github.com/quicwg/base-drafts/commit/88db8df69e7a03a2461072d99cf451fc259edd3b
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

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



From nobody Tue Sep 10 15:09: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 871B91200E0 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:09: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 e33OBbtcjhRx for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:09:54 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 420DA120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:09:54 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:09:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153394; bh=ezzU+omC67TJc+u9HPHfnpZ2873R/DgFfb2i3U3KvDk=; h=Date:From:To:Subject:From; b=ljov71Dinj87hvuTgyV974zBlz/ltJomlDwES1As4yaBf5CTICbxCJ2z0ubsXnT/B ZtqLTJKAwvqvRN7fB+7ZysBkUeVNlrZTznqRCSgIMLIjmMMVtC3DbOCqYzPWXJJ9BQ 1w053qut8w3ABn19pvFVSKcxUnGTlSnPiG2Fl+h4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/88db8d-7d2e7e@github.com>
Subject: [quicwg/base-drafts] 7d2e7e: Script updating gh-pages from d549dd35. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/eKiV5CBacFuZtt0HiE3cYLWDVno>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:09:56 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7d2e7e2f61139be6efe67919741503cd5257fdd0
      https://github.com/quicwg/base-drafts/commit/7d2e7e2f61139be6efe67919741503cd5257fdd0
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

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



From nobody Tue Sep 10 15:10: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 751DD120232 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:10: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 Ho-J96PLFUSY for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:10:43 -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 6225D120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:10:43 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:10:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153442; bh=8E8J9t8KfngLyPIVSsCTE9u8fAb9MbTQ1PGimH8uBjs=; h=Date:From:To:Subject:From; b=1tdpl4L56atAHtRj8TpDugA4Ntwf7kCV4Y/R1DRPDRwTmileGWGf+C78mc+ky1W3j khiurEOM8OmACR5xamySChDuuuWUkRy/CGUw4D9RXj/WX3Y4KM+aQO73LXallzExfk w1Ikz6zUDIOsrYVCYz4lfkQzBNSft4nG/KcMuUDY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/d549dd-745d2b@github.com>
Subject: [quicwg/base-drafts] b354cc: Add CRYPTO_BUFFER_EXCEEDED to the error code table
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Mng-SjozP_H8F2BYzSUsnKcyysI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:10:45 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: b354cc63a437b21dbe61ee4cae1ca57b24de35b3
      https://github.com/quicwg/base-drafts/commit/b354cc63a437b21dbe61ee4cae1ca57b24de35b3
  Author: Masakazu Kitajo <maskit@apache.org>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Add CRYPTO_BUFFER_EXCEEDED to the error code table


  Commit: 745d2b124846c3f4a31cf9b0c4064846ff8375a7
      https://github.com/quicwg/base-drafts/commit/745d2b124846c3f4a31cf9b0c4064846ff8375a7
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  Merge pull request #3012 from maskit/error_code_table

Add CRYPTO_BUFFER_EXCEEDED to the error code table


Compare: https://github.com/quicwg/base-drafts/compare/d549dd35c419...745d2b124846


From nobody Tue Sep 10 15:10: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 9282B120232 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:10: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 KL48wRAEr1BM for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:10: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 00EC0120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:10:51 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:10:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153451; bh=2Jd2t7p/ZHZ0cwkuZFaX+44ZosSJeWy41MUi2pPv6vw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZszVuwL2DoBvgdDOTm36r9/pouBLI1iRS5znllp2NtQzp1kAqVEc7GSz6vw7FLQGc uQ0uBByr88acYS55rFKMgZKUOzUTxZVUcipO3XMruk1z/+epkWBSmUL+B30+PzXMF2 73fTYHGTDf/+AU7xztCHwp23knHmKdE7eJ9j7BuQ=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY4UT3EWFJBN3XZ4WV3QVB5XEVBNHHB2SR7IY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3012/issue_event/2623851126@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3012@github.com>
References: <quicwg/base-drafts/pull/3012@github.com>
Subject: Re: [quicwg/base-drafts] Add CRYPTO_BUFFER_EXCEEDED to the error code table (#3012)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d781f6b2c73d_5ca63f95124cd95c17522e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yjHcbasF3WzzT77jx7U83Ty03h4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:10:54 -0000

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

Merged #3012 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/3012#event-2623851126
----==_mimepart_5d781f6b2c73d_5ca63f95124cd95c17522e
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="491405126" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3012" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3012/hovercard" href="https://github.com/quicwg/base-drafts/pull/3012">#3012</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/3012?email_source=notifications&amp;email_token=AFTOJK2VQGSY7HCXH6GVIBTQJALOXA5CNFSM4IVB4BLKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSMU5Q#event-2623851126">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6MEDVBYVR7YTNIGI3QJALOXANCNFSM4IVB4BLA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5EVRBU2XCYUWKQOQLQJALOXA5CNFSM4IVB4BLKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSMU5Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3012?email_source=notifications\u0026email_token=AFTOJK2VQGSY7HCXH6GVIBTQJALOXA5CNFSM4IVB4BLKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSMU5Q#event-2623851126",
"url": "https://github.com/quicwg/base-drafts/pull/3012?email_source=notifications\u0026email_token=AFTOJK2VQGSY7HCXH6GVIBTQJALOXA5CNFSM4IVB4BLKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSMU5Q#event-2623851126",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d781f6b2c73d_5ca63f95124cd95c17522e--


From nobody Tue Sep 10 15:11: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 9C0A6120232 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:11: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, 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 nEt9LOe6p5dA for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:11: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 7954112025D for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:11:09 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:11:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153468; bh=DK6Bs9/LtBn637nz/Y9S/EpOK/1aJ/FeEGeXjbpgKBY=; h=Date:From:To:Subject:From; b=wZFfaeqwPiAL28VERKwVCNRh3Vyd15Q2IXEQVps5xat5RKE+ZbfFb3x2X46C8d42V vNdcruyJEZrRz8RHIeaa0xkkI3oTi1vCQ0z2aeFjCSElPER+JXEyYzL4baPHSqeWni zWy0w02RhdcDyGiJZOVz7wQDBvjHmAbKcxh8C9ak=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/cleanup-sr/b88ee1-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/4PNv9j05W_ZRdOOapQN84mwExb8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:11:10 -0000

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


From nobody Tue Sep 10 15:11: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 7307E120232 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:11: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 A8O8ifighzas for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:11: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 2761C120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:11:09 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:11:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153468; bh=LSmPTezBxzq8y8KCQx5WgzRkYLTfrRr/4H+bMg8m2rk=; h=Date:From:To:Subject:From; b=vRwaIc+u6NB+AvDEAqIpHcejRP15a6QEoANEAukBWykTWPgTZwIuRLuE4+77b9BG5 RZ1ZwC1dmIW8nFgM9axqcA3fIJzm2O9b/2kkjuZyBnvYHeSttn17KT+Z1gBcju0XGU nBehC8at1D6lP0bNcsIKJAts6cBK2NFWuIspQaAA=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/745d2b-979205@github.com>
Subject: [quicwg/base-drafts] d7aa68: Attempt to make the stateless reset text better
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/skNMGmUFMxwEzqUBqZOJGbXVTEY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:11:11 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: d7aa68d49dab75df064c2ea5c2b0b25fc78d1ffd
      https://github.com/quicwg/base-drafts/commit/d7aa68d49dab75df064c2ea5c2b0b25fc78d1ffd
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

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

  Log Message:
  -----------
  Attempt to make the stateless reset text better

PR #2927 had a few mistakes in it, and some confusing language.  This
attempts to split out the rules for generating stateless resets (minimum
size is 5 + 16 = 21), and for generating packets that might trigger a
stateless reset (min_cid + 22).


  Commit: 6048b49dc4316683a4e35584d58aabb16719a6ce
      https://github.com/quicwg/base-drafts/commit/6048b49dc4316683a4e35584d58aabb16719a6ce
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

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

  Log Message:
  -----------
  More editorial changes


  Commit: 967bbe7b5d2c953b04cc4bc9333c817cce75b5cf
      https://github.com/quicwg/base-drafts/commit/967bbe7b5d2c953b04cc4bc9333c817cce75b5cf
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-09-09 (Mon, 09 Sep 2019)

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

  Log Message:
  -----------
  Taking Ian's rewording


  Commit: b88ee12bc752eee3a8c2a0564fdbf2c04ddbdddd
      https://github.com/quicwg/base-drafts/commit/b88ee12bc752eee3a8c2a0564fdbf2c04ddbdddd
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  (38+2)/8 != 6


  Commit: 979205ef74430ce353bed5788ee07445e1b0a958
      https://github.com/quicwg/base-drafts/commit/979205ef74430ce353bed5788ee07445e1b0a958
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  Merge pull request #3007 from quicwg/cleanup-sr

Attempt to make the stateless reset text better


Compare: https://github.com/quicwg/base-drafts/compare/745d2b124846...979205ef7443


From nobody Tue Sep 10 15:11: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 13B6E12022A for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:11: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 xQINMAuIKsb3 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:11: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 839D5120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:11:17 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:11:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153477; bh=dt05zkbRZqofJ888U7Cp9dscNBxU2Js3iUq+MwH7W/k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=A5THpshI19o6/dtPGkNklZtPNBLpEfO7niJmW2Liu/lqlKfRPT6XmENk3nsA4hLHn MuCWmUBvet/bWFs+zZujAFn9JvrPFlHhhE0xYK5hP69lpGvPSy0ZTaB2nW49qTjYgA UaeBazUp8oDcCMgn80XcTto/tzZ07hXm1GVxom5Q=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZRBQM3AA2TVIHAY2F3QVB7JEVBNHHB2NT5NA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3007/issue_event/2623851869@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3007@github.com>
References: <quicwg/base-drafts/pull/3007@github.com>
Subject: Re: [quicwg/base-drafts] Attempt to make the stateless reset text better (#3007)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d781f84d3be5_1ada3fe7612cd96c6910d0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/JhKU8D-VAG5B5iFN87gO2iFpyVM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:11:20 -0000

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

Merged #3007 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/3007#event-2623851869
----==_mimepart_5d781f84d3be5_1ada3fe7612cd96c6910d0
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="490110312" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3007" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3007/hovercard" href="https://github.com/quicwg/base-drafts/pull/3007">#3007</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/3007?email_source=notifications&amp;email_token=AFTOJKZZPQ37FGPI5R7VTULQJALQJA5CNFSM4IUESDE2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSM2XI#event-2623851869">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6VN72M3MFXURMIIRDQJALQJANCNFSM4IUESDEQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZZX7DUER7HQPDBH4DQJALQJA5CNFSM4IUESDE2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSM2XI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3007?email_source=notifications\u0026email_token=AFTOJKZZPQ37FGPI5R7VTULQJALQJA5CNFSM4IUESDE2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSM2XI#event-2623851869",
"url": "https://github.com/quicwg/base-drafts/pull/3007?email_source=notifications\u0026email_token=AFTOJKZZPQ37FGPI5R7VTULQJALQJA5CNFSM4IUESDE2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSM2XI#event-2623851869",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d781f84d3be5_1ada3fe7612cd96c6910d0--


From nobody Tue Sep 10 15:12: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 11A4E120019 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:12: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 wMYjLSYpKrCL for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:12: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 9B12A12025D for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:12:04 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:12:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153523; bh=ob88ylT/tlP4nbKWWoDsMeV8v1tZi2Dd4i9c16vZMqM=; h=Date:From:To:Subject:From; b=sq/+tTastSJ5XCYsPjqgn58bgj4lIilEab7AwfMRnwaM2B5tpUFCeZ7Hr0YGL/G17 OZJV8zbugMR1jcwOo4xMeIPsSSEIWMEllJpBRfy+QLRDiUEQh2aFnX8z7XGmMjzBjv wTC52a0jzqf1pqvI9irXOvl9jZN9oSqDtZI9XMvE=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/7d2e7e-655b94@github.com>
Subject: [quicwg/base-drafts] 655b94: Script updating gh-pages from 745d2b12. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/TS7t8_eDtTaPvVdoP1aylwOpdeA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:12:06 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 655b94eef1f5556da5f5c86f89a5af72f03d8831
      https://github.com/quicwg/base-drafts/commit/655b94eef1f5556da5f5c86f89a5af72f03d8831
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-10 (Tue, 10 Sep 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 745d2b12. [ci skip]



From nobody Tue Sep 10 15:12: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 7D5BE120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:12: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 VTD_HPDK2q-W for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:12:28 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7194B120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:12:28 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:12:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153547; bh=FWlr8G0GxVWfR+UzmYPoQBCzdsVCvxjTzneGiGhP3Uo=; h=Date:From:To:Subject:From; b=BHtZGf4wcV+Dv/6xo9Uyd8KTz3pBHbxTcSf3M+raiSYOFN9q+aZP0ObFgwONxUW4F D9KUffoCF9FZ2ZYJnViDdzhvu/pqhYh278V4GGD54Hz+CFne4h13unXK8uc4nzIkhY NzyBmOaUiPpq6jYg1uBy4aZRGzQW/ksL9qn3NoDM=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/655b94-010ab8@github.com>
Subject: [quicwg/base-drafts] 010ab8: Script updating gh-pages from 979205ef. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6nV0qXldI_1-muME_IAoMjFE34c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:12:29 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 010ab84e96f839b0b1b20d75815b7dee5fc81844
      https://github.com/quicwg/base-drafts/commit/010ab84e96f839b0b1b20d75815b7dee5fc81844
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-10 (Tue, 10 Sep 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 979205ef. [ci skip]



From nobody Tue Sep 10 15:17: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 F1BFA120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:17: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 ejihoKTsoRPs for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:17:47 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5BD22120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:17:47 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:17:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153866; bh=omcKzY7VFFI/M9AUOoRugV64n/kHtkLVUUhkONn8w1o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cTcJHkVS6rxWDD5YG/nnEzr5iCE9fRvHCb9xqaaN83YxfMjSIQOJrkw/rcwVtgGfP gTOXXbsjZXOlg2EA2uSYxgsJbcE5xnqIlKqCmxWpvQIPcsvCr/T9vLfUXrQZlITEel Wa9S1WmBmvuU8lv63NROM1qNLIg2eW4cQmogo3cE=
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/3003/push/4019323449@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3003@github.com>
References: <quicwg/base-drafts/pull/3003@github.com>
Subject: =?UTF-8?Q?Re:_[quicwg/base-drafts]_rename_HTTP=5FUNEXPECTED=5FFRAM?= =?UTF-8?Q?E_to_HTTP=5FFRAME=5FUNEXPECTED_and_fold_HTTP=5FW=E2=80=A6?= =?UTF-8?Q?_=28#3003=29?=
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d78210a7a52b_34233fa41b4cd96c24703f"; 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/2Bne3hRZWLI4P2QaFSzu-2B2m8M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:17:49 -0000

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

@MikeBishop pushed 1 commit.

72838cc0ee5275f2acd3f37109cafca6ea08c80a  Rewrap


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3003/files/cea422edb3bd8e51b2f72b2ddf7aba9bf1c15984..72838cc0ee5275f2acd3f37109cafca6ea08c80a

----==_mimepart_5d78210a7a52b_34233fa41b4cd96c24703f
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/72838cc0ee5275f2acd3f37109cafca6ea08c80a">72838cc</a>  Rewrap</li>
</ul>


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

----==_mimepart_5d78210a7a52b_34233fa41b4cd96c24703f--


From nobody Tue Sep 10 15:19: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 9BCBD1200E0 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:19: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 NMSOZIVFLjGk for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:19: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 1C998120074 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:19:45 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:19:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153984; bh=3WTUfvG+cqSZa4ihCzJ7NuD4iP/la6WYFPO7kQfHxRE=; h=Date:From:To:Subject:From; b=fLARNI3+GCq8JaD76Cy/qbTIFB2Jw+MA5W6R5y3DpoH72ICyi9t+EcTXX5FGbq+0Y V+RxN4q3XyuxKlrmL8TZ9OaimjLAcZdn1BGwb4tbrTi1zKNmyHzVRQtENaqiT5eVo1 SLhc0gLxRAvy2e1Np1XI/hXSa4iK6pMOSo9mghTg=
From: Lucas Pardue <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/979205-6beec2@github.com>
Subject: [quicwg/base-drafts] 6beec2: rename HTTP_UNEXPECTED_FRAME to HTTP_FRAME_UNEXPEC...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/J6DdaNFvnAriWkV1me85Wtk54qY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:19:46 -0000

  Branch: refs/heads/master=0D
  Home:   https://github.com/quicwg/base-drafts=0D
  Commit: 6beec2edda212224774bf8cdc60d9f192516cfd9=0D
      https://github.com/quicwg/base-drafts/commit/6beec2edda212224774bf8=
cdc60d9f192516cfd9=0D
  Author: Lucas Pardue <lucaspardue.24.7@gmail.com>=0D
  Date:   2019-09-10 (Tue, 10 Sep 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  rename HTTP_UNEXPECTED_FRAME to HTTP_FRAME_UNEXPECTED and fold HTTP_W=E2=
=80=A6 (#3003)=0D
=0D
* rename HTTP_UNEXPECTED_FRAME to HTTP_FRAME_UNEXPECTED and fold HTTP_WRO=
NG_STREAM into it=0D
=0D
* Update draft-ietf-quic-http.md=0D
=0D
Co-Authored-By: Mike Bishop <mbishop@evequefou.be>=0D
=0D
* Rewrap=0D
=0D
=0D


From nobody Tue Sep 10 15:19: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 1C8C712022A for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:19: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 mFh3SQN2Mptw for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:19:53 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B7909120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:19:53 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:19:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153993; bh=yylhUkwBUeU/SgbFotfeDDKjHbQnqODjR4dg+CViOaM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CIq1FLaZddgLrsB18bHsJg71Kt26HewulT0iFEvp8urpASlBxvAI917YZ5dLZRWv8 6v6P0DAwV/oxLMnSkGbRQwaRMNaBOUs7Z6LJyTJtJtCizk2qP8DNrT8ynnu4fDH0Je QbVTNGGwxBFuaxnFFYnXn1VAN3RPO9E8Jz+8vV0o=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3OHVOSMW6UQKCM6R53QVRBREVBNHHBWS4DW4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2809/issue_event/2623867856@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2809@github.com>
References: <quicwg/base-drafts/issues/2809@github.com>
Subject: Re: [quicwg/base-drafts] Rationalise HTTP_WRONG_STREAM and HTTP_UNEXPECTED_FRAME (#2809)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d782188eb498_35ab3fe2858cd960291b7"; 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/bjbtxGpkCIPZFOizhlGXlg1AbII>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:19:55 -0000

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

Closed #2809 via #3003.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/2809#event-2623867856
----==_mimepart_5d782188eb498_35ab3fe2858cd960291b7
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="457933751" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2809" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2809/hovercard" href="https://github.com/quicwg/base-drafts/issues/2809">#2809</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="488736236" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3003" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3003/hovercard" href="https://github.com/quicwg/base-drafts/pull/3003">#3003</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/2809?email_source=notifications&amp;email_token=AFTOJKYLJKIQPCNMN4IKBNDQJAMQRA5CNFSM4HZIFQ7KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSQXUA#event-2623867856">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5MTQTUKJDNGNMVYX3QJAMQRANCNFSM4HZIFQ7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6BOFDWCFZCEUNVEXDQJAMQRA5CNFSM4HZIFQ7KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSQXUA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/2809?email_source=notifications\u0026email_token=AFTOJKYLJKIQPCNMN4IKBNDQJAMQRA5CNFSM4HZIFQ7KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSQXUA#event-2623867856",
"url": "https://github.com/quicwg/base-drafts/issues/2809?email_source=notifications\u0026email_token=AFTOJKYLJKIQPCNMN4IKBNDQJAMQRA5CNFSM4HZIFQ7KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSQXUA#event-2623867856",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d782188eb498_35ab3fe2858cd960291b7--


From nobody Tue Sep 10 15: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 06CE9120019 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:19: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 9dKo2wI1ip-5 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:19: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 67CCE1200E0 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:19:54 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:19:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153993; bh=W0PG5287kk7q+3jTpOEOx4UvPLrUoQB4x4B1yruN0GI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=y+N9g0dcFcTv8JrhKEZ1nV2fCOQn810aUYPiGFLc/ICu2bDDLsj4L6/rFjRKnJ+NA mqaxkYciW+BJzcJUgTpWtyDOz5kOhVnMFhCnzgdYvy39eucVdnbAZN6D3J4h4ulu5n w4WmJnF6OFTiB9mVEQXv833dKRI4Qx7jXHLaEsxY=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ42HVOD2PBQ6CXKTF3QVRBTEVBNHHB2IMF5Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3003/issue_event/2623867846@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3003@github.com>
References: <quicwg/base-drafts/pull/3003@github.com>
Subject: =?UTF-8?Q?Re:_[quicwg/base-drafts]_rename_HTTP=5FUNEXPECTED=5FFRAM?= =?UTF-8?Q?E_to_HTTP=5FFRAME=5FUNEXPECTED_and_fold_HTTP=5FW=E2=80=A6?= =?UTF-8?Q?_=28#3003=29?=
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d78218985798_77493fe1352cd96c1891b"; 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/m6FDEfnUxq8mNpom2SmFxdRzuS4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:19:56 -0000

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

Merged #3003 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/3003#event-2623867846
----==_mimepart_5d78218985798_77493fe1352cd96c1891b
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="488736236" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3003" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3003/hovercard" href="https://github.com/quicwg/base-drafts/pull/3003">#3003</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/3003?email_source=notifications&amp;email_token=AFTOJKYUPKGLD22W4RU3OHDQJAMQTA5CNFSM4ITJB4MKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSQXRQ#event-2623867846">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK77JCZ5BNAXILVNQ5TQJAMQTANCNFSM4ITJB4MA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3DDUAMRPZC2CYNQLLQJAMQTA5CNFSM4ITJB4MKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSQXRQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3003?email_source=notifications\u0026email_token=AFTOJKYUPKGLD22W4RU3OHDQJAMQTA5CNFSM4ITJB4MKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSQXRQ#event-2623867846",
"url": "https://github.com/quicwg/base-drafts/pull/3003?email_source=notifications\u0026email_token=AFTOJKYUPKGLD22W4RU3OHDQJAMQTA5CNFSM4ITJB4MKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSQXRQ#event-2623867846",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d78218985798_77493fe1352cd96c1891b--


From nobody Tue Sep 10 15:20: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 B7818120019 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:19: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 IeqyM-tDrc4Q for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:19:54 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E9621120074 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:19:53 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:19:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568153992; bh=ouv5/KZrjCWL4vff6m1ItDFdBKhenCV/W80p+Uphp0g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=egpebYAAiTo70eGZWwAbHV944fCAl8wyfkGVE148qiEJmnw5PsF5BC11ULACxhG2c ln0KXsVKPGnDJu4pb23dhky+8nwVBUVi+jtnaR4F2Tt9zAcO/8Qe9qY5CuTDWdaz4U JRFcPfonI1KWzITdJ0darDHCbW7pRkG2LFdKqhRA=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5W44W2T5NLIWRZ4OV3QVRBREVBNHHBZ7DTNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2996/issue_event/2623867853@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2996@github.com>
References: <quicwg/base-drafts/pull/2996@github.com>
Subject: Re: [quicwg/base-drafts] Collapse frame errors into HTTP_FRAME_ERROR (#2996)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d782188e1db3_474c3fc34bacd96c797a5"; 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/hTOcKfz-ao7IADQcDtn00p90g0o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:19:57 -0000

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

Closed #2996 via #3003.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2996#event-2623867853
----==_mimepart_5d782188e1db3_474c3fc34bacd96c797a5
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="486306669" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2996" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2996/hovercard" href="https://github.com/quicwg/base-drafts/pull/2996">#2996</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="488736236" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3003" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3003/hovercard" href="https://github.com/quicwg/base-drafts/pull/3003">#3003</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/2996?email_source=notifications&amp;email_token=AFTOJK2ITHWFSLUQN2DYT33QJAMQRA5CNFSM4IRCYZ42YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSQXTI#event-2623867853">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZV6EBEFGWWOS4KIUTQJAMQRANCNFSM4IRCYZ4Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK66VJC7WKV5ISHZCY3QJAMQRA5CNFSM4IRCYZ42YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSQXTI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2996?email_source=notifications\u0026email_token=AFTOJK2ITHWFSLUQN2DYT33QJAMQRA5CNFSM4IRCYZ42YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSQXTI#event-2623867853",
"url": "https://github.com/quicwg/base-drafts/pull/2996?email_source=notifications\u0026email_token=AFTOJK2ITHWFSLUQN2DYT33QJAMQRA5CNFSM4IRCYZ42YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSQXTI#event-2623867853",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d782188e1db3_474c3fc34bacd96c797a5--


From nobody Tue Sep 10 15:20: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 77DAC120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:20: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, FROM_EXCESS_BASE64=0.001, 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 Lif91obN5SHY for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:20: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 46101120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:20:13 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:20:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568154012; bh=vKXFyFTJXrjjQL9aznfEOxEPeMFweAzkw7/dB3b3yn4=; h=Date:From:To:Subject:From; b=OemtdjMlAkPXf5eFCL1JDfnaEmK7RaBf/exK12ZPxbwnSltLAd4PdjDvlOu5gYu4j wBDfUcYCGxCEOHKowrYJGUuMT/XehEjt+aPY/qT9HLTKJc2+nKqd58qdoYwwNGik2X Dmg0aIxRVDGjOT7wneURsqzDArrWwUaz6GN8F7I8=
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/6beec2-dc99f4@github.com>
Subject: [quicwg/base-drafts] dc99f4: QPACK [editorial] Update text on instructions and ...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/rcPdmhK9KLHYb481aQE-z5a7FxA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:20:14 -0000

  Branch: refs/heads/master=0D
  Home:   https://github.com/quicwg/base-drafts=0D
  Commit: dc99f4dd1bc20e78ffcd6f75ffc9699da01145c9=0D
      https://github.com/quicwg/base-drafts/commit/dc99f4dd1bc20e78ffcd6f=
75ffc9699da01145c9=0D
  Author: Bence B=C3=A9ky <bencebeky@users.noreply.github.com>=0D
  Date:   2019-09-10 (Tue, 10 Sep 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-qpack.md=0D
=0D
  Log Message:=0D
  -----------=0D
  QPACK [editorial] Update text on instructions and representations. (#29=
41)=0D
=0D
* clarify wire format=0D
=0D
* nits=0D
=0D
* Incorporate first round of feedback by MikeBishop and afrind.=0D
=0D
=0D


From nobody Tue Sep 10 15:20: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 3AFD4120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:20: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 b7Z1wcWVO9BA for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:20: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 7154A120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:20:21 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:20:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568154020; bh=gJ/H/LoiNylz+8d7u2c4Pc4aAjq2QKEmUcDLIyTYvCg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=C3MXIHkxc4/K83SXM+IBkdFiZXsXQOuIYJbzeCEtSRqVeXz6A1uALVX3zGu9cMy+J OMLf4nkluCmYVMfj0MWgEPD+SUCuiOJ1nzawK7J9SJiK5OdVng+jVJaWg9d60mxQHl g8WkE0C64zqgT/6pZXqXwZt2H0pgAq8pnic44WrE=
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4UNMOH3XLDZBPKW6V3QVRDJEVBNHHBYU5PJU@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/issue_event/2623868683@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_5d7821a4b6d3b_59553fc1134cd95c79264"; 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/g2Cgk_qtt1y1IlAF_dTYdJg0cPo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:20:24 -0000

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

Merged #2941 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/2941#event-2623868683
----==_mimepart_5d7821a4b6d3b_59553fc1134cd95c79264
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="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> 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/2941?email_source=notifications&amp;email_token=AFTOJK52V47TFSNEEOMMC2DQJAMSJA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSQ6CY#event-2623868683">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2QRM2CHFVF3V5XSXDQJAMSJANCNFSM4IIIQ7PA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6BCYUM4YWZTYTOOSLQJAMSJA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSQ6CY.gif" height="1" width="1" 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=AFTOJK52V47TFSNEEOMMC2DQJAMSJA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSQ6CY#event-2623868683",
"url": "https://github.com/quicwg/base-drafts/pull/2941?email_source=notifications\u0026email_token=AFTOJK52V47TFSNEEOMMC2DQJAMSJA5CNFSM4IIIQ7PKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSQ6CY#event-2623868683",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7821a4b6d3b_59553fc1134cd95c79264--


From nobody Tue Sep 10 15: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 3741D120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:21: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 0qazNFc_vnem for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:21: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 DC7AC120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:21:12 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:21:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568154072; bh=cN1hRxuKAxC7igyWZb/7hfFWZUU3xX+6bm/1g7K/M2c=; h=Date:From:To:Subject:From; b=UD5lVSvTskNHfCTzbElLji30DZhKPJTPv20qIDwONk1c7Q/9gQmyVVPG4+NK1n3y1 GsUE5jqzmpXjWfiMolZwaieaQA3e/rt343ybV2wNurVPpZyXVYJqbyjq3/hsHsWmOh WNRMY9oR4b9Y1OeQ7UB64AkAgYUS8Wx5UF/PnSGA=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/010ab8-14909f@github.com>
Subject: [quicwg/base-drafts] 14909f: Script updating gh-pages from 6beec2ed. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/K6H6zGupnjborTxTp71YqXpSRY0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:21:14 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 14909f1a9203a39d7b408764f23d6f0fb26ec905
      https://github.com/quicwg/base-drafts/commit/14909f1a9203a39d7b408764f23d6f0fb26ec905
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

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



From nobody Tue Sep 10 15:21: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 5A21612003F for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:21: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 69R4pd_PyaAx for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:21: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 E1BEC120074 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:21:16 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:21:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568154076; bh=zbNSDkhk09VxP8wb7HwNBv9zz7+6PvyxsUZdOojT1dU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vc52ok8BNEZcE6vUCJAD0ev08vb73pNa4IQ5sUdyIkJpV/auTaFyHYI1khHtuquR3 Y9vo7hF7GRo2bpWGVnNsBm1Mg4zCzuGTpIgbDS9DT36XIEg6sr7YLmnVQNRdjwO79S z4S+5JnnCWa2vpo4MAaPTKVHkJ9+Ugx6Z29eSxLI=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZLJ7II2SU5X6FR2353QVRGZEVBNHHB2IMF5Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3003/c530143065@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3003@github.com>
References: <quicwg/base-drafts/pull/3003@github.com>
Subject: =?UTF-8?Q?Re:_[quicwg/base-drafts]_rename_HTTP=5FUNEXPECTED=5FFRAM?= =?UTF-8?Q?E_to_HTTP=5FFRAME=5FUNEXPECTED_and_fold_HTTP=5FW=E2=80=A6?= =?UTF-8?Q?_=28#3003=29?=
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7821dcb36b_36a13f842d8cd96c566a0"; 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/O3h106pKrUTX17waVgk3U9l_X-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: Tue, 10 Sep 2019 22:21:18 -0000

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

Note:  I got some questions about the renumbering of the error codes; I went ahead and took it because we've had a massive renumbering since the last published draft anyway.  If we'd published the draft with the old numbering, I would have just left the hole.

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

<p>Note:  I got some questions about the renumbering of the error codes; I went ahead and took it because we've had a massive renumbering since the last published draft anyway.  If we'd published the draft with the old numbering, I would have just left the hole.</p>

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


From nobody Tue Sep 10 15:21: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 A864B120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:21:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 2ryjhzVXELyt for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:21: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 57EC4120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:21:31 -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 B9B30520A00 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:21:30 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:21:30 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/14909f-b53b9f@github.com>
Subject: [quicwg/base-drafts] b53b9f: Script updating gh-pages from dc99f4dd. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/IlPVl3U1-pwXYULMzRvS_Vec36w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:21:33 -0000

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

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

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



From nobody Tue Sep 10 15:22: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 397BD120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:22: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 rEEZHriFVlkR for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:22: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 00E41120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:22:12 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:22:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568154132; bh=ctwu8+Vlp3TMeZCv0wDjuzir726fmau2IjyrcodrRqA=; h=Date:From:To:Subject:From; b=dN+YCv+LstzocvK2h46w2D/06yUuMfJyfBX87DPoDsT/KP5pj5DPIbsb2CbX5ByNY AxGRrsWXxx4ftANzMVxSHf0cCcFGserb8eFTsiW7SQP3TzcLk1YnYhUlnAui/VdBbf h00uhsWc2CL4YfE2U5/EoZCpRWsr1X8AQz8xTB3Q=
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/dc99f4-d27f8e@github.com>
Subject: [quicwg/base-drafts] d27f8e: Security Considerations text for a memory limit (#...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dUL1_G758ROq9BIkl0VDeF0FpMM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:22:14 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: d27f8e8717fb3dd52edb6bb00540ff3a07927028
      https://github.com/quicwg/base-drafts/commit/d27f8e8717fb3dd52edb6bb00540ff3a07927028
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Security Considerations text for a memory limit (#3004)

* Security Considerations text for a memory limit

* Less normative



From nobody Tue Sep 10 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 7A422120273 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:22: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 0FBCDYkdjxgA for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:22: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 3747C12003F for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:22:13 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:22:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568154132; bh=Z1a5Qt5asqkd/4F1behV+HeU//J2glp9Gx61bQZmOQM=; h=Date:From:To:Subject:From; b=nBwP5TRS1uRzDcSi1a6nlxAmwupRQUQlpUawpsbDaSA9CMo0u8C1WZln0ykJGs0NY P4Kir4fTd1t2CAaV9pSgdn85ja8CJZknOzQBR/mjGqJS1TK5h2Jb0RdfgwbY/nweqI digdrvy3Mc1IojXvQ3Q2EcYov0S1b7XqKio8heso=
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack/decoder_bounds/76b6f2-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/6xPi8dJTTMZB8WTnCwh-_ATHbtU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:22:16 -0000

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


From nobody Tue Sep 10 15:22: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 32B2C120019 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:22:23 -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 xqP_UZEHDX0D for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:22: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 82075120808 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:22:21 -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 E77A76604D2 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:22:20 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:22:20 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK56GESMI6ERI7SIFBN3QVRKZEVBNHHB2ISX3U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3004/issue_event/2623872318@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3004@github.com>
References: <quicwg/base-drafts/pull/3004@github.com>
Subject: Re: [quicwg/base-drafts] Security Considerations text for a memory limit (#3004)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d78221cd904f_1adb3f97a00cd95c1145a0"; 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/Ci2vCJklEowqqTwfWg3aMjbGqD0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:22:23 -0000

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

Merged #3004 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/3004#event-2623872318
----==_mimepart_5d78221cd904f_1adb3f97a00cd95c1145a0
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="488789981" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3004" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3004/hovercard" href="https://github.com/quicwg/base-drafts/pull/3004">#3004</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/3004?email_source=notifications&amp;email_token=AFTOJK4QBXTJGS7BILG35ZLQJAMZZA5CNFSM4ITKF4W2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSR2PQ#event-2623872318">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6AP2NJ32ZIBHZ3QILQJAMZZANCNFSM4ITKF4WQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK53SNJIPBNMAOP5RZTQJAMZZA5CNFSM4ITKF4W2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSR2PQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3004?email_source=notifications\u0026email_token=AFTOJK4QBXTJGS7BILG35ZLQJAMZZA5CNFSM4ITKF4W2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSR2PQ#event-2623872318",
"url": "https://github.com/quicwg/base-drafts/pull/3004?email_source=notifications\u0026email_token=AFTOJK4QBXTJGS7BILG35ZLQJAMZZA5CNFSM4ITKF4W2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSR2PQ#event-2623872318",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d78221cd904f_1adb3f97a00cd95c1145a0--


From nobody Tue Sep 10 15: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 62FD2120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:22: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 I-jIZUwO5Yv8 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:22: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 4288512003F for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:22:33 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:22:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568154152; bh=8rTgQpS/ZkRGTsNUJ2gOvmKSMMc/9mFhVREIcwtsckQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=W7UPHkXdj7InZu3x9NxRRslmD2FVhmw3QnOWJ3DCbD9CYL/WKwGtRUkS2UGPwZ2Kr UUtr3e2WlpTbY3ApHIwbLtyi3sLI2X+cBgg8uJr046MQcz70HERwJC7Bpz8+XJmLtW fapeK4TLPrnJRmewUgvoJxgW+550F7h6C/K4pVUw=
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ2AYYY3F62HHFTO5F3QVRLREVBNHHB2D4G5I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2999/issue_event/2623872322@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2999@github.com>
References: <quicwg/base-drafts/issues/2999@github.com>
Subject: Re: [quicwg/base-drafts] QPACK decoder stream buffer grows without bounds (#2999)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d78222887643_7a103f7f6accd96c1078e4"; 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/NbcZppsmO1LcpZdtiGZjvwrryyA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:22:34 -0000

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

Closed #2999 via #3004.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/2999#event-2623872322
----==_mimepart_5d78222887643_7a103f7f6accd96c1078e4
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="487556842" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2999" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2999/hovercard" href="https://github.com/quicwg/base-drafts/issues/2999">#2999</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="488789981" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3004" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3004/hovercard" href="https://github.com/quicwg/base-drafts/pull/3004">#3004</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/2999?email_source=notifications&amp;email_token=AFTOJK5WZJLBVHPS5ENAEMDQJAM2RA5CNFSM4ISOZTSKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSR2QQ#event-2623872322">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2LZW45Y6HGXCONDETQJAM2RANCNFSM4ISOZTSA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5IIEUKJ5W3NJUSVF3QJAM2RA5CNFSM4ISOZTSKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSR2QQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/2999?email_source=notifications\u0026email_token=AFTOJK5WZJLBVHPS5ENAEMDQJAM2RA5CNFSM4ISOZTSKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSR2QQ#event-2623872322",
"url": "https://github.com/quicwg/base-drafts/issues/2999?email_source=notifications\u0026email_token=AFTOJK5WZJLBVHPS5ENAEMDQJAM2RA5CNFSM4ISOZTSKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRSR2QQ#event-2623872322",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d78222887643_7a103f7f6accd96c1078e4--


From nobody Tue Sep 10 15: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 B6F2B12003F for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:23: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 6_vsGlyIaEvd for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:23:55 -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 4523B120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:23:55 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:23:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568154234; bh=xxisfCCHNnoOwPmKhfBYNAMaKZVDvBfPqTVQwXsc7Lg=; h=Date:From:To:Subject:From; b=PU8srw4GxlStTUNixchjUiyO2HaeIcf3uB0PtBcmwJHhOYMxj647VnMlC0bNNNVID nkL8Z9gVgumfD3PC9iXqp2Lige5o5gYo4VHo3mM5uTSn0HjDUG5VKCgR0w9o3dngtv +rtMoPJtGTxPI/Fhgxa1eGHIM7X7tmWteq2JYdjk=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b53b9f-6d76ef@github.com>
Subject: [quicwg/base-drafts] 6d76ef: Script updating gh-pages from d27f8e87. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ktxsnBJE0EQqGZ2fml0tdybnzZo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:23:57 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6d76ef8d7bd93d351538149f47b58f89cce064b7
      https://github.com/quicwg/base-drafts/commit/6d76ef8d7bd93d351538149f47b58f89cce064b7
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

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



From nobody Tue Sep 10 15:26: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 2265D12003F for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:26: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 Qsohdo_fp2wq for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:26: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 7B222120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:26:08 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:26:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568154367; bh=7PA7U/2LB549aq10fZjp57ltg9Ot6+HXEtAjX1L4tKA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Fr/9XQgabxq6dLqMG8GI8YQtbGaUmNAKRWrNWlhTfS7SIKnPWB89fq3F9V+h8aFXU g4TFRN9QgqttkiFduXEb/Jh/f8cJtCNlRviqUL/RzWgXMSyxTJHfonOX8QcnAkPuEA 1N/KavvNd9vyrvy+0pq+qiabXSlemOUAxZbvi32g=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZJ3FYAHPSRZXIEVRN3QVRY7EVBNHHBYY33OM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2952/c530144296@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2952@github.com>
References: <quicwg/base-drafts/pull/2952@github.com>
Subject: Re: [quicwg/base-drafts] Skip a packet number when sending one PTO packet (#2952)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7822ff7648f_37fd3fa7b9ccd968630b5"; 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/q1CMlYhOLHNji9FJSS1vgdPMxvs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:26:10 -0000

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

This is a clever idea, but I don't think that we want to write it down in the spec. It's allowed by the spec, so people can surely do it, but we are talking about immediate ACK signaling in other ways too, and I don't think we want to encourage this 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/2952#issuecomment-530144296
----==_mimepart_5d7822ff7648f_37fd3fa7b9ccd968630b5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This is a clever idea, but I don't think that we want to write it down in the spec. It's allowed by the spec, so people can surely do it, but we are talking about immediate ACK signaling in other ways too, and I don't think we want to encourage this 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/2952?email_source=notifications&amp;email_token=AFTOJK2FEY2EJFD72RNE4KLQJANH7A5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6MVYKA#issuecomment-530144296">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYBWAITVJ6S7F2YMSLQJANH7ANCNFSM4II7ULMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3IBCAY6HKAEF34FNDQJANH7A5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6MVYKA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications\u0026email_token=AFTOJK2FEY2EJFD72RNE4KLQJANH7A5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6MVYKA#issuecomment-530144296",
"url": "https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications\u0026email_token=AFTOJK2FEY2EJFD72RNE4KLQJANH7A5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6MVYKA#issuecomment-530144296",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7822ff7648f_37fd3fa7b9ccd968630b5--


From nobody Tue Sep 10 15:26: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 75CB0120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:26: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 qR75uSqM8cnp for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:26:25 -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 B5A6112003F for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:26:25 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:26:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568154384; bh=fzw08VNGYEY3o++3/itay/xfwhWh0xHr1+DppPsD2Ug=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=r187s4WjzvgKH/YXc2p8GLciaqfDTORzkI5BJx4uj6zPl9t7DzjBFsB5VWg5s23vQ EEAwK0BL7S2g3yTK50dOwHGfVdEOlxMRfCSJZgdRpkXNsMaFNU6CZMxGpmNafEVnA/ 73JFdhYN5FMxclStzoWfFU9da3xeBnwGT+5Su5x8=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7YOTYCJ6PTMWA65J53QVR2BEVBNHHBZ243UA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2992/review/286468862@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2992@github.com>
References: <quicwg/base-drafts/pull/2992@github.com>
Subject: Re: [quicwg/base-drafts] Keys need to be available to QUIC earlier (#2992)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d782310b6364_24ca3fb1ef4cd96c669e"; 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/iKOrZDeRp0dnFljtXzO-rlyVeYU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:26:28 -0000

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

DavidSchinazi approved this pull request.



> @@ -495,6 +496,12 @@ client could interleave ACK frames that are protected with Handshake keys with
 0-RTT data and the server needs to process those acknowledgments in order to
 detect lost Handshake packets.
 
+QUIC also needs access to keys that might not ordinarily be available to a TLS
+implementation.  For instance, a client might need to acknowledge Handshake
+packets before it is ready to sent CRYPTO frames at that encryption level.  TLS

typo: ready 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/2992#pullrequestreview-286468862
----==_mimepart_5d782310b6364_24ca3fb1ef4cd96c669e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2992#discussion_r322988934">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -495,6 +496,12 @@ client could interleave ACK frames that are protected with Handshake keys with
 0-RTT data and the server needs to process those acknowledgments in order to
 detect lost Handshake packets.
 
+QUIC also needs access to keys that might not ordinarily be available to a TLS
+implementation.  For instance, a client might need to acknowledge Handshake
+packets before it is ready to sent CRYPTO frames at that encryption level.  TLS
</pre>
<p>typo: ready to <em>send</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/2992?email_source=notifications&amp;email_token=AFTOJKZQ7OABQLTEIZZ4X4DQJANJBA5CNFSM4IPO7AWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJSV7Q#pullrequestreview-286468862">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3IV3ITTYRZ2EYFOI3QJANJBANCNFSM4IPO7AWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6WX6DZ2NMO6IGZADTQJANJBA5CNFSM4IPO7AWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJSV7Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2992?email_source=notifications\u0026email_token=AFTOJKZQ7OABQLTEIZZ4X4DQJANJBA5CNFSM4IPO7AWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJSV7Q#pullrequestreview-286468862",
"url": "https://github.com/quicwg/base-drafts/pull/2992?email_source=notifications\u0026email_token=AFTOJKZQ7OABQLTEIZZ4X4DQJANJBA5CNFSM4IPO7AWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJSV7Q#pullrequestreview-286468862",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d782310b6364_24ca3fb1ef4cd96c669e--


From nobody Tue Sep 10 15:30: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 B02BF1208BA for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:30: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 limO_kgEDm1k for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:30:28 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 42ED5120827 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:30:28 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:30:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568154627; bh=evjF7FliKIh5e0xMjQ+VOtn39gXCaXjdPnU/s7iKO6c=; h=Date:From:To:Subject:From; b=E+DvNI48pwrJdfBgx6FLdi5e8vjVQGtRrVcDNDecG9jCkb63c/atnGX40xL5pd8Ku LXgTXusOq9vcL3h0gxNMFb2hwGMfAylaKIabs8ITu1kYSJ+/B/Nl5lrTOJfNMiLwDU aw8sq1aEt3enA9hOX9F5p6OpDc1ZqRRzFGRt7MA4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/keys-available-earlier/3d5e26-e6c5d7@github.com>
Subject: [quicwg/base-drafts] e6c5d7: 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/x_wx8eB5ieG7F-99RQgSTuAezYc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:30:30 -0000

  Branch: refs/heads/keys-available-earlier
  Home:   https://github.com/quicwg/base-drafts
  Commit: e6c5d74fd41b62eab9e8333c89d89b01f5e1fb39
      https://github.com/quicwg/base-drafts/commit/e6c5d74fd41b62eab9e8333c89d89b01f5e1fb39
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  typo



From nobody Tue Sep 10 15:30: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 44B7512006B for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:30: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 Mr1eg0vxO_Ec for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:30:36 -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 95A4112003F for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:30:36 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:30:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568154636; bh=xAnfS53IcphTgmx5yh3akBGaiEbMuv5sgb5nerksi6A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Qv9xQrqz5Od42S1CgpGeXRl3VpbPq/UmT/wvw+u/TK4QBTy4EQMzY30FCN2F9kd5e OahzZnJ/1GaF+m+bfuuavdbAFp8XRbv1ZH0gzTu15BbnrnKz762Mvgx2R5mMFDobz6 5C032QUPuXR/L0OPD1394jkvLXXKETWS3K7J6X2g=
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/2992/push/4019357116@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2992@github.com>
References: <quicwg/base-drafts/pull/2992@github.com>
Subject: Re: [quicwg/base-drafts] Keys need to be available to QUIC earlier (#2992)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d78240bcf484_57ce3fde8accd96011709c"; 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/MM7CNhuoorpp_zpiyEAFKpLnEmM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:30:38 -0000

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

@martinthomson pushed 1 commit.

e6c5d74fd41b62eab9e8333c89d89b01f5e1fb39  typo


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2992/files/3d5e2692e439f2f488b92bad55f885827d702367..e6c5d74fd41b62eab9e8333c89d89b01f5e1fb39

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

----==_mimepart_5d78240bcf484_57ce3fde8accd96011709c--


From nobody Tue Sep 10 15:31: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 883F0120019 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:31: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 QFhv04LEcTrY for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:31: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 071CD12006B for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:31:48 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:31:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568154707; bh=gWu1/GsEy3VFxAVV1iPzx0gaWXe7e+luOYq97aghw6I=; h=Date:From:To:Subject:From; b=xfLOfAusfjtjFlFehaNFmXQKk+Trij890jVUHHf/VGESqCJ8xBV5Y7q2O8lqhbib1 r8HRMIhqmI3X40G2xvFU0jvcFgZhO5wfnvn/Mdg0qqX4C0wdwBYgMHvNhtic1QNWv0 v73Fe8xrnaLpN4KLBkDZIVaRuRXnz4Ln+Q6Zc+iI=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/6d76ef-7bd5be@github.com>
Subject: [quicwg/base-drafts] 7bd5be: Script updating gh-pages from e6c5d74f. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/0ffiezU7TdOEg9SjDrYss50Ohgw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:31:50 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7bd5bec1de27a096e1445f43089988860c3ff7fa
      https://github.com/quicwg/base-drafts/commit/7bd5bec1de27a096e1445f43089988860c3ff7fa
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

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



From nobody Tue Sep 10 15:40: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 70C8512006B for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:40: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 fpxMqY1y7ylL for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:40: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 4AE23120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:40:13 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:40:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155212; bh=3KnRD0MMRGWipBC3Sgp6LvI+ph5+MOQwM3wt4JFtxYM=; h=Date:From:To:Subject:From; b=HY1ryVkyKkm9dDQHV1t0eV5uSQGaF0620/BjNpy30HU8riCiGE42INvi/+QJF7rlc GDleYJa2MgROTkpwjnDAMksAelIrYU9tJOI00dhaoDK+gWyhfMQyMARqPw4pHv6oQd Cx+DDjThFRYgVtwyY4NBKSgtUjfIZdd7JyPDR6xU=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/d27f8e-adc7f9@github.com>
Subject: [quicwg/base-drafts] adc7f9: typo fix
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lAbSgLdvbJcwruDnQUY_yGLY_b0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:40:15 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: adc7f92f9081a5883624ab47fdd815e19b00bddb
      https://github.com/quicwg/base-drafts/commit/adc7f92f9081a5883624ab47fdd815e19b00bddb
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  typo fix



From nobody Tue Sep 10 15:41: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 D0D0A12006B for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:41: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 YKj04aIqmcrP for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:41: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 6C399120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:41:35 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:41:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155295; bh=O1hvKxobOpoj3rg7KmKzJEdEf9dp3cFr3cQ3lqwRqrw=; h=Date:From:To:Subject:From; b=Kr0V7FWnkiFEX3P5wNFStKiWjdan5bdmGIwjheg19Iji8F/XXZjiTngOylbBmorOc w/rFn+8n1q/LywouV72itDTz1uj3CHNfjYx8GiZpydzAl52r9+ByvziucMjX7jHMlK 2dEOV7k4w5KFkipPpc3KWv0pbbDi7J8F2du+sfYc=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/7bd5be-f1e59c@github.com>
Subject: [quicwg/base-drafts] f1e59c: Script updating gh-pages from adc7f92f. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wtHr3wbFnAzc0K4zHP9WAX6IXvU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:41:37 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f1e59ce68c81e67a015d247f8798ab303a062b2f
      https://github.com/quicwg/base-drafts/commit/f1e59ce68c81e67a015d247f8798ab303a062b2f
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-10 (Tue, 10 Sep 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 adc7f92f. [ci skip]



From nobody Tue Sep 10 15:41: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 A20DA12006B for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:41:57 -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 insuW9YUUYmZ for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:41: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 2608F120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:41:56 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 8A2BA6A006B for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:41:55 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:41:55 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK46V6T5MMQUET45LAV3QVTUHEVBNHHBSWPA2E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2553/review/286474103@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2553@github.com>
References: <quicwg/base-drafts/pull/2553@github.com>
Subject: Re: [quicwg/base-drafts] Change on idle behaviour (#2553)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7826b37b688_4f7a3fb0ca6cd96816775c"; 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/Z08p84yUTwuJTYlDKcwWoGDqsSY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:41:58 -0000

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


From nobody Tue Sep 10 15:42: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 12EBB12006B for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:42:06 -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 NsHaYWPCldHP for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:42:04 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 276EF120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:42:04 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:42:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155323; bh=3QbHK01CJFtZpgM+9DhmYYF7J88uHLtb7KHcpoxJkRk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=f9wSTa0z1iwCevsKwyqxLbjPuAKKCecg9W6eOGuDZVKOzfFIX+cduRuD48voJGBer kSVg89yTun6Dh8xZc/gwURZ5ozh6L7G58UwmS1HO/0fHT5FLbD9J9+VUE26wnR/7uH gc1u8IAYDMy6p9l9wYH/YV+UWtQV6pafG5B5wJFg=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2A2SNSJOZNNWTJCJV3QVFSVEVBNHHBSWPA2E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2553/review/286474082@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2553@github.com>
References: <quicwg/base-drafts/pull/2553@github.com>
Subject: Re: [quicwg/base-drafts] Change on idle behaviour (#2553)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7826bae8ea7_5a23f83f82cd95c3801f5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4RJuBAy0b53ebVAwy3LNyGunuBo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:42:06 -0000

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

martinthomson commented on this pull request.

This seems good, but it won't apply.

> @@ -724,13 +724,11 @@ in Linux (3.11 onwards).
 A sender becomes idle if it ceases to send data and has no bytes in flight.  A
 sender's congestion window MUST NOT increase while it is idle.
 
-When sending data after becoming idle, a sender MUST reset its congestion window
-to the initial congestion window (see Section 4.1 of {{?RFC5681}}), unless it
-paces the sending of packets. A sender MAY retain its congestion window if it
-paces the sending of any packets in excess of the initial congestion window.
-
-A sender MAY implement alternate mechanisms to update its congestion window
-after idle periods, such as those proposed for TCP in {{?RFC7661}}.
+When sending data after becoming idle and a sender does not pace the sending
+of packets, it MUST reset its congestion window to the initial congestion
+window (see Section 4.1 of {{?RFC5681}}). If packet sending is paced, a sender
+MAY implement alternate mechanisms to update its congestion window after idle

```suggestion
MAY implement alternative mechanisms to update its congestion window after idle
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2553#pullrequestreview-286474082
----==_mimepart_5d7826bae8ea7_5a23f83f82cd95c3801f5
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>This seems good, but it won't apply.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2553#discussi=
on_r322993285">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -724,13 +724,11 @@ in Linux (3.11 onwar=
ds).=0D
 A sender becomes idle if it ceases to send data and has no bytes in flig=
ht.  A=0D
 sender&#39;s congestion window MUST NOT increase while it is idle.=0D
 =0D
-When sending data after becoming idle, a sender MUST reset its congestio=
n window=0D
-to the initial congestion window (see Section 4.1 of {{?RFC5681}}), unle=
ss it=0D
-paces the sending of packets. A sender MAY retain its congestion window =
if it=0D
-paces the sending of any packets in excess of the initial congestion win=
dow.=0D
-=0D
-A sender MAY implement alternate mechanisms to update its congestion win=
dow=0D
-after idle periods, such as those proposed for TCP in {{?RFC7661}}.=0D
+When sending data after becoming idle and a sender does not pace the sen=
ding=0D
+of packets, it MUST reset its congestion window to the initial congestio=
n=0D
+window (see Section 4.1 of {{?RFC5681}}). If packet sending is paced, a =
sender=0D
+MAY implement alternate mechanisms to update its congestion window after=
 idle=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-MAY implement alternate mechanisms to update =
its congestion window after idle=0D
+MAY implement alternative mechanisms to update its congestion window aft=
er idle=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/2553?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK7GUQQAN2U4BM57QALQJAPDVA5CNFSM4HBMCUN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJT6YQ#pullrequestreview-286474082=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK7G3P44OG45LKXFKP3QJAPDVANCNFSM4HBMCUNQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK444RAF=
7W4XWNUSTYDQJAPDVA5CNFSM4HBMCUN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJT6YQ.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/2553?email_source=3D=
notifications\u0026email_token=3DAFTOJK7GUQQAN2U4BM57QALQJAPDVA5CNFSM4HBM=
CUN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
EJT6YQ#pullrequestreview-286474082",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2553?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK7GUQQAN2U4BM57QALQJAPDVA5CNFSM4HBMCU=
N2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJ=
T6YQ#pullrequestreview-286474082",=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_5d7826bae8ea7_5a23f83f82cd95c3801f5--


From nobody Tue Sep 10 15:44: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 AC3C5120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:44:49 -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, TVD_SPACE_RATIO=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 TT29ZnGnkcOw for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:44: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 6789B12006B for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:44:48 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id C12BC1C0E1E for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:44:47 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:44:47 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/circle_caching/56e9e1-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/bYhen9lm8gBHooNX8Yt7eFsqvk4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:44:50 -0000

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


From nobody Tue Sep 10 15:44: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 4500C120232 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:44: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, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id NlyZR-D6s5kd for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:44: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 19CE6120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:44:48 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:44:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155487; bh=v7a8GmY1uycVowQJFQscpcCQ8TO+pGCPlyTG/T793jE=; h=Date:From:To:Subject:From; b=pTsaKDoZRPi4UeRZPMCJVsMOEmwGtKYtjQM8+r8ImkAv0xayRlXBRYqUyTJGAeC0+ +u9arKyxdO8ackpdmDkIlLFNqO2r//RY7CdDL9JGUOCBisa7VwONN57o+5uP99Bqu2 i7+3k2HDNEuAAPNPFEZ95oG7coYUmRahFqfWp+Ho=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/adc7f9-3588a5@github.com>
Subject: [quicwg/base-drafts] a7d7f9: Cache git repo between Circle runs
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7Jwn4OJGr3K54DgS45104KMpuFs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:44:52 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: a7d7f9d96c84ef8fe85e9bae21665f240cb38507
      https://github.com/quicwg/base-drafts/commit/a7d7f9d96c84ef8fe85e9bae21665f240cb38507
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M .circleci/config.yml

  Log Message:
  -----------
  Cache git repo between Circle runs


  Commit: b8e45fba31c52c5a9bd9dda9b26e8b9443fa4fb5
      https://github.com/quicwg/base-drafts/commit/b8e45fba31c52c5a9bd9dda9b26e8b9443fa4fb5
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M .circleci/config.yml

  Log Message:
  -----------
  Cache draft references too


  Commit: c642ae92f3b78642e666d76701a1606d87446e8d
      https://github.com/quicwg/base-drafts/commit/c642ae92f3b78642e666d76701a1606d87446e8d
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-06 (Fri, 06 Sep 2019)

  Changed paths:
    M .circleci/config.yml

  Log Message:
  -----------
  Only gc if called for


  Commit: 56e9e1a6515ac1ea6e882a83c48d7149070bdd17
      https://github.com/quicwg/base-drafts/commit/56e9e1a6515ac1ea6e882a83c48d7149070bdd17
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-09 (Mon, 09 Sep 2019)

  Changed paths:
    M .circleci/config.yml

  Log Message:
  -----------
  Add master to fallback path for new branches

Newly-created branches are most likely to have been based on master; if no cache exists for a repo, take master as the starting point


  Commit: 3588a5716876b9177305b56cc860361fdd980050
      https://github.com/quicwg/base-drafts/commit/3588a5716876b9177305b56cc860361fdd980050
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

  Changed paths:
    M .circleci/config.yml

  Log Message:
  -----------
  Merge pull request #3009 from quicwg/circle_caching

Cache git repo, draft references in Circle


Compare: https://github.com/quicwg/base-drafts/compare/adc7f92f9081...3588a5716876


From nobody Tue Sep 10 15:45: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 F1680120806 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:44: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 rLcbL6qQ3Vm8 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:44: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 8559912006B for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:44:50 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:44:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155489; bh=7M0noIs5Y6cMIrcgUaMjQl2G+blNevNoMQGN4j2vHRE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eNkSrdwX8Zm7NI0yqrPTfhBn0q5ZkaWU2V/uNNVF0I0fNyvG8ZG7R8C9+jLt6SeH2 2BB+MHyYDNphHcqF09e7bkJ4+p23zyaGfEOmC91DL2T9tPxrwUT2EAKXaIkQ+3OPfN ridWksDHaXhLB8a+bRc+nojqxb+vzxCckQVqKio8=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3TO7NPHKZRFN5RUG53QVF5DEVBNHHB2OXHYQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3009/c530148995@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3009@github.com>
References: <quicwg/base-drafts/pull/3009@github.com>
Subject: Re: [quicwg/base-drafts] Cache git repo, draft references in Circle (#3009)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d782761b4da6_63113fb6c48cd95c135764"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/rHOJj7i96HmSyp72GA1cwCg0KrY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:44:52 -0000

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

How did I completely miss the prefix-matching thing.  This is 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/3009#issuecomment-530148995
----==_mimepart_5d782761b4da6_63113fb6c48cd95c135764
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>How did I completely miss the prefix-matching thing.  This is 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/3009?email_source=notifications&amp;email_token=AFTOJK3TIR7KAPC3VUVYUT3QJAPODA5CNFSM4IUKPTZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6MW5AY#issuecomment-530148995">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK57MRTZOEKB2KHYXATQJAPODANCNFSM4IUKPTZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3J6ZD5NYIULRJGJ3DQJAPODA5CNFSM4IUKPTZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6MW5AY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3009?email_source=notifications\u0026email_token=AFTOJK3TIR7KAPC3VUVYUT3QJAPODA5CNFSM4IUKPTZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6MW5AY#issuecomment-530148995",
"url": "https://github.com/quicwg/base-drafts/pull/3009?email_source=notifications\u0026email_token=AFTOJK3TIR7KAPC3VUVYUT3QJAPODA5CNFSM4IUKPTZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6MW5AY#issuecomment-530148995",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d782761b4da6_63113fb6c48cd95c135764--


From nobody Tue Sep 10 15: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 F018E1207FE for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:44:59 -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 L-79D2ULmxLa for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:44: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 85A8712006B for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:44:58 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id B1F8D961B00 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:44:57 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:44:57 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack-changelog/000000-6f6040@github.com>
Subject: [quicwg/base-drafts] 6f6040: Update QPACK Changelog
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xIH1Ws5xI6XpoxpJZjA_VbY-a4E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:45:01 -0000

  Branch: refs/heads/qpack-changelog
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6f6040ac34e418d244e862862d85207d4e0dd818
      https://github.com/quicwg/base-drafts/commit/6f6040ac34e418d244e862862d85207d4e0dd818
  Author: Alan Frindell <afrind@fb.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Update QPACK Changelog



From nobody Tue Sep 10 15: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 7C7311200B7 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:45: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 eF5knooVsswt for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:45: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 20C34120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:45:24 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:45:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155523; bh=6ZmREq6JriSBC/jS656sJKPus6CUCtnZvmERfyXcVSc=; h=Date:From:To:Subject:From; b=FS6h6bKazy9xPjU3F+yESjzkhuc7fJnB88cafxTqcp68+Hh6ZQj08KCBADjaLit9O C3kKAy0QtK8DrKMx9huolR9X9Sgf+utPaPqIiePOcrpz+bXYSsixPzOePDIzcMwr5o EQUM/yDM9xyg1ImSN4u877nAW5fz2as1+EijVLfU=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f1e59c-2db593@github.com>
Subject: [quicwg/base-drafts] 2db593: Script updating gh-pages from 3588a571. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/pP_aPjhanDqx_r7lvcqhljGCcOI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:45:26 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2db593ee681b3a0c68c758f3f0c706d6d36da1f7
      https://github.com/quicwg/base-drafts/commit/2db593ee681b3a0c68c758f3f0c706d6d36da1f7
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

  Changed paths:
    M index.html

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



From nobody Tue Sep 10 15: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 E3D57120838 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:45:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.28
X-Spam-Level: 
X-Spam-Status: No, score=-6.28 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, 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 BTOlxCfMLTmr for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:45:27 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9D6AD120074 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:45:27 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id D32555204D8 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:45:26 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:45:26 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZY2GJYZQU7WKN4VOF3QVUBNEVBNHHB2USPAY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3016@github.com>
Subject: [quicwg/base-drafts] Update QPACK Changelog (#3016)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d782786c4d75_1af83f97a00cd95c19539b"; 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/Yev7fkR2T9oTk7j3N1LQrMaiLaE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:45:34 -0000

----==_mimepart_5d782786c4d75_1af83f97a00cd95c19539b
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/3016

-- Commit Summary --

  * Update QPACK Changelog

-- File Changes --

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

-- Patch Links --

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

----==_mimepart_5d782786c4d75_1af83f97a00cd95c19539b
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/3016'>https://github.com/quicwg/base-drafts/pull/3016</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Update QPACK Changelog</li>
</ul>

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

----==_mimepart_5d782786c4d75_1af83f97a00cd95c19539b--


From nobody Tue Sep 10 15:45: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 2F0A012082A for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:45:43 -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 jwUH2beMn-qz for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:45: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 88C601200E0 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:45:41 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id EE1B966054A for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:45:40 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:45:40 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3CEJXBECT2MRRD5AF3QVUCJEVBNHHBSWPA2E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2553/review/286475288@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2553@github.com>
References: <quicwg/base-drafts/pull/2553@github.com>
Subject: Re: [quicwg/base-drafts] Change on idle behaviour (#2553)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d782794de1e7_4ecf3fa63a2cd95c12987f"; 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/dEnLlrZMEZtXPT4O4X5F7gqUqHM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:45:48 -0000

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


From nobody Tue Sep 10 15:46: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 9F64112001A for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:46: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 v4uyGParVLuV for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:46:16 -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 2CA46120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:46:16 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:46:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155575; bh=tAUU64xDU6bxufKdHEpbatih++kiPMLMrUYxi2QjhZ4=; h=Date:From:To:Subject:From; b=VeNth0T3JkFX9pQo7JXsL2Nh8LhMhxLk0KgLzm2IHPXqvfC265TNNZkMTQm8CeQ7v ohQMLUmXvBaIODRTpcxQfTcX7bJo3Vyj33A2fwPxwbTC6mFnmf2uJw0BCqrP6CJXsd aosqgNxfZBsGTRoRKv+26dWHfU9stcQyBe1VE6HA=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/2db593-391265@github.com>
Subject: [quicwg/base-drafts] 391265: Script updating gh-pages from 6f6040ac. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yoaELpCqMgxYUKmMaTsdR7fyuYU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:46:18 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 391265b1dcdf83c13c0ccd2ff69d534f7c6fc6ff
      https://github.com/quicwg/base-drafts/commit/391265b1dcdf83c13c0ccd2ff69d534f7c6fc6ff
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

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



From nobody Tue Sep 10 15:47: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 01DEC12001A for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:47: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 0XpkmIRX3cjG for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:47: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 8B628120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:47:29 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:47:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155648; bh=erJX/yt4lxW1eHGTr6FQSnb3CKLZKA/fMwDzC7lRVR8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Af7PKB8iffMs9y8GAecEHteJFA0W7KPY1xawkm6M8BQTSzKP+6EXeX7sC2wsF9NGR APJfH6G/93zpHbiZSf0txZL7FEGeDUCDa1nSYaqAYopVcHbHyXjFTWdK6nUmgPSNwL vIjqS2MW9trLMYUZfmYhnoU62ZHrO1658zv0Zq9E=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5JORWSTBUJXVPRWKN3QVUJBEVBNHHBSWPA2E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2553/c530149578@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2553@github.com>
References: <quicwg/base-drafts/pull/2553@github.com>
Subject: Re: [quicwg/base-drafts] Change on idle behaviour (#2553)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d782800af842_7f953fc887ecd96883285"; 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/qotPDVzRVG2yaWZQOvDQIj2zBVU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:47:31 -0000

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

This is OBE. The offending text is not there anymore.

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

<p>This is OBE. The offending text is not there anymore.</p>

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


From nobody Tue Sep 10 15:47: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 2CEDA120273 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:47: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 JoIvPCtsHI60 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:47: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 87201120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:47:31 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:47:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155650; bh=URlB8lr+Sx2ugRZPPMtrGunXUa3YQsGX/pSkAzzmrlY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Cv78N2Hk5VTvAbIbIFr+blf30iyNZ7fjt7CF6x4EYIBVuhms6VQW83kS0ktZzIctP cHBXYcqcSwBkcHJm8i93CSO7Ofv84qC57my10B2onYhk+yheWysxl5H2tWtNafDg56 ScBLAojns9E9dvDwuG9NncJWq3TSbYVHG1cUIZOE=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5U3CGELCJ6OY4UQ7N3QVUJFEVBNHHBSWPA2E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2553/issue_event/2623916084@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2553@github.com>
References: <quicwg/base-drafts/pull/2553@github.com>
Subject: Re: [quicwg/base-drafts] Change on idle behaviour (#2553)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d782802d8c20_58743fa09fecd9641229d4"; 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/5TYstarC2sf0PW3AGhkn0IqvTKw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:47:34 -0000

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

Closed #2553.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2553#event-2623916084
----==_mimepart_5d782802d8c20_58743fa09fecd9641229d4
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="425320657" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2553" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2553/hovercard" href="https://github.com/quicwg/base-drafts/pull/2553">#2553</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/2553?email_source=notifications&amp;email_token=AFTOJK6PWSNTJED4LPCQGYDQJAPYFA5CNFSM4HBMCUN2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRS4QNA#event-2623916084">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3Z3JXKX3RYWHXKF63QJAPYFANCNFSM4HBMCUNQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6TUIDLVA3J37RAAM3QJAPYFA5CNFSM4HBMCUN2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRS4QNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2553?email_source=notifications\u0026email_token=AFTOJK6PWSNTJED4LPCQGYDQJAPYFA5CNFSM4HBMCUN2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRS4QNA#event-2623916084",
"url": "https://github.com/quicwg/base-drafts/pull/2553?email_source=notifications\u0026email_token=AFTOJK6PWSNTJED4LPCQGYDQJAPYFA5CNFSM4HBMCUN2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRS4QNA#event-2623916084",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d782802d8c20_58743fa09fecd9641229d4--


From nobody Tue Sep 10 15: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 3630712001A for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:47:59 -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 5LuOCN8rbFbw for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:47: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 74982120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:47:57 -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 ACFE42C0E2D for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:47:56 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:47:56 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/3588a5-f62d24@github.com>
Subject: [quicwg/base-drafts] 924ad8: remove misleading sentence about incompatible QUIC...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UaBPD2bHkMKWpPbQJSnVWPC5e58>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:47:59 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 924ad857f4230968d7c9bc2f6052b4c6e3effd9e
      https://github.com/quicwg/base-drafts/commit/924ad857f4230968d7c9bc2f6052b4c6e3effd9e
  Author: Marten Seemann <martenseemann@gmail.com>
  Date:   2019-06-18 (Tue, 18 Jun 2019)

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

  Log Message:
  -----------
  remove misleading sentence about incompatible QUIC versions and ALPN


  Commit: 818290b0858e7b6640245dd4759cd6f336fdbf9f
      https://github.com/quicwg/base-drafts/commit/818290b0858e7b6640245dd4759cd6f336fdbf9f
  Author: Marten Seemann <martenseemann@gmail.com>
  Date:   2019-08-28 (Wed, 28 Aug 2019)

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

  Log Message:
  -----------
  apply Mike's suggestion


  Commit: f62d24883538ea7058cee0fcbe2217f299deaeb0
      https://github.com/quicwg/base-drafts/commit/f62d24883538ea7058cee0fcbe2217f299deaeb0
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  Merge pull request #2802 from marten-seemann/misleading-alpn-version

remove misleading sentence about incompatible QUIC versions and ALPN


Compare: https://github.com/quicwg/base-drafts/compare/3588a5716876...f62d24883538


From nobody Tue Sep 10 15:48: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 49441120019 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:48: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 0t7C2SRdbAyi for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:48:06 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 007D412006B for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:48:05 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:48:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155685; bh=ttk6zLziENGJn4kiddqldZGvkhRN3nOswGXKFJ5DjxY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TfBQliWy4rP3JA25u3HIYMKUhAYFjpx2XiLMbpG+NYREDAG2HQQUHEQQEW4CeDuvb 4VV3r+ghC5aVKzzq6Jt/SX6G6re5ncFP6dumFGhQl9DBDHbV6VH8zND4eRuVJ2cu3c clpOhD4I2QFkwWoIVXXUSQ/Bo23B5x6WvnuUbyFI=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3C4JLORCRFZ6UHP7F3QVGJLEVBNHHBWRDWHA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2802/issue_event/2623916894@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2802@github.com>
References: <quicwg/base-drafts/pull/2802@github.com>
Subject: Re: [quicwg/base-drafts] remove misleading sentence about incompatible QUIC versions and ALPN (#2802)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d78282549b1f_48fe3fc31a8cd968270849"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5TvYNYtoGlM9qJNWtYfjBXyfjWo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:48:07 -0000

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

Merged #2802 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/2802#event-2623916894
----==_mimepart_5d78282549b1f_48fe3fc31a8cd968270849
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="457471544" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2802" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2802/hovercard" href="https://github.com/quicwg/base-drafts/pull/2802">#2802</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/2802?email_source=notifications&amp;email_token=AFTOJKYTOUVK5ER5FEZZWNDQJAP2LA5CNFSM4HY73Y6KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRS4WXQ#event-2623916894">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2AJMHU7CJB5IVLY5LQJAP2LANCNFSM4HY73Y6A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7TIW7X4X5BZUAZOI3QJAP2LA5CNFSM4HY73Y6KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRS4WXQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2802?email_source=notifications\u0026email_token=AFTOJKYTOUVK5ER5FEZZWNDQJAP2LA5CNFSM4HY73Y6KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRS4WXQ#event-2623916894",
"url": "https://github.com/quicwg/base-drafts/pull/2802?email_source=notifications\u0026email_token=AFTOJKYTOUVK5ER5FEZZWNDQJAP2LA5CNFSM4HY73Y6KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRS4WXQ#event-2623916894",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d78282549b1f_48fe3fc31a8cd968270849--


From nobody Tue Sep 10 15:48: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 EF82612001A for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:48: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 1bJjhObeyRvo for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:48: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 6AA16120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:48:26 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:48:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155705; bh=ods/4YAvTjENhBFsACxNQl2jq5tNqAk7N31WNV9AMgA=; h=Date:From:To:Subject:From; b=LpxXouqHeoAETMe1cV52rpNrzrISr0ok472vpiV4t7J48frQf3MyKcgRtNREdnEkk rsJ0V2hufPgMhkU19XW/dHtFyoEqcM77FpA8YPQfNTXpRFOQbUIIl9K0qrocDZJZ6Q mDzFwBzM/B029OhscK409+qZ4Sq1YDZsjT5oNnUA=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/391265-9b9264@github.com>
Subject: [quicwg/base-drafts] 9b9264: Script updating gh-pages from f62d2488. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SyXX0eMCJ15sgXNqt6q4DCZ7y9w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:48:28 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9b926403b22076798ced5f886303f9c7822517ba
      https://github.com/quicwg/base-drafts/commit/9b926403b22076798ced5f886303f9c7822517ba
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-10 (Tue, 10 Sep 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 f62d2488. [ci skip]



From nobody Tue Sep 10 15:48: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 35777120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:48: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 emWaq7GeO5PI for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:48:46 -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 DC5FC12006B for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:48:46 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:48:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155726; bh=FkSYDyoTzL/xJ3zspCpa/IA/7FOJuHwYGCI0yt2wcC8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eoTTyM1vWK7VEFcIboYisXVYMPeKJh/8MU51mtZ9C9JVlk/L9M1RL/xUkKPuzOaAF 6VKw8PrPYNToahT3ElSsaDQvGY+DI52yeDq5PHQkBWRzLOK3oQZyarpnMa+g3A6ZyW /3X5g+cyp3fG6hyb6WYqOXr9n5jDLd/5XIYXdXdQ=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZXB332C2YR5AEAOWN3QVGL5EVBNHHB2USPAY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3016/review/286476198@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3016@github.com>
References: <quicwg/base-drafts/pull/3016@github.com>
Subject: Re: [quicwg/base-drafts] Update QPACK Changelog (#3016)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d78284e1f1bf_71333fcfceecd960382382"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mS0dLQXR6p08QM4RvP6A4jrRL58>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:48:48 -0000

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


From nobody Tue Sep 10 15:49: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 99FEA12006B for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:49:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.776
X-Spam-Level: 
X-Spam-Status: No, score=-4.776 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FUZZY_CREDIT=1.678, 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 XnV4JLC5J9MV for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:49: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 3D76F12001A for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:49:19 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:49:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155758; bh=rNqbJRSAqJCZz8YQTzl40EJaCrVnLkwKRx9CV2efYII=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uQboPuCvSQaJUulhPQNnNOW9AS887LB+C4bGEj/h7cswu8q/Zqeb+CezwUGWUIhC2 QfbMoIKtqTyzoLwdmzXQu2UqKVEjw6N4ctQATzWnpziPP7OFlpU3zEaJVod/N+Qphu sdTcKsfGbsGGEIoEktbLAGQ/n9p66q8shKPr1KV8=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3JZ6QNXPXKM2PQMVF3QVGN5EVBNHHBOTHRTE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2176/c530149968@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2176@github.com>
References: <quicwg/base-drafts/pull/2176@github.com>
Subject: Re: [quicwg/base-drafts] Ekr editorial 17 tls (#2176)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d78286e90951_37f53fa7b9ccd9681582e6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/DKA_15sQf9c4RRmwTeggh-s_B7U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:49:21 -0000

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

This is now sufficient rotten that I think we will have to start over.

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

<p>This is now sufficient rotten that I think we will have to start over.</p>

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


From nobody Tue Sep 10 15:49: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 05F5012006B for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:49:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.704
X-Spam-Level: 
X-Spam-Status: No, score=-4.704 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FUZZY_CREDIT=1.678, HTML_IMAGE_ONLY_24=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 bUlUP_R-B4J2 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:49:20 -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 B42C012001A for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:49:20 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:49:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155760; bh=5qDPcKx+pFq7R0NJGTaHN2bB04YjpsJz/bE21QYfGV0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HZuosHO23isEGXPPsGX3sYIvAFzmle44S9PHnfWsMZsTE91pz8/Y18ajgOsv/dsW/ CSyZNrw8YOG6Js1zc/UU8ep7ot1LLiQwiGdwbfliW0fdABe4USp8l6nNS8TtL7jRkr xqKnN67bqL6Oiu6WioOBWRZ22RrDXEBXzZCAG9E0=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK26MK6OAZPJ6ZXO73N3QVGOBEVBNHHBOTHRTE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2176/issue_event/2623918836@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2176@github.com>
References: <quicwg/base-drafts/pull/2176@github.com>
Subject: Re: [quicwg/base-drafts] Ekr editorial 17 tls (#2176)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d782870222b0_35a63fe2858cd9603285c0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vXsjw55g2TnAjP7u-BkLc4D6RBw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:49:22 -0000

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

Closed #2176.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2176#event-2623918836
----==_mimepart_5d782870222b0_35a63fe2858cd9603285c0
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="390918553" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2176" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2176/hovercard" href="https://github.com/quicwg/base-drafts/pull/2176">#2176</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/2176?email_source=notifications&amp;email_token=AFTOJKZECYW7GXF5QJ5YDL3QJAP7BA5CNFSM4GKKW43KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRS5F5A#event-2623918836">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5S65QXSPUZVFP67SLQJAP7BANCNFSM4GKKW43A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2LC4YOXOINSEXJVJTQJAP7BA5CNFSM4GKKW43KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRS5F5A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2176?email_source=notifications\u0026email_token=AFTOJKZECYW7GXF5QJ5YDL3QJAP7BA5CNFSM4GKKW43KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRS5F5A#event-2623918836",
"url": "https://github.com/quicwg/base-drafts/pull/2176?email_source=notifications\u0026email_token=AFTOJKZECYW7GXF5QJ5YDL3QJAP7BA5CNFSM4GKKW43KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRS5F5A#event-2623918836",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d782870222b0_35a63fe2858cd9603285c0--


From nobody Tue Sep 10 15:51: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 B9989120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:51: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, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id n0R6DKbrM4Sd for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:51: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 18304120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:51:04 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:51:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155863; bh=mzenhS4EnLX3LP/daRWp5kg69zH9vBJvnCe89wmOu98=; h=Date:From:To:Subject:From; b=yHiBwEcfNPzyCQrSk1ZSeXRaY/OYv+N/SNERIJ7IguWBW6PW1We/YzATsnOMRk0RM nXXDqaOUAW7lxpiwRWfw0MRgI1WCnavC888Wi33sbnjRoMSWghj3edcAREDYDKUxi3 jFFWDM9nWMXo1OrBXdTlk7sqtQN1hZIufFr0SOZs=
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/f62d24-a9aa36@github.com>
Subject: [quicwg/base-drafts] a9aa36: Update QPACK Changelog (#3016)
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kaxaQJvmiiJKejB_5vH8iNxndio>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:51:06 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: a9aa362c8b66e7c551a186297710d47b5e2000d9
      https://github.com/quicwg/base-drafts/commit/a9aa362c8b66e7c551a186297710d47b5e2000d9
  Author: afrind <afrind@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Update QPACK Changelog (#3016)



From nobody Tue Sep 10 15: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 6993B120019 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:51: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, 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 PoCurEhJgfm8 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:51: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 12A2312006B for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:51:05 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:51:04 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155864; bh=fMjvTa/CxIygdnyqdi/8yEKV3Tz/Xe9BF27nbxohoB4=; h=Date:From:To:Subject:From; b=PIpZXiboScuqkBDYyMM81CL/t0nyQZfMZAukPvY3wgcixAygbGAzXFa3Hmz2pyudy fx23/z2sTNWFW0T2l77KO+G/CepnJVn20eHhg7UdCrH2jY9jaPLlhl/ofiDxx/Ui9L YlKurVUeezTiVHc/E2EXfPuAT+Z77f66DQ3J7eaE=
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack-changelog/6f6040-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/cnwbYRrI-RRHp7UkDTvyaxd0I6o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:51:07 -0000

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


From nobody Tue Sep 10 15: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 67C04120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:51: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 uoMStKz5ySyL for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:51: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 BF9DB120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:51:12 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:51:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155872; bh=chJNEJXdfPUpuABnHhtRhn+8rjRXNpVXAKrLuYrU5gw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VOwzKBHAbsIcqH/dsqIbIBtGMyljH3VqBATSpXhIoNPbB61PNbpSwzfQP2hIcmknt Pi77/jtnMukIuHz2mJ/exYCQS9Py7d65FBkJJ/zQj7wIbOr3+8U5GqdsXxnPleBApB qfklKh/ntVFaQ3x4wKiburHrIc2cwyaPZztEMWOU=
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK72LPHEEMBVQKXDWCV3QVUXBEVBNHHB2USPAY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3016/issue_event/2623921835@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3016@github.com>
References: <quicwg/base-drafts/pull/3016@github.com>
Subject: Re: [quicwg/base-drafts] Update QPACK Changelog (#3016)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7828e012a5b_718f3ff74e4cd968153574"; 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/8Mv9Y4U_A4gs6NLH9vUNMGANB1I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:51:15 -0000

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

Merged #3016 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/3016#event-2623921835
----==_mimepart_5d7828e012a5b_718f3ff74e4cd968153574
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="491933446" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3016" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3016/hovercard" href="https://github.com/quicwg/base-drafts/pull/3016">#3016</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/3016?email_source=notifications&amp;email_token=AFTOJK6U2CDDN74ZKSRNDVTQJAQGBA5CNFSM4IVNKSG2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRS55KY#event-2623921835">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6KLXCSXE4FDJZ6HKDQJAQGBANCNFSM4IVNKSGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4UAJSOCG5FTHWX5ATQJAQGBA5CNFSM4IVNKSG2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRS55KY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3016?email_source=notifications\u0026email_token=AFTOJK6U2CDDN74ZKSRNDVTQJAQGBA5CNFSM4IVNKSG2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRS55KY#event-2623921835",
"url": "https://github.com/quicwg/base-drafts/pull/3016?email_source=notifications\u0026email_token=AFTOJK6U2CDDN74ZKSRNDVTQJAQGBA5CNFSM4IVNKSG2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRS55KY#event-2623921835",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7828e012a5b_718f3ff74e4cd968153574--


From nobody Tue Sep 10 15:51: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 3465E12006B for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:51:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 xDaogOjPsUzc for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:51: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 5D71D120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:51:39 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 8805E6A0A9F for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:51:38 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:51:38 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/9b9264-2c2719@github.com>
Subject: [quicwg/base-drafts] 2c2719: Script updating gh-pages from a9aa362c. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZS6D-g6rn-PQSwu2WwUsmuKm-YE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:51:41 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2c2719f0fdd445b9488519cf9964640b16d690fb
      https://github.com/quicwg/base-drafts/commit/2c2719f0fdd445b9488519cf9964640b16d690fb
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

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



From nobody Tue Sep 10 15: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 9C313120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:51: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, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QC5YnY7TU5PJ for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:51:47 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 43A98120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:51:47 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:51:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155906; bh=yOTnNT3AzeqDakGEfjmpeiPW2oG4bZWKcOGrgl0EFLo=; h=Date:From:To:Subject:From; b=qsZykPXEq1w3GkxcNMa21Ccg4+Alq8XNMqkWHK+g6uUxGnPxummOPKCjLdu+gTx0I 9X9ezH+WZTvSsxexPfod+NpBac8C2hLcQWpLfZdn0XzML2L1cHFLKa/FwyW3LqzErC jpeDyHxXXetovn/zXcCYgQ2cigvi8xL3P6argY28=
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/http/changelog_23/000000-f80d88@github.com>
Subject: [quicwg/base-drafts] f80d88: HTTP-23 changelog
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/00J5ONg9p-pYA_fwRZIX5tZRdmg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:51:49 -0000

  Branch: refs/heads/http/changelog_23
  Home:   https://github.com/quicwg/base-drafts
  Commit: f80d883bf46de52f4bc68f94b5ed7e3669024a41
      https://github.com/quicwg/base-drafts/commit/f80d883bf46de52f4bc68f94b5ed7e3669024a41
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  HTTP-23 changelog



From nobody Tue Sep 10 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 C619212006B for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:52:49 -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 L4EycRmDN5we for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:52:48 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1AC29120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:52:48 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:52:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155967; bh=2CJlZRwiRi028uIoTQJDJVoJZejIn5GxtWYnOIWlvhY=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=FmuyLzJxC1RvZ4dsG70Ieq1C7b4Wr2Lu3khYQhEg71wel4eaUtKfKD1QWzJPGCR7V +Xcpg7bGQL0OHH7w3fU6iwAJqMiFg21yMPXtCxVidePZ63QJ+Q4nFRNM9ZhfLcnfQS 0FyGw0i34SyWM6ILgQSbXa6J/Z3oy1BeY03sESSY=
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYP7SRXXEIR6HJPCM53QVU47EVBNHHB2USWPE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3017@github.com>
Subject: [quicwg/base-drafts] HTTP-23 changelog (#3017)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d78293f6413f_47523fc34bacd96c1682d8"; 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/Tp7AziX-8GL4t8yYIBIvPPOaXHw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:52:50 -0000

----==_mimepart_5d78293f6413f_47523fc34bacd96c1682d8
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/3017

-- Commit Summary --

  * HTTP-23 changelog

-- File Changes --

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

-- Patch Links --

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

----==_mimepart_5d78293f6413f_47523fc34bacd96c1682d8
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/3017'>https://github.com/quicwg/base-drafts/pull/3017</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>HTTP-23 changelog</li>
</ul>

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

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

----==_mimepart_5d78293f6413f_47523fc34bacd96c1682d8--


From nobody Tue Sep 10 15:53: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 57C6C120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:53: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 ho20o7YwVcmJ for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:53: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 D46A2120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:53:13 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:53:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568155992; bh=B9RUO8Sozwo9T9R10TU8q5ZcpeuPcMjwITWHbfKKIgg=; h=Date:From:To:Subject:From; b=Am2yoLzWIuGN01d6rQc7j5ALhAneELTeASR577tH1Xt65Pyy2vS/qkS66QKk1F0mx 4l8uxxiJ7zOA97KkECcWQlIPE3E3hqtZCDY9re7FE5hrwuVlJTJFkR5nWd+MgEWT6E tO/r8UbeMbPjQKsyo+l/lgkZeIvmZOSMFiJUV/zg=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/2c2719-49a6a0@github.com>
Subject: [quicwg/base-drafts] 49a6a0: Script updating gh-pages from f80d883b. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xsrzLgW-HHbJMqZzaxqYvic5VDY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:53:15 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 49a6a0fe8f8aedd9e42661213de127c13b39f509
      https://github.com/quicwg/base-drafts/commit/49a6a0fe8f8aedd9e42661213de127c13b39f509
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

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



From nobody Tue Sep 10 15: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 57992120859 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:58: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 jatDVSkz5Mob for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:57:58 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DAB4F1208B1 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:57:58 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:57:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568156278; bh=g1UGWOz9/WXKCRwkExHp1mgzg4pCQIaj+fQcUrwoYFY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=sb+NCaApxay24+tJ2WiJsxj5MudoUcVe9zyYD0m1gFHrhQRS9cMISYXwACtiJ5Ubj beHlmZ75yxFTncGQMySoVZhn/LQ1qkrDZ3FfoSx2w9q5BumHWQXjOb25Y31bttKA4Y kq5piuCL9TmzVcecEUPmgO7EIrvaGvIE9YdKh6Ew=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ5372GMK4DRDVHGMV3QVVQNEVBNHHA4JU5FA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/650/530151893@github.com>
In-Reply-To: <quicwg/base-drafts/issues/650@github.com>
References: <quicwg/base-drafts/issues/650@github.com>
Subject: Re: [quicwg/base-drafts] List google QUIC versions (#650)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d782a7637e54_59033f889decd9609931"; 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/u71d3lUCXsulGicNJVW5lQa87is>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:58:06 -0000

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

This is no longer relevant as Google is close to deploying an IETF QUIC draft.

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

<p>This is no longer relevant as Google is close to deploying an IETF QUIC draft.</p>

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


From nobody Tue Sep 10 15:58: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 AF07812085E for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15: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 2BLAgn-gMdKA for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 15:58: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 EDA6E12089F for <quic-issues@ietf.org>; Tue, 10 Sep 2019 15:57:59 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:57:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568156278; bh=ftng0jIbGQ8EjyZVIIXMdn82iXLBtO+GT8RTu4IYR2M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xdN2p/KWhhvq56RkK60kI8drz710vCF/UkeVqTetYwEQzVltzDHVzCzs6/r3KiRRu 6BIn50aykNCIAW3JSKmkekZllWwGvhHGTmHX6Y+BaW/kh9EAU4k5Mzf2NPrgkRO32N i6hkY/R4otINiFx/YvUGc1G1kIaEOSgPPsLDUV2M=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ5372GMK4DRDVHGMV3QVVQNEVBNHHA4JU5FA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/650/issue_event/2623932947@github.com>
In-Reply-To: <quicwg/base-drafts/issues/650@github.com>
References: <quicwg/base-drafts/issues/650@github.com>
Subject: Re: [quicwg/base-drafts] List google QUIC versions (#650)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d782a76df9b1_26b23ff61e0cd95c157380"; 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/34JFyf9Lp9dvkjUnK6BvYTENo2M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 22:58:07 -0000

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

Closed #650.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/650#event-2623932947
----==_mimepart_5d782a76df9b1_26b23ff61e0cd95c157380
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="237411624" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/650" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/650/hovercard" href="https://github.com/quicwg/base-drafts/issues/650">#650</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/650?email_source=notifications&amp;email_token=AFTOJK5VVRBDL3XDJZNBTQLQJAQ7NA5CNFSM4DQBYR62YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRTAUEY#event-2623932947">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7UPC2MYYUBAP4O3ELQJAQ7NANCNFSM4DQBYR6Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6IXIDTKD5A6NVQRFLQJAQ7NA5CNFSM4DQBYR62YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRTAUEY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/650?email_source=notifications\u0026email_token=AFTOJK5VVRBDL3XDJZNBTQLQJAQ7NA5CNFSM4DQBYR62YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRTAUEY#event-2623932947",
"url": "https://github.com/quicwg/base-drafts/issues/650?email_source=notifications\u0026email_token=AFTOJK5VVRBDL3XDJZNBTQLQJAQ7NA5CNFSM4DQBYR62YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRTAUEY#event-2623932947",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d782a76df9b1_26b23ff61e0cd95c157380--


From nobody Tue Sep 10 16:00: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 081801200B7 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:00: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 CEZAW2f166cf for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:00: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 867F012006B for <quic-issues@ietf.org>; Tue, 10 Sep 2019 16:00:00 -0700 (PDT)
Date: Tue, 10 Sep 2019 15:59:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568156399; bh=oVK614rWChPTH1Tvudgrvx3AZ2zbvRRFd2pMtSk0SCo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=R7H4nFPC54uLk43t2oVC8lXktlbxeDm2XhykVmQmqTsB+rw6mbXkf9d60KOApzfIF CJWlLlRQKM9e07ZWgyEs+s8nqK0yQo+0zyRI1oUufQMn3n34jUpM0QPaIEX/5Cp5kw wreacAgcMau9Sx3vEEAIQHChZKT9PRT8BWlSMDP4=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYPMCTBIXBJDIL2CWV3QVVX7EVBNHHB2USWPE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3017/review/286479427@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3017@github.com>
References: <quicwg/base-drafts/pull/3017@github.com>
Subject: Re: [quicwg/base-drafts] HTTP-23 changelog (#3017)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d782aefb08f4_1ae53fc54b4cd95c1126d8"; 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/LzcezhZqJbhsjaD97hRAxTjjNyE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 23:00:02 -0000

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

LPardue approved this pull request.





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

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



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


From nobody Tue Sep 10 16:14: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 1283112006B for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:14: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 1aXrZP9CBkN8 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:14:34 -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 7CC72120013 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 16:14:34 -0700 (PDT)
Date: Tue, 10 Sep 2019 16:14:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568157273; bh=3mgwTweEunLeF5lYqJPTTHx86+tznxXs98heXaG6Wak=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jv/iL8Lq28KVb1U/WFpDifJhgz3BchuNiXKkX3szSWk6b7DdI/bGzcJdxxqwog42B sowleQhLI9PC/AwhgwuEBMR7S0VIxvDImu6zcCR477J+pEvhATmfzUM5dmHQlOkOJ+ VHpMJKU5Gz0hrBeAx6ZlIykY9j9ll1VD3OCvHAs4=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2JXRJ4EEB5E3PYB4V3QVQNTEVBNHHBZ243UA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2992/review/286483236@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2992@github.com>
References: <quicwg/base-drafts/pull/2992@github.com>
Subject: Re: [quicwg/base-drafts] Keys need to be available to QUIC earlier (#2992)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d782e59a0b90_6efb3ff4b7ecd95c65745"; 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/inTlrtGlBuAiiN04_nS428ht7Sk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 23:14:36 -0000

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

kazuho commented on this pull request.

LGTM modulo the nitpick below.

>                                                     Get Handshake
                      <------------- Initial
+Handshake Received
+Install tx Handshake keys

s/Install tx Handshake keys/Install Handshake 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/pull/2992#pullrequestreview-286483236
----==_mimepart_5d782e59a0b90_6efb3ff4b7ecd95c65745
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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

<p>LGTM modulo the nitpick below.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2992#discussion_r323000861">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;                                                     Get Handshake
                      &lt;------------- Initial
+Handshake Received
+Install tx Handshake keys
</pre>
<p>s/Install tx Handshake keys/Install Handshake 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/pull/2992?email_source=notifications&amp;email_token=AFTOJK3Z7OHXZELA4QJ4PR3QJAS5TA5CNFSM4IPO7AWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJWGJA#pullrequestreview-286483236">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6PR4ER3HQIXRQ5IWDQJAS5TANCNFSM4IPO7AWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6EDJ3DCZZDXUWEIO3QJAS5TA5CNFSM4IPO7AWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJWGJA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2992?email_source=notifications\u0026email_token=AFTOJK3Z7OHXZELA4QJ4PR3QJAS5TA5CNFSM4IPO7AWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJWGJA#pullrequestreview-286483236",
"url": "https://github.com/quicwg/base-drafts/pull/2992?email_source=notifications\u0026email_token=AFTOJK3Z7OHXZELA4QJ4PR3QJAS5TA5CNFSM4IPO7AWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJWGJA#pullrequestreview-286483236",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d782e59a0b90_6efb3ff4b7ecd95c65745--


From nobody Tue Sep 10 16:21: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 1BF3712006B for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:21: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 2ndDe9jYyxPp for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:20:58 -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 D1321120013 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 16:20:58 -0700 (PDT)
Date: Tue, 10 Sep 2019 16:20:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568157658; bh=9l7Hkg/VlCsPjmOKKXBhQQNYpFgLVml6oCeYCrGjtCQ=; h=Date:From:To:Subject:From; b=AwENfCB6956aGTLkDio/Nw10LfSLaP6+ep5xi7N2/iEAnHz/VliJbpt5F3S/6bXLI /aru2HrfFmILpE4j1l6BCcT9raEsAPaGMfveERCW27HLzOLtF9+9X86+1r8KkCkrMO RHA8oo3x8xoZl+bji72mdWcLN8bHYs58WBIFibN0=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-recovery-changelog/000000-c3a6f9@github.com>
Subject: [quicwg/base-drafts] c3a6f9: Recovery Changelog
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/aEmMBpB4SRXO3mGjyoXx07L8tPM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 23:21:00 -0000

  Branch: refs/heads/ianswett-recovery-changelog
  Home:   https://github.com/quicwg/base-drafts
  Commit: c3a6f9f39708d5763f92aa2e135fc67b5d32d26f
      https://github.com/quicwg/base-drafts/commit/c3a6f9f39708d5763f92aa2e135fc67b5d32d26f
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Recovery Changelog



From nobody Tue Sep 10 16: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 5FFDB1200B7 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:21:16 -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 gN1ZT1Axj-3x for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:21: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 C65A212006B for <quic-issues@ietf.org>; Tue, 10 Sep 2019 16:21:14 -0700 (PDT)
Date: Tue, 10 Sep 2019 16:21:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568157674; bh=qf35QiJ/RdOV3Dc1xBlK5uqRFBmwsDnEtchEpWTsc2w=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=x86YVks3YtTkouhJHj343YE3oOX7wT8fht4Cyuooct84xFN/3m6BOU4P7LHKfPKIZ lbsjuOvj2veRSvbC452hhNXL7XbyZ91+qZxyxeKNzQu/qCkxgSnh1QjWgotaoVrSun zUzE7PGxqMWFkLUjB48IZrJPALrZ8flzFZhztepY=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY2BCVIK4JLZ64BSHN3QVYHVEVBNHHB2UTSTY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3018@github.com>
Subject: [quicwg/base-drafts] Recovery Changelog (#3018)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d782fea37d9f_60e63fb4e32cd96814127d"; 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/GYKaEqj1CIWOHFdJnHGv9WFk88s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 23:21:16 -0000

----==_mimepart_5d782fea37d9f_60e63fb4e32cd96814127d
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/3018

-- Commit Summary --

  * Recovery Changelog

-- File Changes --

    M draft-ietf-quic-recovery.md (7)

-- Patch Links --

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

----==_mimepart_5d782fea37d9f_60e63fb4e32cd96814127d
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/3018'>https://github.com/quicwg/base-drafts/pull/3018</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Recovery Changelog</li>
</ul>

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

----==_mimepart_5d782fea37d9f_60e63fb4e32cd96814127d--


From nobody Tue Sep 10 16:21: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 531B312006B for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:21:38 -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 9T7e9mRIhXZJ for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:21: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 D2593120013 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 16:21:36 -0700 (PDT)
Date: Tue, 10 Sep 2019 16:21:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568157695; bh=ofppC1wTqgxO60qDfWOR209XsIR+xQJGMaG1oJx77kI=; h=Date:From:To:Subject:From; b=H48jmcN3wL7HeburWrvxj4PL5OiA3CbarzRZpSH9Yx6VALNnQSiqL9qzbyMqnH6U6 zX5zgDU8h5tC4tnK3g7MkB03X1lRv0PSciC9B2shajSiCHkvmWQLygsV6Ktn+5Jwa+ cNhbcpRO8Clrd9UjhtIR05aqxSaDSekFB7YhmWRM=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-recovery-changelog/c3a6f9-bcbecf@github.com>
Subject: [quicwg/base-drafts] bcbecf: 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/gzrt-oRgC23Vu5qg9NWHVJ6xEtU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 23:21:38 -0000

  Branch: refs/heads/ianswett-recovery-changelog
  Home:   https://github.com/quicwg/base-drafts
  Commit: bcbecf2c96ac99b7bda8e8683af70e7bf1e6d1c9
      https://github.com/quicwg/base-drafts/commit/bcbecf2c96ac99b7bda8e8683af70e7bf1e6d1c9
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

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



From nobody Tue Sep 10 16:21: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 14903120013 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:21: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 FkVaJ66pjqbT for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:21: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 548E612006B for <quic-issues@ietf.org>; Tue, 10 Sep 2019 16:21:44 -0700 (PDT)
Date: Tue, 10 Sep 2019 16:21:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568157703; bh=J/KDHd/VgoSDft2VobjzdAcSKzE5tc2QOjUUjl870uc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=S38rQAupgvAFxT0jjV+KzusNTYJ1kQwGfTsXa9KS8M1DpPMD8b7/baj5G85t6S1j7 FL1RWOzxbKhkeViZmfkMyQXVnI5MZCCclQyK2nn8m17RdAsjLgoj8e4sVbQ9Oy7M7e hIJoOAXy03MoUP4+8+Eo81XWZdUpQ4belbQFIyXc=
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/3018/push/4019476210@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3018@github.com>
References: <quicwg/base-drafts/pull/3018@github.com>
Subject: Re: [quicwg/base-drafts] Recovery Changelog (#3018)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7830078204f_17683fdacb0cd95c1373be"; 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/r3eKSZys_oSpBex2BVBY4GQOsGs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 23:21:46 -0000

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

@ianswett pushed 1 commit.

bcbecf2c96ac99b7bda8e8683af70e7bf1e6d1c9  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/3018/files/c3a6f9f39708d5763f92aa2e135fc67b5d32d26f..bcbecf2c96ac99b7bda8e8683af70e7bf1e6d1c9

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

----==_mimepart_5d7830078204f_17683fdacb0cd95c1373be--


From nobody Tue Sep 10 16:21: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 7A27E12006B for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:21:57 -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 bBQk5FRw9nbx for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:21: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 0C6EC120013 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 16:21:56 -0700 (PDT)
Date: Tue, 10 Sep 2019 16:21:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568157715; bh=ynuKdb+Hda/mvycljv6N6FvdPvsFTS9mE09brYhgmD4=; h=Date:From:To:Subject:From; b=RjgyGXaU3+1EsaeXDhUQyRXyv7bO5ruU8qfUoDL+2XVQG5PCW4pRw13JXFfm4Afdm AQsTfcW2aiC8TYtGkXHFFzrWNf+ol86dCyjlu+s68Hgm/N+9mMgJM8OJsG/glRpaQ6 ewL9gXy3DhHf2uhxMtx52TMjJZJq9Y11jPledjys=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-recovery-changelog/bcbecf-42db62@github.com>
Subject: [quicwg/base-drafts] 42db62: 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/I8o5bvJEXCN0J6ikSz-K2vVFJ00>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 23:21:57 -0000

  Branch: refs/heads/ianswett-recovery-changelog
  Home:   https://github.com/quicwg/base-drafts
  Commit: 42db62060551f933d3b4eb951c02f44d6958f1b3
      https://github.com/quicwg/base-drafts/commit/42db62060551f933d3b4eb951c02f44d6958f1b3
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

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



From nobody Tue Sep 10 16: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 2849512006B for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:22:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.28
X-Spam-Level: 
X-Spam-Status: No, score=-6.28 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, 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 429IURnp6E-Y for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:22: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 7CC85120013 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 16:22:04 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id A01E36E0455 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 16:22:03 -0700 (PDT)
Date: Tue, 10 Sep 2019 16:22:03 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3018/push/4019476904@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3018@github.com>
References: <quicwg/base-drafts/pull/3018@github.com>
Subject: Re: [quicwg/base-drafts] Recovery Changelog (#3018)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d78301b9160e_40fb3fe4148cd95c1579e3"; 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/gWCh71cBVNtXhJbvdMOYV96YN0w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 23:22:06 -0000

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

@ianswett pushed 1 commit.

42db62060551f933d3b4eb951c02f44d6958f1b3  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/3018/files/bcbecf2c96ac99b7bda8e8683af70e7bf1e6d1c9..42db62060551f933d3b4eb951c02f44d6958f1b3

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

----==_mimepart_5d78301b9160e_40fb3fe4148cd95c1579e3--


From nobody Tue Sep 10 16: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 AF2E412006B for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:22: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 aN_5yQ4zk86L for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:22: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 5FD7D120013 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 16:22:13 -0700 (PDT)
Date: Tue, 10 Sep 2019 16:22:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568157732; bh=aQFGVBNNtQX85UK53z6KdE3hS/E1cXDupkeWt5zc3fg=; h=Date:From:To:Subject:From; b=cIBoqARiPfwajc9+w6+H2pXJrOlWBjLZtu4IHILQOAP8o14IHAFGRrVjajEywd3wl qmnyMvjXLkN9WJXf8VntCrqkLQdWRpeUSobTlscnlWIZdm0sHgzyBM3sJzIf63MeqQ Ng8mJx9GoJUTajWXF7N8TeA4F8KY56Em4oVLcGCI=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/49a6a0-6e153a@github.com>
Subject: [quicwg/base-drafts] 6e153a: Script updating gh-pages from bcbecf2c. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/peUAceH6zgxG5UF8gbjvOT4CvwA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 23:22:15 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6e153a752a5653a0214373779523338c61014abb
      https://github.com/quicwg/base-drafts/commit/6e153a752a5653a0214373779523338c61014abb
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

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



From nobody Tue Sep 10 16: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 1244E12006B for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:22: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 mwF2bzpf3kh7 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:22: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 972ED120013 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 16:22:24 -0700 (PDT)
Date: Tue, 10 Sep 2019 16:22:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568157743; bh=0ztbGRF955ThF36wZcGzc1YpO+W6Dgj+jOQbz4HHwIU=; h=Date:From:To:Subject:From; b=zPkAvtOL2W/DvcDb1rbfZtuIXxjtoiL4s9ulZVFXVDRhJNOBybqZABhETuvFh6RRr db82FTO3p/hX0oJ2BJPb6YoDXFloqoWJMKddUBoUHoGFgtb7QwuT+Cqe3D1s0qv1jM 0gM95zs2vVbQSqqJTPrmD/2YC6nCVXGz4Xiazo5Y=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/6e153a-dfc89a@github.com>
Subject: [quicwg/base-drafts] dfc89a: Script updating gh-pages from 42db6206. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1R17M1Kt98koEjcjmzOx58Bco2s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 23:22:26 -0000

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

  Changed paths:
    M index.html

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



From nobody Tue Sep 10 16:30: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 5FBBD12006B for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:30: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, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id pu1Uo5P3_0Km for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:30: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 DDCFE120013 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 16:30:46 -0700 (PDT)
Date: Tue, 10 Sep 2019 16:30:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568158246; bh=UlBHtZ5B3oH4MaA4h/SsNeUnFYJZ8bTCdVlP+qDPfrU=; h=Date:From:To:Subject:From; b=QTreg0bzo1ZDNA0DVfZIRiJDAXEvyP43EeaX/FLZzx4jAryP80jRmb6WSnncjxmbk o0CYHxJDQdM4bhxNgwb7sTVRd6ZIYVX2/FoLjUbhaoTyuqCuGrPNEL1VF5IOxOB6Mz pXk0Jy/zP10onBPXnkjPsSVS3DRjGdg/+j4w1gFQ=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/keys-available-earlier/e6c5d7-a668d5@github.com>
Subject: [quicwg/base-drafts] a668d5: Both read and write for Handshake keys
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Z2DhQ9vipuzQgUWG_C0SonVnYu8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 23:30:48 -0000

  Branch: refs/heads/keys-available-earlier
  Home:   https://github.com/quicwg/base-drafts
  Commit: a668d506e6168a1aa831c0a2cf1f4c1ff9365f87
      https://github.com/quicwg/base-drafts/commit/a668d506e6168a1aa831c0a2cf1f4c1ff9365f87
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  Both read and write for Handshake keys



From nobody Tue Sep 10 16:30: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 5DC93120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:30: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 ve8Tgk08jxlQ for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:30:55 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0F5BF120013 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 16:30:55 -0700 (PDT)
Date: Tue, 10 Sep 2019 16:30:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568158254; bh=wSaEXW/yVKzQfPCicUOrOgBtbeizmbUAy694BdFfESM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=f8iHGA5wlnIYzQKxVUIN9AXXsWl4zFwxojUICaGrb8SCavqWDP3/XA4OM/ljUQBWi 4RNjiiKOejjtciIm2mEy4HRkH+3Q9bFqtF6dnh2fOmYEv5LZdQMVMO8qT0aPa2ZUZc gWUkOTijn2XFn7BUp4S1wbyqv9FG9uNGLtoqkwPg=
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/2992/push/4019496570@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2992@github.com>
References: <quicwg/base-drafts/pull/2992@github.com>
Subject: Re: [quicwg/base-drafts] Keys need to be available to QUIC earlier (#2992)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d78322e31c28_79643ff6adecd964371126"; 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/Y5FedS34YsPQHAMJ1ohJkH6y9c4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 23:30:56 -0000

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

@martinthomson pushed 1 commit.

a668d506e6168a1aa831c0a2cf1f4c1ff9365f87  Both read and write for Handshake keys


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

----==_mimepart_5d78322e31c28_79643ff6adecd964371126
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/a668d506e6168a1aa831c0a2cf1f4c1ff9365f87">a668d50</a>  Both read and write for Handshake keys</li>
</ul>


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

----==_mimepart_5d78322e31c28_79643ff6adecd964371126--


From nobody Tue Sep 10 16:32: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 1C350120074 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:32:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 7OwgNFtTC2wJ for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 16:32:04 -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 CBE99120013 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 16:32:04 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 68695120105 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 16:32:04 -0700 (PDT)
Date: Tue, 10 Sep 2019 16:32:04 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/dfc89a-a98638@github.com>
Subject: [quicwg/base-drafts] a98638: Script updating gh-pages from a668d506. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/o1By-GNS1SWLdU2JERRDjIpOytc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 10 Sep 2019 23:32:06 -0000

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

  Changed paths:
    M index.html
    M keys-available-earlier/draft-ietf-quic-tls.html
    M keys-available-earlier/draft-ietf-quic-tls.txt

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



From nobody Tue Sep 10 17:34: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 E2A9312007A for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 17:34: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 u2LwjLUk06rm for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 17:34:06 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 45BB8120013 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 17:34:06 -0700 (PDT)
Date: Tue, 10 Sep 2019 17:34:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568162045; bh=D1WKZNX8cNiGtWK/fdpQavZU7R0dEq/M/08Ksc36eoM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Nd2r//FFOl+3tB5HtqoMvG7vpzIqugs0YRlzyLa3ZXbtDxVPKBT5O+zMPYnpVzZwW VG/Ny/xxE+6Ad5DCco9d+Eu30CsCYFCOU3veQOhupuBUPUAVC1ETKf9di+SGsOcj/P 2iRclIOKcitYfut5612Q4K8DNsPsENIwv/PmQjXw=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK73RHZITDGP57AWY753QVZX3EVBNHHBZ243UA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2992/review/286503008@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2992@github.com>
References: <quicwg/base-drafts/pull/2992@github.com>
Subject: Re: [quicwg/base-drafts] Keys need to be available to QUIC earlier (#2992)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7840fd6d322_7e673ff7c54cd9642654c"; 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/jJKmu4uzS2D6f8IGVRF50zDQBoA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 00:34:08 -0000

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


From nobody Tue Sep 10 17:47: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 EAE55120232 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 17:47:37 -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 CmScQEXTlbPs for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 17:47: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 3589C12025D for <quic-issues@ietf.org>; Tue, 10 Sep 2019 17:47:36 -0700 (PDT)
Date: Tue, 10 Sep 2019 17:47:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568162855; bh=KzcBsjU5mnMC43T0jRCKVN4itzUJg4NrUJvVXYZan5I=; h=Date:From:To:Subject:From; b=0WQwpqrR+tRP/ztyHKjfqHTlDIcS3qfWMRdDhbPgAjx0JB/i+U6rTQVq/ODcaQML5 YM0qCwMb0DC6hSZHpfq9NQ0S3PZIWD0H6QB3BvyJAnduFVlsJo50+3g26EW8b8k6Kt I6Sf/UxLNdZnUEK3/Zb5VKe1Dz+7M7s7d30whzZM=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/a9aa36-11de39@github.com>
Subject: [quicwg/base-drafts] 3d5e26: Keys need to be available to QUIC earlier
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/hafehJrPd7xqwoHC0B3XdvBAeD8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 00:47:38 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3d5e2692e439f2f488b92bad55f885827d702367
      https://github.com/quicwg/base-drafts/commit/3d5e2692e439f2f488b92bad55f885827d702367
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-08-26 (Mon, 26 Aug 2019)

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

  Log Message:
  -----------
  Keys need to be available to QUIC earlier

...than a TLS stack.  The canonical example being the Handshake keys,
which are needed by a client to acknowledge partial server Handshake
flights.  TLS won't use those keys itself until it has the entire set of
Handshake messages from the server.

In doing this, I decided that it makes sense to reorder the sequence
diagram to show what incoming packets trigger different events.

Closes #2328.


  Commit: e6c5d74fd41b62eab9e8333c89d89b01f5e1fb39
      https://github.com/quicwg/base-drafts/commit/e6c5d74fd41b62eab9e8333c89d89b01f5e1fb39
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  typo


  Commit: a668d506e6168a1aa831c0a2cf1f4c1ff9365f87
      https://github.com/quicwg/base-drafts/commit/a668d506e6168a1aa831c0a2cf1f4c1ff9365f87
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  Both read and write for Handshake keys


  Commit: 11de393fbbde53a5aa6592fe7ed7052ca6bb5574
      https://github.com/quicwg/base-drafts/commit/11de393fbbde53a5aa6592fe7ed7052ca6bb5574
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  Merge pull request #2992 from quicwg/keys-available-earlier

Keys need to be available to QUIC earlier


Compare: https://github.com/quicwg/base-drafts/compare/a9aa362c8b66...11de393fbbde


From nobody Tue Sep 10 17: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 5063612025D for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 17:47: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 n42I4Jylf73q for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 17:47: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 02002120273 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 17:47:37 -0700 (PDT)
Date: Tue, 10 Sep 2019 17:47:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568162856; bh=2gv9MfP2+gLYrnlbmfAZvg0yY4jmc4QlTYqP2KxyOlQ=; h=Date:From:To:Subject:From; b=W7wa95Gb5GAwaA+YzarorJ/7Hlxnccr2QmZafk/QVKIsoET7NaXPuGOJb0pu7k3Uy 8pJN/GYcL+8QKPCr/cKBOWx4ZhAhgRJnJQQ7iIUZN7eEneDmR5ggRn0p8Jakedqucj xhxCosETT8p7McOHMTTX8e2eZxT4t10gVsq3BrFY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/keys-available-earlier/a668d5-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/MwiaWGePqFOwjSnmH-zfn6pY97E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 00:47:38 -0000

  Branch: refs/heads/keys-available-earlier
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue Sep 10 17:47: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 A9141120274 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 17:47:46 -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 9O9qcPyOGWup for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 17:47:44 -0700 (PDT)
Received: from out-13.smtp.github.com (out-13.smtp.github.com [192.30.254.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C3B32120232 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 17:47:44 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 564832615A0 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 17:47:44 -0700 (PDT)
Date: Tue, 10 Sep 2019 17:47:44 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6BZT6OUFQP57SDP653QVUKBEVBNHHBPM5G3I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2328/issue_event/2624079989@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2328@github.com>
References: <quicwg/base-drafts/issues/2328@github.com>
Subject: Re: [quicwg/base-drafts] client's Handshake write key needs to be exported early (#2328)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d784430106db_2d0e3f85708cd96481570"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OmcdDJ2cKDCMbvPJyyqwb0HbM_c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 00:47:47 -0000

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

Closed #2328 via #2992.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/2328#event-2624079989
----==_mimepart_5d784430106db_2d0e3f85708cd96481570
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="397649626" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2328" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2328/hovercard" href="https://github.com/quicwg/base-drafts/issues/2328">#2328</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="485202848" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2992" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2992/hovercard" href="https://github.com/quicwg/base-drafts/pull/2992">#2992</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/2328?email_source=notifications&amp;email_token=AFTOJK4EUKVT6CJQ6SZBQWLQJA53BA5CNFSM4GPCXM22YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRUEQ5I#event-2624079989">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYUUHTP4ZSNPFD4J4DQJA53BANCNFSM4GPCXM2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6J7WPS2BVKT5DDIKLQJA53BA5CNFSM4GPCXM22YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRUEQ5I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/2328?email_source=notifications\u0026email_token=AFTOJK4EUKVT6CJQ6SZBQWLQJA53BA5CNFSM4GPCXM22YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRUEQ5I#event-2624079989",
"url": "https://github.com/quicwg/base-drafts/issues/2328?email_source=notifications\u0026email_token=AFTOJK4EUKVT6CJQ6SZBQWLQJA53BA5CNFSM4GPCXM22YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRUEQ5I#event-2624079989",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d784430106db_2d0e3f85708cd96481570--


From nobody Tue Sep 10 17:47: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 6867112025D for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 17:47: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 UyJqzmDechB2 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 17:47:45 -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 E6BC3120273 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 17:47:44 -0700 (PDT)
Date: Tue, 10 Sep 2019 17:47:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568162863; bh=KUl8Ajsv7ZWB7fYgl1uTbJMPaKIh4eTyhWd6sY4r7XQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JwfbPpHt1Y4Tl20PhNv0ir9NAQODNkGFLxoW/uZpCikhyjmAsr//xRrKtpsgmc4il Gce3BcgXi8vAcaC27E+20Ha2tFS7JTW3GvthEkn9VBXAnQHt7C4eqjRO7KezsCgeCy unZ7WbyYZuYQ/ys2cnbu4/tHBRelpMs3GDDnIi80=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZBXRQHKUGZDZ7PQGF3QVUJ7EVBNHHBZ243UA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2992/issue_event/2624079987@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2992@github.com>
References: <quicwg/base-drafts/pull/2992@github.com>
Subject: Re: [quicwg/base-drafts] Keys need to be available to QUIC earlier (#2992)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d78442fbf354_15733fda8facd95c148545"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vN0s3FABY94ToNi3vH_XFnA5uWw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 00:47:48 -0000

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

Merged #2992 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/2992#event-2624079987
----==_mimepart_5d78442fbf354_15733fda8facd95c148545
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="485202848" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2992" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2992/hovercard" href="https://github.com/quicwg/base-drafts/pull/2992">#2992</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/2992?email_source=notifications&amp;email_token=AFTOJK44MLKDXA7MN4WSF33QJA527A5CNFSM4IPO7AWKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRUEQ4Y#event-2624079987">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2TOUOAORAF7EUBZPLQJA527ANCNFSM4IPO7AWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZG7HEPVLZAKNXFO6DQJA527A5CNFSM4IPO7AWKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRUEQ4Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2992?email_source=notifications\u0026email_token=AFTOJK44MLKDXA7MN4WSF33QJA527A5CNFSM4IPO7AWKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRUEQ4Y#event-2624079987",
"url": "https://github.com/quicwg/base-drafts/pull/2992?email_source=notifications\u0026email_token=AFTOJK44MLKDXA7MN4WSF33QJA527A5CNFSM4IPO7AWKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRUEQ4Y#event-2624079987",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d78442fbf354_15733fda8facd95c148545--


From nobody Tue Sep 10 17:48: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 79D03120232 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 17:48: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 AbXUtIwfgIwR for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 17:48:06 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 069661200E3 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 17:48:06 -0700 (PDT)
Date: Tue, 10 Sep 2019 17:48:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568162885; bh=03rUr5WYbsF60p8WsDzpH9Qgi5O2jPxjz1GRHHljNlA=; h=Date:From:To:Subject:From; b=qSHr09FIvgdFJqmlOhdSTr2TpYJo6SmJabQ3LsmdgCCPwgRT8ZyEm4Bia2ccwbKND bpqdKN7RVmkBiM/KmslAWQQqD0EG9ZNYjL0JCUgw1j5YtPV/2EI6jPqPGUskxwROiz g6D9pC7EQC6QduA8zUh6wNVY8r7XhGBscLbnmhWc=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/a98638-24fd36@github.com>
Subject: [quicwg/base-drafts] 24fd36: Script updating gh-pages from 11de393f. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/m5xRSXzLW-zHaWeM3Ibn6dXYonw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 00:48:08 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 24fd3696437e5cf5c301cd32652b4af3414bba03
      https://github.com/quicwg/base-drafts/commit/24fd3696437e5cf5c301cd32652b4af3414bba03
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-11 (Wed, 11 Sep 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 11de393f. [ci skip]



From nobody Tue Sep 10 18:18: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 EB9B21200E0 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:18: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, 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 TQmblkvevrUI for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:17: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 B0012120274 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 18:17:59 -0700 (PDT)
Date: Tue, 10 Sep 2019 18:17:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568164678; bh=RL2SFgivVGK0/aJYHKuEw43HsRmRrm+f4sxDLyT9R4k=; h=Date:From:To:Subject:From; b=h4OIQ6bwiz5MiLdSD4vOFeWW69dp3tMUbJ2vFSZBXL8Q2uGtBEqqNNtk4/VKl+je4 UzTJ/F+ikUA5Qc/OtRth1Yl4ubnqmcP1/5Ag6oyAho+oL7MIMxHAh/iTH/esjWbp3L PGkU59q6uS59VxuvDvBJ2Wtoo8/PYpJ1Gw6vWtE4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/more2685/bc6ffc-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/5mQyLLZeOAubZVx735fTuMybbic>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 01:18:01 -0000

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


From nobody Tue Sep 10 18:18: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 25FC71200E0 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:18: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 HREuxKovCwRk for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:18: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 A066B120274 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 18:18:23 -0700 (PDT)
Date: Tue, 10 Sep 2019 18:18:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568164703; bh=NLxSIk+OjbaHRjOamOU3Oi9n8Xc25lLtCFwcXFlw+O0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gClxmjal0Pv5VLDEkTGaXoscd3GKJXVUXIgpCqhbPJo+II1URIZ2zEBDBtGT2A6gs amCZiS2xUn4wnKhRIElCTRsbuZ+mv8KXHFz9pyNzcRoANPs/TbAykt/KbvOb9n1+SR PFZVh9/rGzGUFDKa75qto8mfF8Jn1O0K97sU3t3s=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYDSBK67GFMRNKNLVV3QWF67EVBNHHBYD42OI@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/286512217@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_5d784b5fa035_80e3fab58ecd96414783a"; 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/HJ5-7jqjTjHQL5xn7PozBQY9lYQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 01:18:25 -0000

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

janaiyengar commented on this pull request.



> +An endpoint measures the delays intentionally introduced between when an
+ACK-eliciting packet is received and the corresponding acknowledgment is sent.
+The endpoint encodes this delay for the largest acknowledged packet in the
+Ack Delay field of an ACK frame (see Section 19.3). This allows the receiver
+of the ACK to adjust for any intentional delays, which is important for
+delayed acknowledgements, when estimating the path RTT. A packet might be
+held in the OS kernel or elsewhere on the host before being processed.
+An endpoint SHOULD NOT include these unintentional delays when populating
+the Ack Delay field in an ACK frame.
+
+An endpoint MUST NOT excessively delay acknowledgements of ack-eliciting
+packets.  The maximum ack delay is communicated in the max_ack_delay transport
+parameter; see Section 18.1.  max_ack_delay implies an explicit contract:
+an endpoint promises to never delay acknowledgments of an ack-eliciting packet
+by more than the indicated value. If it does, any excess accrues to the RTT
+estimate and could result in spurious retransmissions from the peer.

I think this should have been "delayed retransmissions".

-- 
You are receiving this 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_r323024778
----==_mimepart_5d784b5fa035_80e3fab58ecd96414783a
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/2916#discussion_r323024778">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +An endpoint measures the delays intentionally introduced between when an
+ACK-eliciting packet is received and the corresponding acknowledgment is sent.
+The endpoint encodes this delay for the largest acknowledged packet in the
+Ack Delay field of an ACK frame (see Section 19.3). This allows the receiver
+of the ACK to adjust for any intentional delays, which is important for
+delayed acknowledgements, when estimating the path RTT. A packet might be
+held in the OS kernel or elsewhere on the host before being processed.
+An endpoint SHOULD NOT include these unintentional delays when populating
+the Ack Delay field in an ACK frame.
+
+An endpoint MUST NOT excessively delay acknowledgements of ack-eliciting
+packets.  The maximum ack delay is communicated in the max_ack_delay transport
+parameter; see Section 18.1.  max_ack_delay implies an explicit contract:
+an endpoint promises to never delay acknowledgments of an ack-eliciting packet
+by more than the indicated value. If it does, any excess accrues to the RTT
+estimate and could result in spurious retransmissions from the peer.
</pre>
<p>I think this should have been "delayed retransmissions".</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK6DZHHO567YCUFJ3NDQJBBN7A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJ5IWI#discussion_r323024778">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3WD7GKM7WUVIWZ7CDQJBBN7ANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK76L235A22UPYMMEMLQJBBN7A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJ5IWI.gif" height="1" width="1" 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=AFTOJK6DZHHO567YCUFJ3NDQJBBN7A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJ5IWI#discussion_r323024778",
"url": "https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications\u0026email_token=AFTOJK6DZHHO567YCUFJ3NDQJBBN7A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJ5IWI#discussion_r323024778",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d784b5fa035_80e3fab58ecd96414783a--


From nobody Tue Sep 10 18:31: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 90C1A1200E0 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:31: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 ZBr-faJvwqle for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:31:34 -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 E4355120273 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 18:31:33 -0700 (PDT)
Date: Tue, 10 Sep 2019 18:31:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568165493; bh=4XwneuVPOp+M4Lukl+4z1OpfgZsw2W/3R7PS1mfTMo4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XB8T70hOzbCWzZ05DIN+eXTFKPCABSwVoy7dyRCYCNHCMfLEnAofVvwMZ+wOB0aq7 q3El7o0ePNAqClV2/FWURn6OJk5yMpF1U00fJekuTsW8qFQouVaBDmrR1zvgr5kigW EM30U1EWg/oedvBUaKkrsApnfOOUAaGxGedvTEk8=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7RJJFORYW5F7RLQXN3QVZOJEVBNHHBOTHDPI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2171/issue_event/2624138587@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2171@github.com>
References: <quicwg/base-drafts/issues/2171@github.com>
Subject: Re: [quicwg/base-drafts] ChaCha inputs (#2171)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d784e74e8294_1c023fa9ccacd964159071"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Jnd7PsbFkGEFXjUVLuHfbB0t9l0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 01:31:36 -0000

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

Reopened #2171.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/2171#event-2624138587
----==_mimepart_5d784e74e8294_1c023fa9ccacd964159071
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="390914938" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2171" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2171/hovercard" href="https://github.com/quicwg/base-drafts/issues/2171">#2171</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/2171?email_source=notifications&amp;email_token=AFTOJK3ZECKMFVMR7LC5MRTQJBC7JA5CNFSM4GKKU3K2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRUS2WY#event-2624138587">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2MFBEZCTUQJVW4XVTQJBC7JANCNFSM4GKKU3KQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4DAIV7TAPZTCWKMMDQJBC7JA5CNFSM4GKKU3K2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRUS2WY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/2171?email_source=notifications\u0026email_token=AFTOJK3ZECKMFVMR7LC5MRTQJBC7JA5CNFSM4GKKU3K2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRUS2WY#event-2624138587",
"url": "https://github.com/quicwg/base-drafts/issues/2171?email_source=notifications\u0026email_token=AFTOJK3ZECKMFVMR7LC5MRTQJBC7JA5CNFSM4GKKU3K2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTRUS2WY#event-2624138587",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d784e74e8294_1c023fa9ccacd964159071--


From nobody Tue Sep 10 18: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 9C4CF120273 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:33: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 3OfkhPk7GlDT for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:33: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 78C7E1200E0 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 18:33:13 -0700 (PDT)
Date: Tue, 10 Sep 2019 18:33:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568165592; bh=KXo9W/fNzCR+0nseGk/ZbpbdrqA/QXzDQbo2f2uEQZk=; h=Date:From:To:Subject:From; b=iXj1F1Q/a6I/bxeVkBh3d4W19EPHTWDpvzfXyAR83jjdmhmUWotrj9vzCE9xdf1Z9 BY4+tqb9kdFnzJvqWQyWe02jVK2PMdNwDrRbAdz80XIgZAPj61JwfDbIyFsAONeMb0 Q+RSXicqT5E0jtL6NnqtpboPv3p+OEYSk7c9jqX8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/changelog-tt-23/000000-515185@github.com>
Subject: [quicwg/base-drafts] 515185: Changelog for transport-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/YIIFcEGzTZEEX54XJJtUnWFyP1U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 01:33:14 -0000

  Branch: refs/heads/changelog-tt-23
  Home:   https://github.com/quicwg/base-drafts
  Commit: 515185d51882f5d635471215b54959724ca1015e
      https://github.com/quicwg/base-drafts/commit/515185d51882f5d635471215b54959724ca1015e
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  Changelog for transport-23



From nobody Tue Sep 10 18:34: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 2007B1207FC for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:34:26 -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 kH_pHQmQ84Xd for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:34: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 368B31200E0 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 18:34:24 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 5FB77660056 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 18:34:23 -0700 (PDT)
Date: Tue, 10 Sep 2019 18:34:23 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-generating-acknowledgements/8174d8-b2b2c2@github.com>
Subject: [quicwg/base-drafts] b2b2c2: Addresses comments and some text rework
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/uYqXTrdMbtdbkaeZ81m3t6_RQ1Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 01:34:26 -0000

  Branch: refs/heads/ianswett-generating-acknowledgements
  Home:   https://github.com/quicwg/base-drafts
  Commit: b2b2c22c32e6624cbd8a5b301d4a398953c573fd
      https://github.com/quicwg/base-drafts/commit/b2b2c22c32e6624cbd8a5b301d4a398953c573fd
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Addresses comments and some text rework



From nobody Tue Sep 10 18: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 6FA781200E0 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:34: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 nrZkDE4NzQxA for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:34: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 09A8F120273 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 18:34:26 -0700 (PDT)
Date: Tue, 10 Sep 2019 18:34:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568165665; bh=g3TqT6W3a29ne/XafD6d3eEPi4vCRCVxvTMx6i2J9qg=; h=Date:From:To:Subject:From; b=L1XIaUxUVrShztHsVNc6H6g+79U3kR+iC+M7tiY3aBJn44reL3ptPpsoAy9O55pDW IHFcmqhHcQvEbpXnCJL8rkBX0AgDzt6r31XbC4IvOye3q7ty/AFb9lVePEMvYpvXq7 AL4iU84iR0syQmRPG0f/RJNEqtjzkcnBJCyMYYI4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/24fd36-4b009b@github.com>
Subject: [quicwg/base-drafts] 4b009b: Script updating gh-pages from 515185d5. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/j4zHcJ4_zvLH-WoMxlBqOx8rz9Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 01:34:27 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4b009b38ac23765971317aa337893621538632f2
      https://github.com/quicwg/base-drafts/commit/4b009b38ac23765971317aa337893621538632f2
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

  Changed paths:
    A changelog-tt-23/draft-ietf-quic-http.html
    A changelog-tt-23/draft-ietf-quic-http.txt
    A changelog-tt-23/draft-ietf-quic-invariants.html
    A changelog-tt-23/draft-ietf-quic-invariants.txt
    A changelog-tt-23/draft-ietf-quic-qpack.html
    A changelog-tt-23/draft-ietf-quic-qpack.txt
    A changelog-tt-23/draft-ietf-quic-recovery.html
    A changelog-tt-23/draft-ietf-quic-recovery.txt
    A changelog-tt-23/draft-ietf-quic-tls.html
    A changelog-tt-23/draft-ietf-quic-tls.txt
    A changelog-tt-23/draft-ietf-quic-transport.html
    A changelog-tt-23/draft-ietf-quic-transport.txt
    A changelog-tt-23/index.html
    M index.html

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



From nobody Tue Sep 10 18:34: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 96AB5120273 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:34:33 -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 dQhpYljcLjdq for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:34:32 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2AB331200E0 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 18:34:32 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 610686E0E43 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 18:34:31 -0700 (PDT)
Date: Tue, 10 Sep 2019 18:34:31 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2916/push/4019744806@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_5d784f275292a_70f53fd7bd4cd96428681c"; 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/cXhiji-Mtgb5Gnax7yYCfqt7h8o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 01:34:34 -0000

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

@janaiyengar pushed 1 commit.

b2b2c22c32e6624cbd8a5b301d4a398953c573fd  Addresses comments and some text rework


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2916/files/8174d8c940af257f7b3f38ddf7c64da27e3d9d9e..b2b2c22c32e6624cbd8a5b301d4a398953c573fd

----==_mimepart_5d784f275292a_70f53fd7bd4cd96428681c
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/b2b2c22c32e6624cbd8a5b301d4a398953c573fd">b2b2c22</a>  Addresses comments and some text rework</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#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/8174d8c940af257f7b3f38ddf7c64da27e3d9d9e..b2b2c22c32e6624cbd8a5b301d4a398953c573fd?email_source=notifications&amp;email_token=AFTOJKZQ6XVGBXEHUKXHJOLQJBDKPA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAYTSNZUGQ4DANQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7KPORMQ7AGUT2LIUDQJBDKPANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3L2XETBWZGHTTYFTTQJBDKPA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAYTSNZUGQ4DANQ.gif" height="1" width="1" 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/8174d8c940af257f7b3f38ddf7c64da27e3d9d9e..b2b2c22c32e6624cbd8a5b301d4a398953c573fd?email_source=notifications\u0026email_token=AFTOJKZQ6XVGBXEHUKXHJOLQJBDKPA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAYTSNZUGQ4DANQ",
"url": "https://github.com/quicwg/base-drafts/pull/2916/files/8174d8c940af257f7b3f38ddf7c64da27e3d9d9e..b2b2c22c32e6624cbd8a5b301d4a398953c573fd?email_source=notifications\u0026email_token=AFTOJKZQ6XVGBXEHUKXHJOLQJBDKPA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAYTSNZUGQ4DANQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d784f275292a_70f53fd7bd4cd96428681c--


From nobody Tue Sep 10 18:35: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 4A17E120801 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:35: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 ag1PfkwHkcYL for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:35:54 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0D7211200E0 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 18:35:54 -0700 (PDT)
Date: Tue, 10 Sep 2019 18:35:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568165753; bh=cXkD3OhbyH/SL0ZmuiLTpyS7mpo1rbwfQwJaOFK8qDY=; h=Date:From:To:Subject:From; b=uA0BHS29CXolezZiwgSct/qrkPvhVqNJF1n/CjiHvWHlblAjsSiSmYpEMI+p2YYdb VxTOqsD0lMKCEroBObFv+gp3T4Vmi3/C+ng+Fq+L8wxzi1yIVgJUgPWhp+ILDhcwIr HLK6tI3Ym1wiCcCt/7vdawxpTG9LVUxQfFic3VZs=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/4b009b-5a9712@github.com>
Subject: [quicwg/base-drafts] 5a9712: Script updating gh-pages from b2b2c22c. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/TmHh_KA_tgqRBn9VpstoT8sAskw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 01:35:55 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5a9712a758552984574b7d0022390b19f41d5693
      https://github.com/quicwg/base-drafts/commit/5a9712a758552984574b7d0022390b19f41d5693
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

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



From nobody Tue Sep 10 18:39: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 092EE120801 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:39:49 -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, 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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id noF6j4qz5-Vq for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:39: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 564D71200E0 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 18:39:46 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 96FB12C3223 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 18:39:45 -0700 (PDT)
Date: Tue, 10 Sep 2019 18:39:45 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3JO5ZE2XN5YQMD3YV3QV2NDEVBNHHB2UXKPQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3019@github.com>
Subject: [quicwg/base-drafts] Changelog for transport-23 (#3019)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d78506188950_64eb3f94768cd9681916ab"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/YuL1JLRpUXZinkwpEZdu6cz2zGU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 01:39:49 -0000

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

Someone already did TLS for me.

I put the major wire-format change first.  ekr likes the idea of marking such things as &quot;special&quot;, but I don&#39;t subscribe to that theory.  This is all important.
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Changelog for transport-23

-- File Changes --

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

-- Patch Links --

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

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

<p>Someone already did TLS for me.</p>
<p>I put the major wire-format change first.  ekr likes the idea of marking such things as "special", but I don't subscribe to that theory.  This is all important.</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/3019'>https://github.com/quicwg/base-drafts/pull/3019</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Changelog for transport-23</li>
</ul>

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

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

----==_mimepart_5d78506188950_64eb3f94768cd9681916ab--


From nobody Tue Sep 10 18:45: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 F3F12120273 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:45: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 yuynyW7C5hfl for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:45:54 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C44191200E0 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 18:45:54 -0700 (PDT)
Date: Tue, 10 Sep 2019 18:45:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568166354; bh=TVAZgMwI2uaoK0J+8gcmXfHpplmlgr3KeeaxcnNvCLE=; h=Date:From:To:Subject:From; b=nmQrZK/Y4rglj6oITBvcI6/5BaabFRFNHQ7YVhID7pUdNCTYfsO8r6eNxSXGuDQ0D 5YaMkzSDoI3d9RmPud3QWOVQ8ct6p29/r342fvrj8wFT/6k40eaSR7BstCtC+gLWaI lY14CGoHDYreDboPdSVsYCKUNfhO1SckcLlKUtKw=
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-generating-acknowledgements/b2b2c2-869929@github.com>
Subject: [quicwg/base-drafts] 869929: re-adding (with some rework) text that was dropped...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9e5yljZaTQLc5okZE7g6GIa3Qak>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 01:45:56 -0000

  Branch: refs/heads/ianswett-generating-acknowledgements
  Home:   https://github.com/quicwg/base-drafts
  Commit: 86992963effb71a0bb6eeca65f2a1a3d70408c42
      https://github.com/quicwg/base-drafts/commit/86992963effb71a0bb6eeca65f2a1a3d70408c42
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  re-adding (with some rework) text that was dropped inadvertently



From nobody Tue Sep 10 18:46: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 4E64E120273 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:46:04 -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 PpJNri2i5dwW for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:46: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 9F85F1200E0 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 18:46:02 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 102548C0840 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 18:46:02 -0700 (PDT)
Date: Tue, 10 Sep 2019 18:46:02 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2916/push/4019768642@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_5d7851dabd0_64f13f94768cd96816670"; 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/CcT3-0AEnnqjmoKxy0wapjlwAAo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 01:46:04 -0000

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

@janaiyengar pushed 1 commit.

86992963effb71a0bb6eeca65f2a1a3d70408c42  re-adding (with some rework) text that was dropped inadvertently


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2916/files/b2b2c22c32e6624cbd8a5b301d4a398953c573fd..86992963effb71a0bb6eeca65f2a1a3d70408c42

----==_mimepart_5d7851dabd0_64f13f94768cd96816670
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/86992963effb71a0bb6eeca65f2a1a3d70408c42">8699296</a>  re-adding (with some rework) text that was dropped inadvertently</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#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/b2b2c22c32e6624cbd8a5b301d4a398953c573fd..86992963effb71a0bb6eeca65f2a1a3d70408c42?email_source=notifications&amp;email_token=AFTOJK76YTWVMTHJCDIVNF3QJBEVVA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAYTSNZWHA3DIMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2VIY732IT6YA2JC73QJBEVVANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZPFVQMQ3LR7TO3ZALQJBEVVA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAYTSNZWHA3DIMQ.gif" height="1" width="1" 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/b2b2c22c32e6624cbd8a5b301d4a398953c573fd..86992963effb71a0bb6eeca65f2a1a3d70408c42?email_source=notifications\u0026email_token=AFTOJK76YTWVMTHJCDIVNF3QJBEVVA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAYTSNZWHA3DIMQ",
"url": "https://github.com/quicwg/base-drafts/pull/2916/files/b2b2c22c32e6624cbd8a5b301d4a398953c573fd..86992963effb71a0bb6eeca65f2a1a3d70408c42?email_source=notifications\u0026email_token=AFTOJK76YTWVMTHJCDIVNF3QJBEVVA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAYTSNZWHA3DIMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d7851dabd0_64f13f94768cd96816670--


From nobody Tue Sep 10 18: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 B1920120273 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18: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 U4GgmbDMDkrz for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:47: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 24CBE1200E0 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 18:47:17 -0700 (PDT)
Date: Tue, 10 Sep 2019 18:47:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568166436; bh=cZD6aQBuAKa3AKIQnacrrRzAYV6LN0zqQ6R0uIYybkQ=; h=Date:From:To:Subject:From; b=Y6x+4kaRNqvDB+imOTWI1jno8c4Ou3x7fbTK8o/hnpOXXC/I+bbGeFF65+QF4Tc9b 9XVdgnU4I7tBInNgNrXFTKBzImoRTAcCt3jnXrDo2ubQ7J8rY7U3I+F/PmxUyaT1M2 pdYl+Uw9XR64yUC7R+PshcrRx9rkI2uR6nSqz2M8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/5a9712-077656@github.com>
Subject: [quicwg/base-drafts] 077656: Script updating gh-pages from 86992963. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lB56OEHm84-hnq6Dd_K_AJAcyNM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 01:47:19 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 077656dc85796b62ec2121f6bde943564d9b8b36
      https://github.com/quicwg/base-drafts/commit/077656dc85796b62ec2121f6bde943564d9b8b36
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

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



From nobody Tue Sep 10 18:50: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 5D0D71200E0 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:50: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 Q_zEKOq7Z7Dl for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:50: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 86268120804 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 18:50:01 -0700 (PDT)
Date: Tue, 10 Sep 2019 18:50:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568166600; bh=Iha2d5uNsRH1JvkC1aUuQDMhHcXOJyYXm8sRMkeKaHM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=09S7ogrGa1tBjxB/krWOhpLJeSScjBwLD3roWXiemNcaV8+oNqKGm0hcahvFooXs/ kBBOHwl5lPTnPr9COPqZXJVEXEEniuaCPpelUIeXGD0/+gB3WrDZaKk1i/wxKGpmsA 8rfZheEd9AblqM7la5w5lTB2NLml+W/g7Cp2Sk68=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4UHYUD3PGVVAQIAMN3QWCUREVBNHHBOTHDPI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2171/530185207@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2171@github.com>
References: <quicwg/base-drafts/issues/2171@github.com>
Subject: Re: [quicwg/base-drafts] ChaCha inputs (#2171)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7852c8d9ee5_49b13fabe0acd96c361573"; 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/vFOFxVpJkZJlH9oLIHpl3jWKLiI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 01:50:03 -0000

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

I understand and appreciate this being marked as =E2=80=9Cdesign=E2=80=9D=
, though I consider the text that landed in master as editorial, as it (i=
n my view) ended as adding practical advice while retaining the definitio=
n we have had.=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/2171#issuecomment-530185207=

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

<p>I understand and appreciate this being marked as =E2=80=9Cdesign=E2=80=
=9D, though I consider the text that landed in master as editorial, as it=
 (in my view) ended as adding practical advice while retaining the defini=
tion we have had.</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/2171?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK4M7E6NMYU66LJ5DPDQJBFERA5CNFSM4GKKU3K2YY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6M7X5Y#issuecomment-530185207">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJKZG4TDVUEOK7UVZ5J3QJBFERANCNFSM4GKKU3KQ">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJK4BCGRH3I6TRX4QG6LQ=
JBFERA5CNFSM4GKKU3K2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD6M7X5Y.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/2171?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK4M7E6NMYU66LJ5DPDQJBFERA5CNFSM4=
GKKU3K2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6M7X5=
Y#issuecomment-530185207",=0D
"url": "https://github.com/quicwg/base-drafts/issues/2171?email_source=3D=
notifications\u0026email_token=3DAFTOJK4M7E6NMYU66LJ5DPDQJBFERA5CNFSM4GKK=
U3K2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6M7X5Y#i=
ssuecomment-530185207",=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_5d7852c8d9ee5_49b13fabe0acd96c361573--


From nobody Tue Sep 10 18: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 99E251207FE for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:56: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 PUxKvHLJ5IrV for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:56: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 56D8A120273 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 18:56:16 -0700 (PDT)
Date: Tue, 10 Sep 2019 18:56:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568166975; bh=dYahWzfqR+aSLj9VFey8N7aRPPq3OSQ5KasPtvq4jvE=; h=Date:From:To:Subject:From; b=CpyI/jKwPLlfG8AuVGAf6p8gKv0Be4V9+RvAQjDN8aj4fWuRBlY2HbwvnEiRs6o0B Emhp2mOt8hdlNIaN52+UqQ41dC7sOf0UkCmYtrHQVMQ9QBW3veuCLRjodWzneuW/CJ 0lKt6exxlNnxx35zFqFHvqoscU8Ka7/9hxOkyqvE=
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-generating-acknowledgements/869929-55f1ad@github.com>
Subject: [quicwg/base-drafts] 812ced: 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/4fLNHtAfDuUZ--3vLewv8ryHXB4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 01:56:19 -0000

  Branch: refs/heads/ianswett-generating-acknowledgements
  Home:   https://github.com/quicwg/base-drafts
  Commit: 812ced0d74615a9483a593a08b73e406503d2fed
      https://github.com/quicwg/base-drafts/commit/812ced0d74615a9483a593a08b73e406503d2fed
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Move Generating Acknowledgements to Transport


  Commit: f8fc854dc84230cb001eb6f17d8902e1f3fcda95
      https://github.com/quicwg/base-drafts/commit/f8fc854dc84230cb001eb6f17d8902e1f3fcda95
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 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.


  Commit: cfab7ed02da1122be8ff076ea86b6c894e806477
      https://github.com/quicwg/base-drafts/commit/cfab7ed02da1122be8ff076ea86b6c894e806477
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 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


  Commit: 4ac701ed78400ab797ec6d128863478a984501d7
      https://github.com/quicwg/base-drafts/commit/4ac701ed78400ab797ec6d128863478a984501d7
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Stop referencing QUIC Transport

in QUIC Transport.


  Commit: 862bcd3f64a31af9cba383b1d5487b2bc6071fc2
      https://github.com/quicwg/base-drafts/commit/862bcd3f64a31af9cba383b1d5487b2bc6071fc2
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 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.


  Commit: f364aab2cc25702d06509d3c83acdff00d8f0045
      https://github.com/quicwg/base-drafts/commit/f364aab2cc25702d06509d3c83acdff00d8f0045
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Stop referencing host-delay in Recovery

Instead reference section 13.2 of transport


  Commit: 50f2a55bdf2e90740eb042e56978aa3c378aa8f3
      https://github.com/quicwg/base-drafts/commit/50f2a55bdf2e90740eb042e56978aa3c378aa8f3
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Fix CircleCI (hopefully)

By renaming "ACK Ranges" to "Managing ACK Ranges"


  Commit: eed60b25cea7f4b9a0391256ed4dfd4a5cf38565
      https://github.com/quicwg/base-drafts/commit/eed60b25cea7f4b9a0391256ed4dfd4a5cf38565
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

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


  Commit: 67ece93dc91c24be2646e05d8bac4ea444c7f0b1
      https://github.com/quicwg/base-drafts/commit/67ece93dc91c24be2646e05d8bac4ea444c7f0b1
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 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: 6ff4cc0f6f62d2c3f53df957ef6bc5c7ec26c998
      https://github.com/quicwg/base-drafts/commit/6ff4cc0f6f62d2c3f53df957ef6bc5c7ec26c998
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 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: 1a07dcd794a4427518150d2bc47dc4e81568f7d5
      https://github.com/quicwg/base-drafts/commit/1a07dcd794a4427518150d2bc47dc4e81568f7d5
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 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: ce3c950b0e4c1a0cf423b70b68f701d63072ce5c
      https://github.com/quicwg/base-drafts/commit/ce3c950b0e4c1a0cf423b70b68f701d63072ce5c
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 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: d77285c9c7d2887d26e636a412262fef97c16fc4
      https://github.com/quicwg/base-drafts/commit/d77285c9c7d2887d26e636a412262fef97c16fc4
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 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: 19df21525bf3eff2834c5e119d496c258777f5a5
      https://github.com/quicwg/base-drafts/commit/19df21525bf3eff2834c5e119d496c258777f5a5
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Addresses comments and some text rework


  Commit: 55f1ad92f03dfb96d7c07e6e8550faf4f6285399
      https://github.com/quicwg/base-drafts/commit/55f1ad92f03dfb96d7c07e6e8550faf4f6285399
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  re-adding (with some rework) text that was dropped inadvertently


Compare: https://github.com/quicwg/base-drafts/compare/86992963effb...55f1ad92f03d


From nobody Tue Sep 10 18:57: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 8F4A0120273 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:57:13 -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 LKrYxP4dgKNW for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 18:57: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 5B5B41200E0 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 18:57:11 -0700 (PDT)
Date: Tue, 10 Sep 2019 18:57:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568167030; bh=S94Q3mKPqvyr403JwE7rcfz55POrLstKxVwolowrR6I=; h=Date:From:To:Subject:From; b=nP14gaWjlkXedX++ZfjOZVTszHZx8Jqg+OTutJlXVvxnJZl6WIWRgk2K1Dw6icbz8 vB6W+vZNklnhvecsWzzEbpRn5L9buk4FLEq8H/9OPq86lFaIWPHIdgQHC3xc4DcJzA zUberOcZ52rYU8prvMlB9MkuhJ9BLs7jwVqEeLxQ=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/077656-3bede6@github.com>
Subject: [quicwg/base-drafts] 3bede6: Script updating gh-pages from 55f1ad92. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HrMItzQj2kgQwqDC-FrQrra0PHI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 01:57:14 -0000

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

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

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



From nobody Tue Sep 10 19:03: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 6BC1B1200E0 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:03: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 cXHqGtr13lER for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:03: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 E37CC120088 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 19:03:07 -0700 (PDT)
Date: Tue, 10 Sep 2019 19:03:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568167387; bh=c7hy9gKOFcl5p5shpaMp7lB9XDxUTI7O0lcm+ZZhjX4=; h=Date:From:To:Subject:From; b=JjwGoxzEjBGbD4NW05GkV83jt3fIFg3X5ajaUdzJ4efJaCxhVSfOJiSfSDnFocNXF zgre65nfyqFNZv0A8Ngn+jmTDslTxT/jcwJ3oWT2MPdHDoiL1C5OWHVRv++lnnjdE4 canZtIKYikeGW+KZhB2i7v7KcQHcuY0dVkcDZWvI=
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-generating-acknowledgements/55f1ad-d60f63@github.com>
Subject: [quicwg/base-drafts] d60f63: rebase cleanup
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SWK4Qjmq0Mtii2UFH3DZgIfuoI4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 02:03:10 -0000

  Branch: refs/heads/ianswett-generating-acknowledgements
  Home:   https://github.com/quicwg/base-drafts
  Commit: d60f633a45413a6234a192703a7a9b7d40cf8ec1
      https://github.com/quicwg/base-drafts/commit/d60f633a45413a6234a192703a7a9b7d40cf8ec1
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  rebase cleanup



From nobody Tue Sep 10 19:03: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 E5B4F1200E0 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:03: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 X9uaV1C4zs_i for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:03:15 -0700 (PDT)
Received: from out-14.smtp.github.com (out-14.smtp.github.com [192.30.254.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 71161120088 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 19:03:15 -0700 (PDT)
Date: Tue, 10 Sep 2019 19:03:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568167395; bh=uW+8AMKafGrJFqj84xxURJf2lHgsfkZi2p5C3eqQ0GU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RQP5dBAUobClDb+u1WsPSRLI0FGK8KQnJscZOgJU2y1k1Ou94CFWLaY6y/iAekZBL AsK2ah7GN7e21P2kBf67LnJ0ntoX0RqO9vsWqqfzRxXx9oBPV9QbHQJac9W4jUZ1ry PWEdwd2lP0efbCWvEH8OzdmuugT5Y6fj1Zpw6obY=
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/2916/push/4019804353@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_5d7855e2bbf9a_5853fd2f70cd960927a3"; 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/WFzlBdbqlDI1ouzeV3aEhgNx6Cg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 02:03:17 -0000

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

@janaiyengar pushed 1 commit.

d60f633a45413a6234a192703a7a9b7d40cf8ec1  rebase cleanup


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2916/files/55f1ad92f03dfb96d7c07e6e8550faf4f6285399..d60f633a45413a6234a192703a7a9b7d40cf8ec1

----==_mimepart_5d7855e2bbf9a_5853fd2f70cd960927a3
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/d60f633a45413a6234a192703a7a9b7d40cf8ec1">d60f633</a>  rebase cleanup</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/2916/files/55f1ad92f03dfb96d7c07e6e8550faf4f6285399..d60f633a45413a6234a192703a7a9b7d40cf8ec1?email_source=notifications&amp;email_token=AFTOJK5D23RSJJHCEJK3OYLQJBGWFA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAYTSOBQGQZTKMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2QQFO54EUA43JNG4LQJBGWFANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYSVMRSRGTK5JUEFHLQJBGWFA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAYTSOBQGQZTKMY.gif" height="1" width="1" 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/55f1ad92f03dfb96d7c07e6e8550faf4f6285399..d60f633a45413a6234a192703a7a9b7d40cf8ec1?email_source=notifications\u0026email_token=AFTOJK5D23RSJJHCEJK3OYLQJBGWFA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAYTSOBQGQZTKMY",
"url": "https://github.com/quicwg/base-drafts/pull/2916/files/55f1ad92f03dfb96d7c07e6e8550faf4f6285399..d60f633a45413a6234a192703a7a9b7d40cf8ec1?email_source=notifications\u0026email_token=AFTOJK5D23RSJJHCEJK3OYLQJBGWFA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAYTSOBQGQZTKMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d7855e2bbf9a_5853fd2f70cd960927a3--


From nobody Tue Sep 10 19:03: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 1338D120273 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19: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 UqrTR-u0e8hs for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:03: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 A42E7120088 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 19:03:38 -0700 (PDT)
Date: Tue, 10 Sep 2019 19:03:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568167417; bh=OyKPnunbhTgAjPHoPqlP9Jpz6tJvi4oUJ71u+dcObI0=; h=Date:From:To:Subject:From; b=eUOQYnW/4kTLBLVNp9fiALxX5XSEwlFD2c8bFk+PruvRqknHET0DuHymikP7RKh7p BRMfd33bFUwhO1CxzVDG23ZBh3ClsxPIrSqbzTvUUdMnj1grHwKXgGmiVjL7Inyu+l FUiGYpsgV1XkvROBDF5i4Ty/lnMesUns3lw8xplc=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/3bede6-1aa329@github.com>
Subject: [quicwg/base-drafts] 1aa329: Script updating gh-pages from d60f633a. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/IHwEn2u41NKlm-3-6762WzWdcrs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 02:03:40 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1aa329537ae01876dd7ed26f66849729c7e4732f
      https://github.com/quicwg/base-drafts/commit/1aa329537ae01876dd7ed26f66849729c7e4732f
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

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



From nobody Tue Sep 10 19:03: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 5FFB0120088 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:03: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 jgXV-KqJxKdb for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:03:44 -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 CB18B1200E0 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 19:03:44 -0700 (PDT)
Date: Tue, 10 Sep 2019 19:03:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568167424; bh=DD6DtHFbwIeiX04EJHAT+1m0DeGfKyyVXVY03zDKev0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=keT3u+WzyjITrGoD7q5OgnjEBCplINJOrz0nzx+P4tNegDxARqcPWmSbEUPWvwIag 23ObQdxgjGzz3uM6CEiGaTTTW5v5Ev43NtAx+E4JISjK9boW27jXQYIFmvr2tLB83R XyozslJASKwh3tvTxUaUdh0OqQ08t0vIOjcynN3s=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5DQG3J4Z7CK5FI2B53QWLJBEVBNHHBYD42OI@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/c530187964@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_5d7856003987c_1de53f848eacd96853679"; 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/qTOxKTXB3zQWh82VkwCWgPgplL8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 02:03:46 -0000

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

Ok, I've addressed comments and rebased, PTAL.

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

<p>Ok, I've addressed comments and rebased, PTAL.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJKY5BAJKKFUJWRC6GDTQJBGYBA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6NANPA#issuecomment-530187964">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4FGQHBXHANVQ6UUFDQJBGYBANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZI4MBJFUGAGHYQSL3QJBGYBA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6NANPA.gif" height="1" width="1" 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=AFTOJKY5BAJKKFUJWRC6GDTQJBGYBA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6NANPA#issuecomment-530187964",
"url": "https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications\u0026email_token=AFTOJKY5BAJKKFUJWRC6GDTQJBGYBA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6NANPA#issuecomment-530187964",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7856003987c_1de53f848eacd96853679--


From nobody Tue Sep 10 19:04: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 BF4731200E0 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:04: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 UEZbLW3hLvFV for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:04: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 2E150120273 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 19:04:10 -0700 (PDT)
Date: Tue, 10 Sep 2019 19:04:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568167449; bh=07Bk6AFw4Eg09v8lGl80rZp1cBZktRyTveIEjLpMTi0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0oAWJ1ya/j+jkQhp/JiCtqgdVtoMsDsvdRO+m7qSbq9F4y9ufDT654mqF0AFc/a4z cpL8WtC8HSQirEMpw33hOwWSZqUHAVcT3EJRvvFXj0ywi9vgcrjkTiay/D5bW+efaC M1EKogU7cKkE9fcdMETx4ZeSJ2dB6VO91+8ypmzE=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZA3SBRNZ3ZSXNYG2N3QWLKTEVBNHHBYD42OI@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/c530188067@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_5d7856194e39a_22af3fe28d2cd968671ad"; 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/sa1FOc56pkzfSMCV47x3TQdJQWg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 02:04:12 -0000

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

@martinthomson, PTAL.

-- 
You are receiving this 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#issuecomment-530188067
----==_mimepart_5d7856194e39a_22af3fe28d2cd968671ad
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>, PTAL.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK3C4ZQCKJL27ISGKWLQJBGZTA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6NAOIY#issuecomment-530188067">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZVN62SP5GT5HFFR3DQJBGZTANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7ZZH3MHLVSOTLZSG3QJBGZTA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6NAOIY.gif" height="1" width="1" 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=AFTOJK3C4ZQCKJL27ISGKWLQJBGZTA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6NAOIY#issuecomment-530188067",
"url": "https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications\u0026email_token=AFTOJK3C4ZQCKJL27ISGKWLQJBGZTA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6NAOIY#issuecomment-530188067",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7856194e39a_22af3fe28d2cd968671ad--


From nobody Tue Sep 10 19: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 B618E1200E0 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:06:30 -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 wKt1pnl5mUUd for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:06: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 03CAA1200C4 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 19:06:29 -0700 (PDT)
Date: Tue, 10 Sep 2019 19:06:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568167588; bh=6gth0C8TjUx5sty9xcXkTiZZ1VcKbaNgjXcUG4IikGU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kTOelheON2tPRRgUr5hNK3s2ZlSQ2iMx453HA0Menk8q7b7TvzUEGT9efagO/2HG0 zXjVI+yxJIyMxego65t0RQ/PWhvqlVRjmq6zeoIpUpgSvhutiO2k5QADrzP36H2/6E O9TmP1eNYjWR5ErTwnU3JURBg512H6eU14u95ZOg=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2INME5AVIFQDG623V3QWLTJEVBNHHB2UTSTY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3018/review/286522150@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3018@github.com>
References: <quicwg/base-drafts/pull/3018@github.com>
Subject: Re: [quicwg/base-drafts] Recovery Changelog (#3018)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7856a41134b_3d563fb3aa4cd964151220"; 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/HyjZy9YGLs1qVsT55c-A8rFNg5g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 02:06:31 -0000

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

janaiyengar commented on this pull request.



> @@ -1496,6 +1496,11 @@ Invoked from DetectLostPackets when packets are deemed lost.
 
 Issue and pull request numbers are listed with a leading octothorp.
 
+## Since draft-ietf-quic-recovery-22
+
+- PTO should always send an ack-eliciting packet (#2895)
+- Unify the Handshake Timer with the PTO timer (#2648, #2658, #2886)
+

(if #2916 gets merged)
- Move ACK generation text to transport draft (#2916)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3018#pullrequestreview-286522150
----==_mimepart_5d7856a41134b_3d563fb3aa4cd964151220
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/3018#discussion_r323032897">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1496,6 +1496,11 @@ Invoked from DetectLostPackets when packets are deemed lost.
 
 Issue and pull request numbers are listed with a leading octothorp.
 
+## Since draft-ietf-quic-recovery-22
+
+- PTO should always send an ack-eliciting packet (#2895)
+- Unify the Handshake Timer with the PTO timer (#2648, #2658, #2886)
+
</pre>
<p>(if <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="470784626" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2916" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2916/hovercard" href="https://github.com/quicwg/base-drafts/pull/2916">#2916</a> gets merged)</p>
<ul>
<li>Move ACK generation text to transport draft (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="470784626" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2916" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2916/hovercard" href="https://github.com/quicwg/base-drafts/pull/2916">#2916</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/3018?email_source=notifications&amp;email_token=AFTOJKZVQI3RGAI2YWBMG5DQJBHCJA5CNFSM4IVNRCWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJ7WJQ#pullrequestreview-286522150">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7UFYFENASA4KFBLWLQJBHCJANCNFSM4IVNRCWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4FROLQRR5ZNCZM2X3QJBHCJA5CNFSM4IVNRCWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJ7WJQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3018?email_source=notifications\u0026email_token=AFTOJKZVQI3RGAI2YWBMG5DQJBHCJA5CNFSM4IVNRCWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJ7WJQ#pullrequestreview-286522150",
"url": "https://github.com/quicwg/base-drafts/pull/3018?email_source=notifications\u0026email_token=AFTOJKZVQI3RGAI2YWBMG5DQJBHCJA5CNFSM4IVNRCWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEJ7WJQ#pullrequestreview-286522150",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7856a41134b_3d563fb3aa4cd964151220--


From nobody Tue Sep 10 19:06: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 8FC04120877 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:06: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 QhOi68iBFJlU for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:06: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 59789120879 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 19:06:44 -0700 (PDT)
Date: Tue, 10 Sep 2019 19:06:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568167603; bh=v+QRgUVudAZjKzXGZVOGt4zx78pfAz4faOuWNS0D4wg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RCWXQYrSRi7TfxRlnocl6zxuzUxoxkxB1ny/NnuPKQQroefCqiJOuQYCiiiUYMB4Z 4OrNLYOPg4R44TQijlMSfEmohtFBajvej+FiK+qYA90EjaN5eXovGr4HspLXvlj404 DGvyHzLndnupowN4Fa8iM7aH7NrA18ScNzp0PWQU=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5TPYQ7OLX3E7V5OOF3QV5SHEVBNHHBOTHDPI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2171/530188598@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2171@github.com>
References: <quicwg/base-drafts/issues/2171@github.com>
Subject: Re: [quicwg/base-drafts] ChaCha inputs (#2171)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7856b39d688_4c523f7f0eacd95c186410"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/uRHmQ3htcRELRNs0SOCp0dJ1Z8Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 02:06:53 -0000

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

Yes, but as a design issue, we want to confirm that "no action" is the correct outcome.  It's cheap enough to do so.

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

<p>Yes, but as a design issue, we want to confirm that "no action" is the correct outcome.  It's cheap enough to do so.</p>

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


From nobody Tue Sep 10 19:07: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 19C61120273 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:07: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 uU0pey1HeyNl for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:07:00 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B52311200C4 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 19:07:00 -0700 (PDT)
Date: Tue, 10 Sep 2019 19:06:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568167619; bh=dKX62Kh+KW1WyESkE7Np+OmJPBQW339rRoFG7kraOFU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QVMU67fGASRo4kqKDDqpWO9fQAQS+/icletnY8u8PQEiahzakx0ISXSBlBHPCsuFF tUWGogwq4S1GxAxpPEwhZVfAi38L6Akzf0IqUWOGNWciVfwUqptGcVkw+rDLn5O1/8 VW0TMv10Ae1ryfDImDn303Psf5Oeys/4cDy2L4Ys=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2FEBBAJARJ2WSF7R53QWLVHEVBNHHB2UTSTY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3018/review/286522254@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3018@github.com>
References: <quicwg/base-drafts/pull/3018@github.com>
Subject: Re: [quicwg/base-drafts] Recovery Changelog (#3018)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7856c3b2d60_cc83fd623acd9687568a"; 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/Plu7rZNG3DHB5ug2yxhkVJ23yJg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 02:07:03 -0000

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

janaiyengar approved this pull request.

Wait to see if 2916 lands, otherwise, LGTM



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

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

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


From nobody Tue Sep 10 19: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 619B01207FE for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:25:35 -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 JLuTe-mo9VE5 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:25:33 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5FF0F1200C4 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 19:25:33 -0700 (PDT)
Date: Tue, 10 Sep 2019 19:25:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568168732; bh=5yE7OhftLhR0pFf4rt2qCCZ8lAqnL/QLXyHA0ftm/0w=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QSt5aN1qRBp/uOGgOE7LZUPerMPY5x2Fzgin2sA5qoKSikSXGTOZTDHsrDCf4TA+y Vi+4WLrQ/ATX6A4r4LAsIoz/HM2TPCgPZ5vqMXOS7UWqx+DH6sJN6xlxU4k/wNxy7K zb4PF7qTi6ybN6GDuSgukJKtEPz+5gHtAaEcJux4=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3FLFFGW6JIM3SSZMN3QWN2ZEVBNHHB2UXKPQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3019/review/286525951@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3019@github.com>
References: <quicwg/base-drafts/pull/3019@github.com>
Subject: Re: [quicwg/base-drafts] Changelog for transport-23 (#3019)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d785b1c6d5b3_2a6a3ff1a06cd9609868b"; 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/N2A5sZoXTCKL4X0HWGQPh4seVsY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 02:25:35 -0000

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

janaiyengar commented on this pull request.



> +- A maximum ACK delay of 0 is used for handshake packet number spaces (#2646,
+  #2638)
+- Improved rules for use of congestion control state on new paths (#2685, #2918)
+- PATH_RESPONSE frames are not sent again if lost (#2724, #2729)
+- Removed recommendation to coordinate spin for multiple connections that share
+  a path (#2763, #2882)
+- Allow smaller stateless resets and recommend a smaller minimum on packets
+  that might trigger a stateless reset (#2770, #2869, #2927)
+- Provide guidance around the interface to QUIC as used by application protocols
+  (#2805, #2857)
+- Frames other than STREAM can cause STREAM_LIMIT_ERROR (#2825, #2826)
+- Tighter rules about processing of rejected 0-RTT packets (#2829, #2840, #2841)
+- Explanation of the effect of Retry on 0-RTT packets (#2842, #2852)
+- Cryptographic handshake needs to provide server transport parameter encryption
+  (#2920, #2921)
+

If #2916 is merged,
- Moved guidance around ACK generation from recovery draft to here (#2916).

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3019#pullrequestreview-286525951
----==_mimepart_5d785b1c6d5b3_2a6a3ff1a06cd9609868b
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/3019#discussion_r323035929">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +- A maximum ACK delay of 0 is used for handshake packet number spaces (#2646,
+  #2638)
+- Improved rules for use of congestion control state on new paths (#2685, #2918)
+- PATH_RESPONSE frames are not sent again if lost (#2724, #2729)
+- Removed recommendation to coordinate spin for multiple connections that share
+  a path (#2763, #2882)
+- Allow smaller stateless resets and recommend a smaller minimum on packets
+  that might trigger a stateless reset (#2770, #2869, #2927)
+- Provide guidance around the interface to QUIC as used by application protocols
+  (#2805, #2857)
+- Frames other than STREAM can cause STREAM_LIMIT_ERROR (#2825, #2826)
+- Tighter rules about processing of rejected 0-RTT packets (#2829, #2840, #2841)
+- Explanation of the effect of Retry on 0-RTT packets (#2842, #2852)
+- Cryptographic handshake needs to provide server transport parameter encryption
+  (#2920, #2921)
+
</pre>
<p>If <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="470784626" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2916" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2916/hovercard" href="https://github.com/quicwg/base-drafts/pull/2916">#2916</a> is merged,</p>
<ul>
<li>Moved guidance around ACK generation from recovery draft to here (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="470784626" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2916" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2916/hovercard" href="https://github.com/quicwg/base-drafts/pull/2916">#2916</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/3019?email_source=notifications&amp;email_token=AFTOJK6HQOCTX4QU4RWWGE3QJBJJZA5CNFSM4IVOHKUKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEKAT7Y#pullrequestreview-286525951">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ7MBNTU33XB2JOANLQJBJJZANCNFSM4IVOHKUA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZVYIZ73NDQWQHRLU3QJBJJZA5CNFSM4IVOHKUKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEKAT7Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3019?email_source=notifications\u0026email_token=AFTOJK6HQOCTX4QU4RWWGE3QJBJJZA5CNFSM4IVOHKUKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEKAT7Y#pullrequestreview-286525951",
"url": "https://github.com/quicwg/base-drafts/pull/3019?email_source=notifications\u0026email_token=AFTOJK6HQOCTX4QU4RWWGE3QJBJJZA5CNFSM4IVOHKUKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEKAT7Y#pullrequestreview-286525951",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d785b1c6d5b3_2a6a3ff1a06cd9609868b--


From nobody Tue Sep 10 19: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 771C4120804 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:25: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 lKuAIYXWhJfT for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:25:40 -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 5EC2D1200C4 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 19:25:40 -0700 (PDT)
Date: Tue, 10 Sep 2019 19:25:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568168739; bh=oyabEOFyUfF6echNzT8rMlbX9U7Aca08BXq7b50A6QI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=d9u4LklodAbD6EdKbMfqId9fSSyaORK0Bh3kIb7ImNkR6F5St2q7pjhhMZG5mEIdp w97mGI7rYo5movkCmTluGP2n2a/yVhLfOUZBvdFwj2oqHFWT3rj6adqvDK6e1CsIjn IMEl8gaRBLOBUPE6j03WtrvH8KPT1uHPoV6AGTHE=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2APAQ5QF4FZHOIANV3QWN3HEVBNHHB2UXKPQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3019/review/286525980@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3019@github.com>
References: <quicwg/base-drafts/pull/3019@github.com>
Subject: Re: [quicwg/base-drafts] Changelog for transport-23 (#3019)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d785b2370b44_1df53f848eacd9681187a5"; 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/nFhDZL7Ejmua3mf_uyQLB-eAUSQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 02:25:41 -0000

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


From nobody Tue Sep 10 19:30: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 A68771200C4 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:30: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 Gbrk2LewhmYV for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:30:55 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4EC97120086 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 19:30:55 -0700 (PDT)
Date: Tue, 10 Sep 2019 19:30:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568169054; bh=xZ4nKyML8OeHTel7VrVgMHHBiL942Jou51vtup26omQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RVK36IqxaMmfqiCQKerRiKNubzcdd6ZNWVRdY6qfvXy8O3bX4dMBHsQ7kq1lO6ptx o9aDAOHO/S/Xqe7xCq06zK36fIOoeX8bOcHmTcl+IlGe68RfYmf26bll30BHQXmhnt 4RmGH+OWqtHADfkxyo2J9pepziOgEhQfMv+FGioA=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6HLG6XM7HT57YYCXF3QWHN5EVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/530193705@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d785c5e6fb2a_23ec3fca988cd960325091"; 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/WyOsPQqzzpTj47MXWTifkuBIiZQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 02:30:57 -0000

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

@nibanks 
> I don't think it's a huge requirement that QUIC must be sent over a medium that is checksummed. 

I am not sure. I doubt if it would be practical to suggest the could users to ask their could service provider "are you currently using UDP checksums, and committed to using that in the future?" Also, UDP checksums are rewritten by NAT devices, so there is no way to tell for an endpoint if a UDP packet is (was) protected by the UDP checksum.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-530193705
----==_mimepart_5d785c5e6fb2a_23ec3fca988cd960325091
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></p>
<blockquote>
<p>I don't think it's a huge requirement that QUIC must be sent over a medium that is checksummed.</p>
</blockquote>
<p>I am not sure. I doubt if it would be practical to suggest the could users to ask their could service provider "are you currently using UDP checksums, and committed to using that in the future?" Also, UDP checksums are rewritten by NAT devices, so there is no way to tell for an endpoint if a UDP packet is (was) protected by the UDP checksum.</p>

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


From nobody Tue Sep 10 19: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 0292F120086 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:42: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 cBwCrAHWgi4z for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:42:13 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6B30A1200E6 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 19:42:13 -0700 (PDT)
Date: Tue, 10 Sep 2019 19:42:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568169732; bh=EtHvokqj+aiQLaSs0I4JamVADj9fwq98ygvreOEpURE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=buInakOVuD9XQN9ig5BHiM6GtRzAUvj4Lst1kH91rGqny159TK+tyoPSqj905PoSg CZgavmuwWaJ7+RmWd7985RgvD74gcW+vk+YLhkoVCkhTFITPRAyLt9n1zC6tNbz4zf vJLhJWk3gUgKVTe0kjgET9r8aZtZN5nAshzahSFk=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYT6CCJBVE2LIC5T2N3QWBXJEVBNHHBYD42OI@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/286527818@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_5d785f047c9b4_4c5f3f7f0eacd95c1645be"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bW3TepDnBVRPUPS82fZnd9S503c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 02:42:16 -0000

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

martinthomson approved this pull request.



>  ### Sending ACK Frames
 
-An endpoint sends ACK frames to acknowledge packets it has received and
-processed.
+An ACK frame SHOULD be sent immediately upon receipt of a second ack-eliciting
+packet. Loss detection does not assume that the peer sends an ACK immediately on
+receiving a second ack-eliciting packet.

These are both good and useful statements, but they sort of stand awkwardly next to each other as if they are strangers.

> An endpoint SHOULD immediately send an ACK frame when two ack-eliciting packets have been received without being acknowledged.  Though the algorithms in {{QUIC-RECOVERY}} do not depend on receivers following this guidance, frequent feedback improves loss and congestion response.

I tried to say something about the fact that this also provides some assurances about acknowledgement behaviour that senders could use when innovating with new algorithms, but it ended up being quite hard to do that without distracting too much from the core purpose of the section.  Also, the SHOULD got in the way: there is no real assurance, there we have to rely on the fact that this is a good recommendation that most deployments will likely respect.


> @@ -3020,9 +3059,34 @@ This ensures an acknowledgment is sent at least once per RTT when packets
 needing acknowledgement are received.  The sender can use the receiver's
 `max_ack_delay` value in determining timeouts for timer-based retransmission.
 
-Strategies and implications of the frequency of generating acknowledgments are
-discussed in more detail in {{QUIC-RECOVERY}}.
+### Managing ACK Ranges
+
+When an ACK frame is sent, one or more ranges of acknowledged packets are
+included.  Including older packets reduces the chance of spurious retransmits
+caused by losing previously sent ACK frames, at the cost of larger ACK frames.
+
+ACK frames SHOULD always acknowledge the most recently received packets, and the
+more out-of-order the packets are, the more important it is to send an updated
+ACK frame quickly, to prevent the peer from declaring a packet as lost and
+spuriously retransmitting the frames it contains.
+
+Below is one recommended approach for determining what packets to include in an

"Below" is a little imprecise.  Is this the next section, or next several sections?

```suggestion
{{ack-tracking}} and {{ack-limiting}} describe an exemplary approach for determining what packets to acknowledge in each
```

>  
+### Receiver Tracking of ACK Frames

```suggestion
### Receiver Tracking of ACK Frames {#ack-tracking}
```

>  
+### Receiver Tracking of ACK Frames
+
+When a packet containing an ACK frame is sent, the largest acknowledged in that
+frame may be saved.  When a packet containing an ACK frame is acknowledged, the
+receiver can stop acknowledging packets less than or equal to the largest
+acknowledged in the sent ACK frame.
+
+In cases without ACK frame loss, this algorithm allows for a minimum of 1 RTT
+of reordering. In cases with ACK frame loss and reordering, this approach does
+not guarantee that every acknowledgement is seen by the sender before it is no
+longer included in the ACK frame. Packets could be received out of order and
+all subsequent ACK frames containing them could be lost. In this case, the
+loss recovery algorithm could cause spurious retransmits, but the sender will
+continue making forward progress.
 
 ### Limiting ACK Ranges

```suggestion
### Limiting ACK Ranges {#ack-limiting}
```

> +### Measuring and Reporting Host Delay {#host-delay}
+
+An endpoint measures the delays intentionally introduced between when an
+ACK-eliciting packet is received and the corresponding acknowledgment is sent.
+The endpoint encodes this delay for the largest acknowledged packet in the Ack
+Delay field of an ACK frame (see {{frame-ack}}). This allows the receiver of the
+ACK to adjust for any intentional delays, which is important for getting a
+better estimate of the path RTT when acknowledgments are delayed. A packet might
+be held in the OS kernel or elsewhere on the host before being processed.  An
+endpoint MUST NOT include delays that is does not control when populating the
+Ack Delay field in an ACK frame.
+
+An endpoint MUST NOT excessively delay acknowledgements of ack-eliciting
+packets.  An endpoint commits to a maximum delay using the max_ack_delay
+transport parameter; see {{transport-parameter-definitions}}.  max_ack_delay
+implies an explicit contract: an endpoint promises to never delay

implies explicit is odd:

```suggestion
declares an explicit contract: an endpoint promises to never delay
```

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

<p><b>@martinthomson</b> approved this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2916#discussi=
on_r323037428">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  ### Sending ACK Frames=0D
 =0D
-An endpoint sends ACK frames to acknowledge packets it has received and=0D=

-processed.=0D
+An ACK frame SHOULD be sent immediately upon receipt of a second ack-eli=
citing=0D
+packet. Loss detection does not assume that the peer sends an ACK immedi=
ately on=0D
+receiving a second ack-eliciting packet.=0D
</pre>=0D
<p>These are both good and useful statements, but they sort of stand awkw=
ardly next to each other as if they are strangers.</p>=0D
<blockquote>=0D
<p>An endpoint SHOULD immediately send an ACK frame when two ack-elicitin=
g packets have been received without being acknowledged.  Though the algo=
rithms in {{QUIC-RECOVERY}} do not depend on receivers following this gui=
dance, frequent feedback improves loss and congestion response.</p>=0D
</blockquote>=0D
<p>I tried to say something about the fact that this also provides some a=
ssurances about acknowledgement behaviour that senders could use when inn=
ovating with new algorithms, but it ended up being quite hard to do that =
without distracting too much from the core purpose of the section.  Also,=
 the SHOULD got in the way: there is no real assurance, there we have to =
rely on the fact that this is a good recommendation that most deployments=
 will likely respect.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2916#discussi=
on_r323037631">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3020,9 +3059,34 @@ This ensures an ack=
nowledgment is sent at least once per RTT when packets=0D
 needing acknowledgement are received.  The sender can use the receiver&#=
39;s=0D
 `max_ack_delay` value in determining timeouts for timer-based retransmis=
sion.=0D
 =0D
-Strategies and implications of the frequency of generating acknowledgmen=
ts are=0D
-discussed in more detail in {{QUIC-RECOVERY}}.=0D
+### Managing ACK Ranges=0D
+=0D
+When an ACK frame is sent, one or more ranges of acknowledged packets ar=
e=0D
+included.  Including older packets reduces the chance of spurious retran=
smits=0D
+caused by losing previously sent ACK frames, at the cost of larger ACK f=
rames.=0D
+=0D
+ACK frames SHOULD always acknowledge the most recently received packets,=
 and the=0D
+more out-of-order the packets are, the more important it is to send an u=
pdated=0D
+ACK frame quickly, to prevent the peer from declaring a packet as lost a=
nd=0D
+spuriously retransmitting the frames it contains.=0D
+=0D
+Below is one recommended approach for determining what packets to includ=
e in an=0D
</pre>=0D
<p>"Below" is a little imprecise.  Is this the next section, or next seve=
ral sections?</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-Below is one recommended approach for determi=
ning what packets to include in an=0D
+{{ack-tracking}} and {{ack-limiting}} describe an exemplary approach for=
 determining what packets to acknowledge in each=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2916#discussi=
on_r323037809">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
+### Receiver Tracking of ACK Frames=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-### Receiver Tracking of ACK Frames=0D
+### Receiver Tracking of ACK Frames {#ack-tracking}=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2916#discussi=
on_r323037841">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
+### Receiver Tracking of ACK Frames=0D
+=0D
+When a packet containing an ACK frame is sent, the largest acknowledged =
in that=0D
+frame may be saved.  When a packet containing an ACK frame is acknowledg=
ed, the=0D
+receiver can stop acknowledging packets less than or equal to the larges=
t=0D
+acknowledged in the sent ACK frame.=0D
+=0D
+In cases without ACK frame loss, this algorithm allows for a minimum of =
1 RTT=0D
+of reordering. In cases with ACK frame loss and reordering, this approac=
h does=0D
+not guarantee that every acknowledgement is seen by the sender before it=
 is no=0D
+longer included in the ACK frame. Packets could be received out of order=
 and=0D
+all subsequent ACK frames containing them could be lost. In this case, t=
he=0D
+loss recovery algorithm could cause spurious retransmits, but the sender=
 will=0D
+continue making forward progress.=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 {#ack-limiting}=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/2916#discussi=
on_r323037899">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +### Measuring and Reporting Host Delay {#=
host-delay}=0D
+=0D
+An endpoint measures the delays intentionally introduced between when an=
=0D
+ACK-eliciting packet is received and the corresponding acknowledgment is=
 sent.=0D
+The endpoint encodes this delay for the largest acknowledged packet in t=
he Ack=0D
+Delay field of an ACK frame (see {{frame-ack}}). This allows the receive=
r of the=0D
+ACK to adjust for any intentional delays, which is important for getting=
 a=0D
+better estimate of the path RTT when acknowledgments are delayed. A pack=
et might=0D
+be held in the OS kernel or elsewhere on the host before being processed=
.  An=0D
+endpoint MUST NOT include delays that is does not control when populatin=
g the=0D
+Ack Delay field in an ACK frame.=0D
+=0D
+An endpoint MUST NOT excessively delay acknowledgements of ack-eliciting=
=0D
+packets.  An endpoint commits to a maximum delay using the max_ack_delay=
=0D
+transport parameter; see {{transport-parameter-definitions}}.  max_ack_d=
elay=0D
+implies an explicit contract: an endpoint promises to never delay=0D
</pre>=0D
<p>implies explicit is odd:</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-implies an explicit contract: an endpoint pro=
mises to never delay=0D
+declares an explicit contract: an endpoint promises to never delay=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/2916?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK4IVNUUP3YEPGL3AH3QJBLIJA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEKBCSQ#pullrequestreview-286527818=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJKYBPLUVKLA4BWKZRMDQJBLIJANCNFSM4IFSL75Q">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK6GGRJQ=
UMFYTZVRL63QJBLIJA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCEKBCSQ.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/2916?email_source=3D=
notifications\u0026email_token=3DAFTOJK4IVNUUP3YEPGL3AH3QJBLIJA5CNFSM4IFS=
L752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
EKBCSQ#pullrequestreview-286527818",=0D
"url": "https://github.com/quicwg/base-drafts/pull/2916?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK4IVNUUP3YEPGL3AH3QJBLIJA5CNFSM4IFSL7=
52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEK=
BCSQ#pullrequestreview-286527818",=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_5d785f047c9b4_4c5f3f7f0eacd95c1645be--


From nobody Tue Sep 10 19:50: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 E3DEF120806 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:50: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 YxIZdgKMtBPY for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:50:09 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0D3FF1200E6 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 19:50:09 -0700 (PDT)
Date: Tue, 10 Sep 2019 19:50:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568170208; bh=pApo8gCBOaXXJnpOmINtELOQ/P/mZFbhnzMFuvKkkhc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KNe5dRfvd7GCTRnl+IUQj+1LkOU6dF5Q037tS+IZjqyD+8q9x0EuY3r2LINDJLWRJ jM98bF1UDKye2P+rLcyddEhPOAsRPMhF2u/uSa8zpDt0goGrtpVUBnbvZh81xAm/PF nfsKZ1oZq0pWQEkvH5WX7a+iQbE+Be4ReqizWDgU=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZZWEXFZEIDXWY5JGV3QWCVBEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/530197099@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7860e038461_735c3f9e04ccd968190433"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zHHwDyJIFfax2OVjd08PCtlBBjs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 02:50:11 -0000

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

Presumably devices that rewrite addresses and checksums also check checksums on the way in...  Right?  :)

This seems like a fine design issue.  It's a fairly big change, for Retry, and late, but not impossible.  Version Negotiation is much, much more difficult to retrofit, so I think that we should concentrate on Retry here and open a VN issue if anyone feels strongly about that.

Using Initial packet protection isn't crazy.  We'd be able to drop ODCID if we did that.

Saying that we don't care is also rational.  The UDP checksum is imperfect (especially when it comes to catching bit flips), but we are talking about having maybe a few connections per day time out, globally.  I didn't do the numbers on that, but my recollection is that the odds are that small.

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

<p>Presumably devices that rewrite addresses and checksums also check checksums on the way in...  Right?  :)</p>
<p>This seems like a fine design issue.  It's a fairly big change, for Retry, and late, but not impossible.  Version Negotiation is much, much more difficult to retrofit, so I think that we should concentrate on Retry here and open a VN issue if anyone feels strongly about that.</p>
<p>Using Initial packet protection isn't crazy.  We'd be able to drop ODCID if we did that.</p>
<p>Saying that we don't care is also rational.  The UDP checksum is imperfect (especially when it comes to catching bit flips), but we are talking about having maybe a few connections per day time out, globally.  I didn't do the numbers on that, but my recollection is that the odds are that small.</p>

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


From nobody Tue Sep 10 19: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 04E811200E6 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:51: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 oPBQdV6NvYLC for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:51:06 -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 5AFD6120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 19:51:06 -0700 (PDT)
Date: Tue, 10 Sep 2019 19:51:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568170265; bh=48Rqu4WXrL0YnvVTtyCdNNnrd6aNLN+/T64xUGXF6bI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MsXvCdckx0Ggjwemya8XR9FLmpgh1Bc4RYa+nkRvMTgdLr8/tuO53Xj3xqyHMmonO YobKKW0rJi5pMqR0/ToaTmSip9rBDis3uFsRhANoQlS4Qu16kuq4DCQaYSL4nQXKoS 2CCVxji0NDbCIKQUqC1mJhHe3HhbMZGU5ebOHml0=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7A5PL3UFWG6Y6BZWV3QWCYTEVBNHHB2USWPE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3017/review/286530886@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3017@github.com>
References: <quicwg/base-drafts/pull/3017@github.com>
Subject: Re: [quicwg/base-drafts] HTTP-23 changelog (#3017)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d78611976284_356a3ffbd90cd9642074ca"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/P7uam0uR8Ys94AJ1l7qXpaCHBpk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 02:51:08 -0000

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

martinthomson approved this pull request.

I usually put spaces after my commas, but this is fine.



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

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

<p>I usually put spaces after my commas, but this is fine.</p>

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


From nobody Tue Sep 10 19:53: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 8675E1207FE for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:53: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 XUaG3S05Ojfc for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:53: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 E10671200C4 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 19:53:21 -0700 (PDT)
Date: Tue, 10 Sep 2019 19:53:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568170401; bh=gf+w6FL/Q1uCZJMnbcFsTJRH+WfwFg+6ExgEqPE7Of8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=G+9Nwpo0FeuGt0bg4FVT2/TQnTR25tOcN0lLAuVYwPgEInOlG6H4nqaaKVaIurZDO DqJB4X2bqlH937I4XHPr0UWRAD8+0kcDr+1/3ZjB5Q5FzkfiHBQp4/HABvVhT3ifch To3u6Dem5O/nNxSEwNnlhdpaEjvBnL75XtYDs/ns=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5HZNWPRYVHPLJJKUN3QWDBBEVBNHHBYH45I4@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/530197733@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_5d7861a0f40a1_6e453ffab08cd968270923"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ivfEy_7WUU9hjDxwwsh72SeBjOY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 02:53:24 -0000

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

Thanks David.  We'll probably want to raise this on the list, but I'd greatly appreciate a PR.  It should be mostly deleting text, but some advice about how to handle multi-packet startups is probably wise, because it isn't a great situation to be dealing with.

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

<p>Thanks David.  We'll probably want to raise this on the list, but I'd greatly appreciate a PR.  It should be mostly deleting text, but some advice about how to handle multi-packet startups is probably wise, because it isn't a great situation to be dealing with.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/2928?email_source=notifications&amp;email_token=AFTOJKZ2WP5QRS2PV3N7KNLQJBMSBA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6NCZZI#issuecomment-530197733">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5VLU32SSRBVJW3HXLQJBMSBANCNFSM4IGHDJGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4PQHAKFROQN6B55Y3QJBMSBA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6NCZZI.gif" height="1" width="1" 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=AFTOJKZ2WP5QRS2PV3N7KNLQJBMSBA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6NCZZI#issuecomment-530197733",
"url": "https://github.com/quicwg/base-drafts/issues/2928?email_source=notifications\u0026email_token=AFTOJKZ2WP5QRS2PV3N7KNLQJBMSBA5CNFSM4IGHDJG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6NCZZI#issuecomment-530197733",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7861a0f40a1_6e453ffab08cd968270923--


From nobody Tue Sep 10 19:53: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 8BFD81200C4 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:53:45 -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 f990qg8eOdms for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:53:43 -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 E2BA3120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 19:53:43 -0700 (PDT)
Date: Tue, 10 Sep 2019 19:53:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568170423; bh=60KAK0zqSO9ZyCesSjXrblrcqAcFlUnlNc/HmUuWkgk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0ebeofA5yaobcWkdR4dWCmCcvrsKIIWmP/nkOC+VYhBBK/wC5gITPcfM98IdIHEKw GFWPQ7GbJV3LD717QkxzP9B7vJXNf6vVCY5vmzycP6fo5Vkn9jmN+y//hXxJ689uUJ otvsW4cv9YvAsHQvS8nu+eBgSgyyAqkO860dxz4U=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZQIHJGHJKSQN37Y253QWKDPEVBNHHB2UXKPQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3019/review/286530924@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3019@github.com>
References: <quicwg/base-drafts/pull/3019@github.com>
Subject: Re: [quicwg/base-drafts] Changelog for transport-23 (#3019)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7861b736190_2a923ff1a06cd96014363a"; 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/kuSybxlfpKylvOmib3n8JfQClPQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 02:53:46 -0000

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

marten-seemann requested changes on this pull request.

Not a comprehensive review. If I remember correctly, some other items were part of draft-22 as well.

> @@ -5935,6 +5935,38 @@ DecodePacketNumber(largest_pn, truncated_pn, pn_nbits):
 
 Issue and pull request numbers are listed with a leading octothorp.
 
+## Since draft-ietf-quic-transport-22
+
+- NEW_CONNECTION_ID includes a request to retire old connection IDs (#2645,

That was already part of draft-22.

> @@ -5935,6 +5935,38 @@ DecodePacketNumber(largest_pn, truncated_pn, pn_nbits):
 
 Issue and pull request numbers are listed with a leading octothorp.
 
+## Since draft-ietf-quic-transport-22
+
+- NEW_CONNECTION_ID includes a request to retire old connection IDs (#2645,
+  #2769)
+- Rules for preventing correlation by connection ID tightened (#2084, #2929)
+- Clarified use of CONNECTION_CLOSE in Handshake packets (#2151, #2541, #2688)
+- Discourage regressions of largest acknowledged in ACK (#2205, #2752)
+- Improved robusness of validation process for ECN counts (#2534, #2752)
+- Introduce concept of handshake confirmation (#2267, #2673)

This 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/3019#pullrequestreview-286530924
----==_mimepart_5d7861b736190_2a923ff1a06cd96014363a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@marten-seemann</b> requested changes on this pull request.</p>

<p>Not a comprehensive review. If I remember correctly, some other items were part of draft-22 as well.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3019#discussion_r323039895">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -5935,6 +5935,38 @@ DecodePacketNumber(largest_pn, truncated_pn, pn_nbits):
 
 Issue and pull request numbers are listed with a leading octothorp.
 
+## Since draft-ietf-quic-transport-22
+
+- NEW_CONNECTION_ID includes a request to retire old connection IDs (#2645,
</pre>
<p>That was already part of draft-22.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3019#discussion_r323040075">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -5935,6 +5935,38 @@ DecodePacketNumber(largest_pn, truncated_pn, pn_nbits):
 
 Issue and pull request numbers are listed with a leading octothorp.
 
+## Since draft-ietf-quic-transport-22
+
+- NEW_CONNECTION_ID includes a request to retire old connection IDs (#2645,
+  #2769)
+- Rules for preventing correlation by connection ID tightened (#2084, #2929)
+- Clarified use of CONNECTION_CLOSE in Handshake packets (#2151, #2541, #2688)
+- Discourage regressions of largest acknowledged in ACK (#2205, #2752)
+- Improved robusness of validation process for ECN counts (#2534, #2752)
+- Introduce concept of handshake confirmation (#2267, #2673)
</pre>
<p>This 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/3019?email_source=notifications&amp;email_token=AFTOJK4TJYK5GFN6D33NOBTQJBMTPA5CNFSM4IVOHKUKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEKB23A#pullrequestreview-286530924">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3QS4IN7BPVXJZQH7DQJBMTPANCNFSM4IVOHKUA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK37HGJMSBKTA5IIR4LQJBMTPA5CNFSM4IVOHKUKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEKB23A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3019?email_source=notifications\u0026email_token=AFTOJK4TJYK5GFN6D33NOBTQJBMTPA5CNFSM4IVOHKUKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEKB23A#pullrequestreview-286530924",
"url": "https://github.com/quicwg/base-drafts/pull/3019?email_source=notifications\u0026email_token=AFTOJK4TJYK5GFN6D33NOBTQJBMTPA5CNFSM4IVOHKUKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEKB23A#pullrequestreview-286530924",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7861b736190_2a923ff1a06cd96014363a--


From nobody Tue Sep 10 19: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 66F621200C4 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:57: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 fguF_YYx9SLm for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 19:57:36 -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 DB329120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 19:57:36 -0700 (PDT)
Date: Tue, 10 Sep 2019 19:57:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568170656; bh=aHprsyu2moF3q8Q++HAtc/S6PgzrxxW0SStjTRNfdiM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MF4cG7kwOnPWy3GDovPGF+wqVA5LVIFdawi1qtSIScHoTgKV9I3PBBJRChzAkA6Ai MyZa5OldtYA+on0/XCjUiiyGvpeH44F4NFLv1zm8Uo8p6/zxHh3Mco/4IaZrnsx9Pd eCmEW70+48Wp0gG7E0zhRxcJup8Ar+WsbiYoL6q8=
From: Ryan Hamilton <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY2R5YYFJRFNQDDN453QWRTBEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/530198520@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7862a0151ad_23ce3fca988cd96026228"; 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/BDHzVQAtBbCpCUunGB3_9NeZce0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 02:57:38 -0000

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

Totally agree that VN is a different issue and this should focus on Retry.

I also love the idea of getting rid of ODCID! That has always seems like an ugly wart to me and replacing it with initial packet protection seems much more elegant. (As well as solving the packet corruption 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/3014#issuecomment-530198520
----==_mimepart_5d7862a0151ad_23ce3fca988cd96026228
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Totally agree that VN is a different issue and this should focus on Retry.</p>
<p>I also love the idea of getting rid of ODCID! That has always seems like an ugly wart to me and replacing it with initial packet protection seems much more elegant. (As well as solving the packet corruption 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/3014?email_source=notifications&amp;email_token=AFTOJK3D2HUYQBZC5HIYME3QJBNCBA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6NC76A#issuecomment-530198520">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4YAR3OINXOFFA3KX3QJBNCBANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6M3SCXTTKT5CCRAWLQJBNCBA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6NC76A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK3D2HUYQBZC5HIYME3QJBNCBA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6NC76A#issuecomment-530198520",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK3D2HUYQBZC5HIYME3QJBNCBA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6NC76A#issuecomment-530198520",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7862a0151ad_23ce3fca988cd96026228--


From nobody Tue Sep 10 20:02: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 2EFFD1200E6 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 20:02: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 RlztQBxALOoq for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 20:02:55 -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 B4463120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 20:02:55 -0700 (PDT)
Date: Tue, 10 Sep 2019 20:02:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568170975; bh=VpTfcsYM2ACm2FseLnKBBGgcWLpw9sAa/MYTvKYTrDA=; h=Date:From:To:Subject:From; b=DMtv0E6/9rWQ2kx+/FlWO3lmJO9tGabIiYqXtm0PaoCEVwHUApNR4VmGLH4vY84oW kJHf+JQNMDOlrL4/rKC11ZHCQoyFUKFj/tBy1L4h5AyWL936joucu7iYm/DX3tI1SD +NQIivwTagvCD5LEdw+0sw3CbP5DiJ3FnjXHbFBQ=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/changelog-tt-23/515185-c88085@github.com>
Subject: [quicwg/base-drafts] c88085: Remove issues that were closed between 2019-06-09 ...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PN6XXqsI02TV6U0JTf4egIlCioA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 03:02:57 -0000

  Branch: refs/heads/changelog-tt-23
  Home:   https://github.com/quicwg/base-drafts
  Commit: c880853f1a9ec3dc05a4912fc17058296c1e0e9b
      https://github.com/quicwg/base-drafts/commit/c880853f1a9ec3dc05a4912fc17058296c1e0e9b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  Remove issues that were closed between 2019-06-09 and 2019-07-09 from -23 changelog



From nobody Tue Sep 10 20:03: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 7A8031200E6 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 20:03: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 yJWgrsunRJQ6 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 20:03: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 41B771207FE for <quic-issues@ietf.org>; Tue, 10 Sep 2019 20:03:13 -0700 (PDT)
Date: Tue, 10 Sep 2019 20:03:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568170992; bh=P/1bESmLggpeAGRTyGIsvKeXY9RNqnD/ao77VKcvR2Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=aNruwglOrTNbLfeNkqed/yydNGF+D3ZU3bQOJvwmHdFaN/W0FBwdkSHCEeDxDjttf kgfZ6+DDPJEFv+ZbIK45ZuIwSd7PvqLobqN67i7QgcXwrr76aTHJuFuKc+FaSMBVp/ H2sOrX4ikmEWLJmBzkkxn2NT2RXIt9NIF6mgP8PQ=
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/3019/push/4019932598@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3019@github.com>
References: <quicwg/base-drafts/pull/3019@github.com>
Subject: Re: [quicwg/base-drafts] Changelog for transport-23 (#3019)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7863f049612_48d73fa5ff6cd95c1837e4"; 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/AWqbeYVVsDUYLKv13W8NFQhpMHo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 03:03:15 -0000

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

@martinthomson pushed 1 commit.

c880853f1a9ec3dc05a4912fc17058296c1e0e9b  Remove issues that were closed between 2019-06-09 and 2019-07-09 from -23 changelog


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3019/files/515185d51882f5d635471215b54959724ca1015e..c880853f1a9ec3dc05a4912fc17058296c1e0e9b

----==_mimepart_5d7863f049612_48d73fa5ff6cd95c1837e4
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/c880853f1a9ec3dc05a4912fc17058296c1e0e9b">c880853</a>  Remove issues that were closed between 2019-06-09 and 2019-07-09 from -23 changelog</li>
</ul>


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

----==_mimepart_5d7863f049612_48d73fa5ff6cd95c1837e4--


From nobody Tue Sep 10 20: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 48DB81207FE for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 20:03: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 9jVvCEiHMpOD for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 20:03:47 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B690C1200E6 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 20:03:47 -0700 (PDT)
Date: Tue, 10 Sep 2019 20:03:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568171027; bh=8h9X6g+CK3l8E9jteRQd+sr5us+8IluGNdDHaOZbpWo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ju6TjU/WSOIrI5N2w+evtgj8BYD1WJwfpxvhHo85p7Ow4v9gR7hnVeHTUGHW64oK/ 9RMHk/Eyj7gsKcvN0aRKBsj2VSTsjlaExZF06V4GhoBgTLsPPMMaRJoYGla+jTpOIN lhpyAEc7FypJ9+i9QGLzTrkjT0NDEZQGE7XJ10zU=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5ZP24E3R7EPQVVFKV3QWEIFEVBNHHB2UXKPQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3019/c530199738@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3019@github.com>
References: <quicwg/base-drafts/pull/3019@github.com>
Subject: Re: [quicwg/base-drafts] Changelog for transport-23 (#3019)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d786412f000f_ce43fd623acd9682478c0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/p7q3OjgG4WfKF34-X4gmbBu06Kk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 03:03:49 -0000

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

Thanks @marten-seemann, I mistyped the date when I searched and didn't check for duplicates on that set.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3019#issuecomment-530199738
----==_mimepart_5d786412f000f_ce43fd623acd9682478c0
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=1478487" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/marten-seemann">@marten-seemann</a>, I mistyped the date when I searched and didn't check for duplicates on that set.</p>

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


From nobody Tue Sep 10 20: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 F3F74120019 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 20:04: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 ve4FM6igdVVx for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 20:04:17 -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 C8C2D1200E6 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 20:04:17 -0700 (PDT)
Date: Tue, 10 Sep 2019 20:04:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568171057; bh=TdPuV2kJmmjaBPLb25IH6QkJxpA2fn+rzFwM2ojww/M=; h=Date:From:To:Subject:From; b=BEQTuU4LilmyXLSGA7S5h6v4w68H/mVZmEclQNu9ov8P52M4j1MX4sTGqTDInnw7e 1SJA2OlHdyeDWeq7ZvM+hrGRR2IUTMVLC6THoM3AzXwVYYBZpsM8JM7mVPhvHstl4F yMcSJxg5M/6XLefDNp5uE0rIH1rEEPyMlu2PIOno=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/1aa329-f21670@github.com>
Subject: [quicwg/base-drafts] f21670: Script updating gh-pages from c880853f. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 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-1KWKwhrjpJYP8FHjxb_9faC9A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 03:04:19 -0000

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

  Changed paths:
    M changelog-tt-23/draft-ietf-quic-transport.html
    M changelog-tt-23/draft-ietf-quic-transport.txt
    M index.html

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



From nobody Tue Sep 10 20:06: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 3ACF2120048 for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 20:06: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 R5VX4JKbwEcM for <quic-issues@ietfa.amsl.com>; Tue, 10 Sep 2019 20:06: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 D6BD2120019 for <quic-issues@ietf.org>; Tue, 10 Sep 2019 20:06:21 -0700 (PDT)
Date: Tue, 10 Sep 2019 20:06:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568171180; bh=lnJ+UFFI5TaGxt9jWXHmybN7zTUI4sOa0m9cYHCLyLA=; h=Date:From:To:Subject:From; b=r2J9yUIJN6DLI2L9TD0y2M/bx69JL0lLKYOEfBAOfbW4C+8Sri1ir05CkSqYQ52fa 3VBLKyr07ZtLhJfygQLROE86/gDKaQLSLV2GOVKU3zSILsk2YHT2DO6pldjTxZdaX9 0VT3s5gxfKu9t4F7dyrMC7eG637DUil7vGtvmH+8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f21670-b545ce@github.com>
Subject: [quicwg/base-drafts] b545ce: Script updating issues at 2019-09-11T03:06:13Z. [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/DCi87HaK8MCxdCNj8OSoC7FutaQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 03:06:23 -0000

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

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-09-11T03:06:13Z. [ci skip]



From nobody Wed Sep 11 08: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 996D8120969 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:00:08 -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 hzlvQLrXkkGm for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:00: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 E168012095A for <quic-issues@ietf.org>; Wed, 11 Sep 2019 08:00:05 -0700 (PDT)
Date: Wed, 11 Sep 2019 08:00:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568214005; bh=YGrXw/KBAOhgcyTkaqcbosGvXzMcGuB6Pfvz6vEMFuI=; h=Date:From:To:Subject:From; b=liky0abrAaDwIWzi3wmHXJMFuWeG6d3SPKuLPN1j8SggNb2fPNSAh8WAPF3+2Fapl ymH39yE6Hxz5uh/4Nt3/ri8CFJO2w7P3gI4m8DSg302euQ5VlpiuhjNXDkmML2PZth W/UGE6GmLKQPHiRh/4WCqUHoPwKSrXihEGLLF5UU=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-generating-acknowledgements/d60f63-17196d@github.com>
Subject: [quicwg/base-drafts] 17196d: 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/MpsLFCjXw3IMqh_Xc74ICzCG22E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 15:00:09 -0000

  Branch: refs/heads/ianswett-generating-acknowledgements
  Home:   https://github.com/quicwg/base-drafts
  Commit: 17196dc451c9479302e53b33d69a821fd0af3372
      https://github.com/quicwg/base-drafts/commit/17196dc451c9479302e53b33d69a821fd0af3372
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-11 (Wed, 11 Sep 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 Wed Sep 11 08:00: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 105E4120978 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:00:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.28
X-Spam-Level: 
X-Spam-Status: No, score=-6.28 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, 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 JQgH7LLY_EDC for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:00: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 4C887120910 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 08:00:14 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id 83D22660A95 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 08:00:13 -0700 (PDT)
Date: Wed, 11 Sep 2019 08:00:13 -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/4022361052@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_5d790bfd767d8_7013fbaddacd960763a2"; 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/6ZqR1aakXyCsRSf-VSI7_iFCAgo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 15:00:17 -0000

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

@ianswett pushed 1 commit.

17196dc451c9479302e53b33d69a821fd0af3372  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/2916/files/d60f633a45413a6234a192703a7a9b7d40cf8ec1..17196dc451c9479302e53b33d69a821fd0af3372

----==_mimepart_5d790bfd767d8_7013fbaddacd960763a2
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/17196dc451c9479302e53b33d69a821fd0af3372">17196dc</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/2916/files/d60f633a45413a6234a192703a7a9b7d40cf8ec1..17196dc451c9479302e53b33d69a821fd0af3372?email_source=notifications&amp;email_token=AFTOJK4WPODRJND3SFVDWOLQJEBX3A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZWGEYDKMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3GYD5XAZGJRTKYUOLQJEBX3ANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ5KJIDOOSUQOFMNITQJEBX3A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZWGEYDKMQ.gif" height="1" width="1" 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/d60f633a45413a6234a192703a7a9b7d40cf8ec1..17196dc451c9479302e53b33d69a821fd0af3372?email_source=notifications\u0026email_token=AFTOJK4WPODRJND3SFVDWOLQJEBX3A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZWGEYDKMQ",
"url": "https://github.com/quicwg/base-drafts/pull/2916/files/d60f633a45413a6234a192703a7a9b7d40cf8ec1..17196dc451c9479302e53b33d69a821fd0af3372?email_source=notifications\u0026email_token=AFTOJK4WPODRJND3SFVDWOLQJEBX3A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZWGEYDKMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d790bfd767d8_7013fbaddacd960763a2--


From nobody Wed Sep 11 08: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 7DAD41208DC for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:00:27 -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 0qxR4ZDM2CG1 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:00: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 B94DC12096F for <quic-issues@ietf.org>; Wed, 11 Sep 2019 08:00:25 -0700 (PDT)
Date: Wed, 11 Sep 2019 08:00:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568214024; bh=LyrwgZRA4tiO0CTU0kjmGh3GI6/2YV5cqyjGcmd/hOQ=; h=Date:From:To:Subject:From; b=fDOzV/aVw3x5Tp0uztA20VsBA1DZaJmCVbqSYdTgopd4tiuplqNMNfau+tNSz2t/T dcHX/YEwO9VvuOmROZWBm/wCfMefWCGmRmIxEYZgO05thL98ShGLaUy4a70Ug8khn0 AybyjO3peMQjcRoNQR+jzbia7g/zy5iVSUuFTqfg=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-generating-acknowledgements/17196d-02bbcd@github.com>
Subject: [quicwg/base-drafts] 02bbcd: 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/gf9CN1MmAmV7ZFrRiE0ZNtxZaRs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 15:00:28 -0000

  Branch: refs/heads/ianswett-generating-acknowledgements
  Home:   https://github.com/quicwg/base-drafts
  Commit: 02bbcdf106e9532e3b2cd52ab70591b40e4f23e1
      https://github.com/quicwg/base-drafts/commit/02bbcdf106e9532e3b2cd52ab70591b40e4f23e1
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-11 (Wed, 11 Sep 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 Wed Sep 11 08: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 83924120910 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:00:37 -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 iPOxDh7G59Lz for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:00: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 C06A71208DC for <quic-issues@ietf.org>; Wed, 11 Sep 2019 08:00:35 -0700 (PDT)
Date: Wed, 11 Sep 2019 08:00:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568214035; bh=wKt7nOd7f34szzWdeecvTeHHYD1/oULYmR8xOW+mVDY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=sbj3v9vOGCU688vQTGjJjBNIFHiuO4m7sZRZI/gQotGkm+ZJ1QQ7OIPyZNfWzjxV9 FUdCHq//+s13STw+HQdVCkJqMJyY0dJ9tqgoCvCzZOhlO+hJ89ta7VCRvgbpPSM/jC YnhqU/PIj0jZy3YucA7QkWgLqJD4Gp5cMXWLGWzU=
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/4022362879@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_5d790c13ef1f_78853fbca32cd964605775"; 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/GWiUa4d3cWOK6HSWhHx-g7tCVQM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 15:00:38 -0000

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

@ianswett pushed 1 commit.

02bbcdf106e9532e3b2cd52ab70591b40e4f23e1  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/2916/files/17196dc451c9479302e53b33d69a821fd0af3372..02bbcdf106e9532e3b2cd52ab70591b40e4f23e1

----==_mimepart_5d790c13ef1f_78853fbca32cd964605775
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/02bbcdf106e9532e3b2cd52ab70591b40e4f23e1">02bbcdf</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/2916/files/17196dc451c9479302e53b33d69a821fd0af3372..02bbcdf106e9532e3b2cd52ab70591b40e4f23e1?email_source=notifications&amp;email_token=AFTOJK2RRN2Q6U4226RNH7LQJEBZHA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZWGI4DOOI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6OEHQ6CRIKZLREXV3QJEBZHANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6IC2KEM7GY6XPQKTLQJEBZHA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZWGI4DOOI.gif" height="1" width="1" 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/17196dc451c9479302e53b33d69a821fd0af3372..02bbcdf106e9532e3b2cd52ab70591b40e4f23e1?email_source=notifications\u0026email_token=AFTOJK2RRN2Q6U4226RNH7LQJEBZHA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZWGI4DOOI",
"url": "https://github.com/quicwg/base-drafts/pull/2916/files/17196dc451c9479302e53b33d69a821fd0af3372..02bbcdf106e9532e3b2cd52ab70591b40e4f23e1?email_source=notifications\u0026email_token=AFTOJK2RRN2Q6U4226RNH7LQJEBZHA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZWGI4DOOI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d790c13ef1f_78853fbca32cd964605775--


From nobody Wed Sep 11 08: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 0033A1208DC for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:00:43 -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 vGJK86C_0WIw for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:00: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 4057F120966 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 08:00:41 -0700 (PDT)
Date: Wed, 11 Sep 2019 08:00:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568214040; bh=9wFSteJZbZs2UOBryj0vO8U6JQ5XFGb1/1gFIi0sFZw=; h=Date:From:To:Subject:From; b=O22LH9FpmruqEgVYELtVqDB4v5mkt/hbky1UXqfc8lKChIGyTdrt+8SoDfIAEia8E xgXpUvx6N6N2ZNv7WluRsFsHPVMtRpef1uq73JEqE5TfO4ckiVwRMsNpeh2QZL/Hyz p5PJxXIl5nYG4q/z7q2FXniQBJyZ/1+nkVPUuSEE=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-generating-acknowledgements/02bbcd-35a607@github.com>
Subject: [quicwg/base-drafts] 35a607: 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/ZsyBZwKNNyZowJuTnRwDjCmopzg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 15:00:44 -0000

  Branch: refs/heads/ianswett-generating-acknowledgements
  Home:   https://github.com/quicwg/base-drafts
  Commit: 35a607298e7fc8bb2be98a5eaecb5a2773aeb027
      https://github.com/quicwg/base-drafts/commit/35a607298e7fc8bb2be98a5eaecb5a2773aeb027
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-11 (Wed, 11 Sep 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 Wed Sep 11 08:00: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 5AF4B120944 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:00: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 O0EoRBPlmIyN for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:00: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 BD53512094B for <quic-issues@ietf.org>; Wed, 11 Sep 2019 08:00:49 -0700 (PDT)
Date: Wed, 11 Sep 2019 08:00:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568214048; bh=UxHeSpPfRm5FaQAl5beB3t9h86t1WkdNcWfrZRbRvdk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OvdHgJCVBzGRcQstb9mc1WW3XhMJEApNoepXXNCai0EvDjwllerT4WUvE3leyDYlb +aVISmvamAi0+vPKzc0p453YygjwkONJ1houqfkWfAjS4eQDoZJmxqgR3boByhovdN rVmz6kU2QbhyB6mnZatscpqGUVt/5tYMYH8j0L6M=
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/4022364299@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_5d790c20e3eef_43653f888c8cd968834db"; 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/3yh1k-jxWqPg8CVAjg1GN-C1_A4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 15:00:51 -0000

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

@ianswett pushed 1 commit.

35a607298e7fc8bb2be98a5eaecb5a2773aeb027  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/2916/files/02bbcdf106e9532e3b2cd52ab70591b40e4f23e1..35a607298e7fc8bb2be98a5eaecb5a2773aeb027

----==_mimepart_5d790c20e3eef_43653f888c8cd968834db
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/35a607298e7fc8bb2be98a5eaecb5a2773aeb027">35a6072</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/2916/files/02bbcdf106e9532e3b2cd52ab70591b40e4f23e1..35a607298e7fc8bb2be98a5eaecb5a2773aeb027?email_source=notifications&amp;email_token=AFTOJKZFLPIZVB33GVCY4UDQJEB2BA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZWGQZDSOI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7NDFPRK2CFRPHFXVDQJEB2BANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4TLQ6QEYQPLXR4HXDQJEB2BA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZWGQZDSOI.gif" height="1" width="1" 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/02bbcdf106e9532e3b2cd52ab70591b40e4f23e1..35a607298e7fc8bb2be98a5eaecb5a2773aeb027?email_source=notifications\u0026email_token=AFTOJKZFLPIZVB33GVCY4UDQJEB2BA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZWGQZDSOI",
"url": "https://github.com/quicwg/base-drafts/pull/2916/files/02bbcdf106e9532e3b2cd52ab70591b40e4f23e1..35a607298e7fc8bb2be98a5eaecb5a2773aeb027?email_source=notifications\u0026email_token=AFTOJKZFLPIZVB33GVCY4UDQJEB2BA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZWGQZDSOI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d790c20e3eef_43653f888c8cd968834db--


From nobody Wed Sep 11 08:01: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 C7D5212095A for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:00: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 Jdv_W1PKAVpO for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:00:58 -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 53E361208DC for <quic-issues@ietf.org>; Wed, 11 Sep 2019 08:00:58 -0700 (PDT)
Date: Wed, 11 Sep 2019 08:00:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568214057; bh=2cmaP4ImbvMfppiCkGgR2tG2YcYKaE8ffM4f3Y/WIZQ=; h=Date:From:To:Subject:From; b=k0BKAe/1C45kIRh7jrewizMvJ/kbLQlDJMIDuLJCCtchv4LJgwTzZ1KFcMz5tEkmQ 5fCm0xUzmUq/amj/T1xOfvc8btNiyQ4+xm2KnHXWtefP5WYzHECks/0gurFdVzsBMK s6XGeMS/NPWF3Ux5sNG1mSbLupxOwrtHu1sk3jMw=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-generating-acknowledgements/35a607-ac3e43@github.com>
Subject: [quicwg/base-drafts] ac3e43: 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/__fxNtsnJzL9RirNHmhP8V7Ixo0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 15:01:00 -0000

  Branch: refs/heads/ianswett-generating-acknowledgements
  Home:   https://github.com/quicwg/base-drafts
  Commit: ac3e43754ac89bf9eb9441c8623508091e100211
      https://github.com/quicwg/base-drafts/commit/ac3e43754ac89bf9eb9441c8623508091e100211
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-11 (Wed, 11 Sep 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 Wed Sep 11 08:01: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 D944212094B for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:01:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.28
X-Spam-Level: 
X-Spam-Status: No, score=-6.28 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, 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 JJklVa9nF1Qa for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:01: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 36FE312094F for <quic-issues@ietf.org>; Wed, 11 Sep 2019 08:01:06 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 9B0B46E1471 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 08:01:05 -0700 (PDT)
Date: Wed, 11 Sep 2019 08:01:05 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2916/push/4022365668@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_5d790c318c21d_a423fd02a4cd9687894e"; 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/a_agzUCrf5gmoUXJnwRHp2Nl-Vs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 15:01:10 -0000

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

@ianswett pushed 1 commit.

ac3e43754ac89bf9eb9441c8623508091e100211  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/2916/files/35a607298e7fc8bb2be98a5eaecb5a2773aeb027..ac3e43754ac89bf9eb9441c8623508091e100211

----==_mimepart_5d790c318c21d_a423fd02a4cd9687894e
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/ac3e43754ac89bf9eb9441c8623508091e100211">ac3e437</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/2916/files/35a607298e7fc8bb2be98a5eaecb5a2773aeb027..ac3e43754ac89bf9eb9441c8623508091e100211?email_source=notifications&amp;email_token=AFTOJK7O5QUBJPCKZYJ3HTTQJEB3DA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZWGU3DMOA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZX4MUGMX3NE3DAAY3QJEB3DANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2TQ55EL65R7H3O5KDQJEB3DA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZWGU3DMOA.gif" height="1" width="1" 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/35a607298e7fc8bb2be98a5eaecb5a2773aeb027..ac3e43754ac89bf9eb9441c8623508091e100211?email_source=notifications\u0026email_token=AFTOJK7O5QUBJPCKZYJ3HTTQJEB3DA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZWGU3DMOA",
"url": "https://github.com/quicwg/base-drafts/pull/2916/files/35a607298e7fc8bb2be98a5eaecb5a2773aeb027..ac3e43754ac89bf9eb9441c8623508091e100211?email_source=notifications\u0026email_token=AFTOJK7O5QUBJPCKZYJ3HTTQJEB3DA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZWGU3DMOA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d790c318c21d_a423fd02a4cd9687894e--


From nobody Wed Sep 11 08:02: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 F0F0512097B for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:02:21 -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 W9GbM18oVp-Z for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:02: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 79D4412097F for <quic-issues@ietf.org>; Wed, 11 Sep 2019 08:02:14 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id D27658C0767 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 08:02:13 -0700 (PDT)
Date: Wed, 11 Sep 2019 08:02:13 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-generating-acknowledgements/ac3e43-6910bc@github.com>
Subject: [quicwg/base-drafts] 6910bc: Reflow a 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/pSStRc9UOGCeJ6M8llgSmKYeISE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 15:02:22 -0000

  Branch: refs/heads/ianswett-generating-acknowledgements
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6910bcea398723851d7ace7b8d4ff7e2ad9c88a5
      https://github.com/quicwg/base-drafts/commit/6910bcea398723851d7ace7b8d4ff7e2ad9c88a5
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  Reflow a line



From nobody Wed Sep 11 08: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 7E0A2120978 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:02: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 X5HL1NxRQkQJ for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:02: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 CFD4312001E for <quic-issues@ietf.org>; Wed, 11 Sep 2019 08:02:22 -0700 (PDT)
Date: Wed, 11 Sep 2019 08:02:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568214142; bh=b236y/H8PAQmN/s5J43h/RjfJgUk+CRbdsur3YkT0hg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OhiZac+sKxoJiLKq3zRnNquUtvsSEONfyU3RKj4D2m6lbe5Fpn5k5uK05bFrwFLnR gvP0kWfidHqAnDgnALOHkzXrqd6jMbPVlpfQS41i+T4FqB5BObSLIs1qYOYQFBO+1s tQ9lVa3BBzaOOywCcWtQt4wmXeI/udhPmIKhPDuY=
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/4022372091@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_5d790c7decd67_22363fee578cd964649b6"; 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/x_AxMKvW4Z3msOBH3GnK_3rQaGs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 15:02:25 -0000

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

@ianswett pushed 1 commit.

6910bcea398723851d7ace7b8d4ff7e2ad9c88a5  Reflow a line


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2916/files/ac3e43754ac89bf9eb9441c8623508091e100211..6910bcea398723851d7ace7b8d4ff7e2ad9c88a5

----==_mimepart_5d790c7decd67_22363fee578cd964649b6
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/6910bcea398723851d7ace7b8d4ff7e2ad9c88a5">6910bce</a>  Reflow a 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/2916/files/ac3e43754ac89bf9eb9441c8623508091e100211..6910bcea398723851d7ace7b8d4ff7e2ad9c88a5?email_source=notifications&amp;email_token=AFTOJK75CFC2B2ORQ4QOECDQJEB73A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZXGIYDSMI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4IWEYQCM3SCZWW5WLQJEB73ANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3KTFLIUX6ESBATTWDQJEB73A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZXGIYDSMI.gif" height="1" width="1" 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/ac3e43754ac89bf9eb9441c8623508091e100211..6910bcea398723851d7ace7b8d4ff7e2ad9c88a5?email_source=notifications\u0026email_token=AFTOJK75CFC2B2ORQ4QOECDQJEB73A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZXGIYDSMI",
"url": "https://github.com/quicwg/base-drafts/pull/2916/files/ac3e43754ac89bf9eb9441c8623508091e100211..6910bcea398723851d7ace7b8d4ff7e2ad9c88a5?email_source=notifications\u0026email_token=AFTOJK75CFC2B2ORQ4QOECDQJEB73A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDEMZXGIYDSMI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d790c7decd67_22363fee578cd964649b6--


From nobody Wed Sep 11 08:02: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 49A82120142 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:02: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 8VFc2x3uvfML for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:02:48 -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 8EBC712001E for <quic-issues@ietf.org>; Wed, 11 Sep 2019 08:02:48 -0700 (PDT)
Date: Wed, 11 Sep 2019 08:02:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568214167; bh=n/ZaxBrTtr6CjvPcQr+4IrZ7KvH4O9rU0FebM96cERU=; h=Date:From:To:Subject:From; b=soPqv8Hs9kEUrIVbJMCNupUyYMbtay7XT5Z74hiWprmpERCtnRyBQfpjJeukLjJNE wTzTQztKg/xYRlKIlAJUIlnw/MmihsP6XibfasmrMII2NP5pJkZCLxXxE9LJrBOwt0 t20ke9oIglVypsGiLphaDwMnO1joEAu/EdqMZHkw=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b545ce-75ddb7@github.com>
Subject: [quicwg/base-drafts] 75ddb7: Script updating gh-pages from 6910bcea. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/R7cwIoB40b2K-e5vdbwqcb_AlBE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 15:02:51 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 75ddb753a3ea6562eb5c033c3896d6adc906dabc
      https://github.com/quicwg/base-drafts/commit/75ddb753a3ea6562eb5c033c3896d6adc906dabc
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

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



From nobody Wed Sep 11 08:05: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 A3FAA120986 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:05:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 W9iON-UPdJ1Y for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 08:05:15 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6C7B2120984 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 08:05:15 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id A3D40A1E0B for <quic-issues@ietf.org>; Wed, 11 Sep 2019 08:05:14 -0700 (PDT)
Date: Wed, 11 Sep 2019 08:05:14 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/75ddb7-c8aaea@github.com>
Subject: [quicwg/base-drafts] c8aaea: Script updating issues at 2019-09-11T15:05: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/TKt3GP1UuSGM9CmKeMGa8GfCaDw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 15:05:17 -0000

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

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-09-11T15:05:07Z. [ci skip]



From nobody Wed Sep 11 10:41:54 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 CB4A71208D1 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 10:41:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.622
X-Spam-Level: 
X-Spam-Status: No, score=-1.622 tagged_above=-999 required=5 tests=[BAYES_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_NONE=-0.0001, RCVD_IN_MSPIKE_H2=-0.026, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Nl56iiy_3erX for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 10:41:51 -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 8DB05120893 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 10:41:51 -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=o3cukBMAd72vnQEMY4Stndj4Jik=; b=Vu+lFFC4T+Z0854R kAUQRMJctrN7qLuTXPHOPGUk5lxd/o/UnNaXWQBcuRiVjvSiRrRiIFmgq9NM0Xvx /Up4bYNnRWAGCxE+MRhL86fAjJlDt4gToHh7SBhMvXUf53gt1yzoxs/DSyQI3y4b SspXm5fk2hYCaw//aI9WnQyvvP8=
Received: by filter1379p1mdw1.sendgrid.net with SMTP id filter1379p1mdw1-21181-5D7931DE-1D 2019-09-11 17:41:50.792740031 +0000 UTC m=+75798.938231099
Received: from github-lowworker-3c598a3.cp1-iad.github.net (unknown [140.82.115.66]) by ismtpd0040p1iad2.sendgrid.net (SG) with ESMTP id j82hb2RzRbqbjDMxhscYDQ for <quic-issues@ietf.org>; Wed, 11 Sep 2019 17:41:50.690 +0000 (UTC)
Received: from github.com (localhost [127.0.0.1]) by github-lowworker-3c598a3.cp1-iad.github.net (Postfix) with ESMTP id 9B040A80F0F for <quic-issues@ietf.org>; Wed, 11 Sep 2019 10:41:50 -0700 (PDT)
Date: Wed, 11 Sep 2019 17:41:50 +0000 (UTC)
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2EBSSGP2Q7RTPIEK53QZLE5EVBNHHBYD42OI@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/286960400@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_5d7931de99a3e_4dfb3f841e4cd95c7587e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-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: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak32paKDRJzH+YZH1EkRtrZUBVhQBCD3Vzq8Oy hfhGawXh+TrIah9Zqv42Lg+BS45+NYglm1ws7tqzrMunG7eOkumDlLm18YWO4xNO5NZFSs5yO53HID SQFqRJ0eQvlubiqjeUrT4I0JxgSIbP7QMjgL8/LyEoPeSoGhZEMPVsKSsaehCQlVZsGVkJH2CbCDxa o=
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/x66Y82LVw32tlkburMRRXKiRd9M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 17:41:53 -0000

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

martinthomson commented on this pull request.



>  ### Sending ACK Frames
 
-An endpoint sends ACK frames to acknowledge packets it has received and
-processed.
+An ACK frame SHOULD be sent immediately upon receipt of a second ack-eliciting
+packet. Loss detection does not assume that the peer sends an ACK immediately on
+receiving a second ack-eliciting packet.

@ianswett, not planning to do anything about this?  I'll merge it now if you think we should just leave this alone.

-- 
You are receiving this 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_r323372108
----==_mimepart_5d7931de99a3e_4dfb3f841e4cd95c7587e
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/2916#discussion_r323372108">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  ### Sending ACK Frames
 
-An endpoint sends ACK frames to acknowledge packets it has received and
-processed.
+An ACK frame SHOULD be sent immediately upon receipt of a second ack-eliciting
+packet. Loss detection does not assume that the peer sends an ACK immediately on
+receiving a second ack-eliciting packet.
</pre>
<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>, not planning to do anything about this?  I'll merge it now if you think we should just leave this alone.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK3HGWXUOTGZWJGFPWTQJEUV5A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCENKWEA#discussion_r323372108">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3VCYSKLQS7MREBELDQJEUV5ANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3YAVV5TRTOLNUBDTTQJEUV5A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCENKWEA.gif" height="1" width="1" 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=AFTOJK3HGWXUOTGZWJGFPWTQJEUV5A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCENKWEA#discussion_r323372108",
"url": "https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications\u0026email_token=AFTOJK3HGWXUOTGZWJGFPWTQJEUV5A5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCENKWEA#discussion_r323372108",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7931de99a3e_4dfb3f841e4cd95c7587e--


From nobody Wed Sep 11 11:07: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 7CD2C120BB1 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 11:07:51 -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 0c6uH5iP7186 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 11:07: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 C4479120B96 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 11:07:49 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id AC7B4660AA0 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 11:07:48 -0700 (PDT)
Date: Wed, 11 Sep 2019 11:07:48 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3ASACTFZPQSZ4JCOV3QZ4IJEVBNHHBYD42OI@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/286975755@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_5d7937f49cddd_1d963fbe6c0cd964544bb"; 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/xasJ8tQH1tSSQUtM5DQkkGs-Yks>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 18:07:51 -0000

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

ianswett commented on this pull request.



>  ### Sending ACK Frames
 
-An endpoint sends ACK frames to acknowledge packets it has received and
-processed.
+An ACK frame SHOULD be sent immediately upon receipt of a second ack-eliciting
+packet. Loss detection does not assume that the peer sends an ACK immediately on
+receiving a second ack-eliciting packet.

I want to do another larger pass over this text, but I'd like to keep it as is for now.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2916#discussion_r323384037
----==_mimepart_5d7937f49cddd_1d963fbe6c0cd964544bb
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_r323384037">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  ### Sending ACK Frames
 
-An endpoint sends ACK frames to acknowledge packets it has received and
-processed.
+An ACK frame SHOULD be sent immediately upon receipt of a second ack-eliciting
+packet. Loss detection does not assume that the peer sends an ACK immediately on
+receiving a second ack-eliciting packet.
</pre>
<p>I want to do another larger pass over this text, but I'd like to keep it as is for now.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications&amp;email_token=AFTOJK6RNJ2IPSSHSPDIQADQJEXXJA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCENOOCY#discussion_r323384037">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZNNJMKXLBDADMYVO3QJEXXJANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ2WRCATTF2SJ6CG4DQJEXXJA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCENOOCY.gif" height="1" width="1" 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=AFTOJK6RNJ2IPSSHSPDIQADQJEXXJA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCENOOCY#discussion_r323384037",
"url": "https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications\u0026email_token=AFTOJK6RNJ2IPSSHSPDIQADQJEXXJA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCENOOCY#discussion_r323384037",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7937f49cddd_1d963fbe6c0cd964544bb--


From nobody Wed Sep 11 11:39: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 CBC44120BC7 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 11:39:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.898
X-Spam-Level: 
X-Spam-Status: No, score=-6.898 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Nzjkr4vNWGau for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 11:39: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 5DCA0120289 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 11:39:13 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 8E29852002D for <quic-issues@ietf.org>; Wed, 11 Sep 2019 11:39:12 -0700 (PDT)
Date: Wed, 11 Sep 2019 11:39:12 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-recovery-changelog/42db62-61fa09@github.com>
Subject: [quicwg/base-drafts] 61fa09: 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/DsQ1i4FNDSt_LL4VDjMe94EpXv0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 18:39:15 -0000

  Branch: refs/heads/ianswett-recovery-changelog
  Home:   https://github.com/quicwg/base-drafts
  Commit: 61fa0943fc52f85c23b7529bd6d620824c99f203
      https://github.com/quicwg/base-drafts/commit/61fa0943fc52f85c23b7529bd6d620824c99f203
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

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



From nobody Wed Sep 11 11: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 DCD57120BFD for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 11:39:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.28
X-Spam-Level: 
X-Spam-Status: No, score=-6.28 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, 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 WFM7gf7kJbqU for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 11:39: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 68779120BC7 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 11:39:21 -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 9E862960C29 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 11:39:20 -0700 (PDT)
Date: Wed, 11 Sep 2019 11:39:20 -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/3018/push/4023239708@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3018@github.com>
References: <quicwg/base-drafts/pull/3018@github.com>
Subject: Re: [quicwg/base-drafts] Recovery Changelog (#3018)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d793f588f664_15523fb8d5ecd95c22132e"; 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/mMsAuZeXA7CewFthN1wCZCd8j1o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 18:39:23 -0000

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

@ianswett pushed 1 commit.

61fa0943fc52f85c23b7529bd6d620824c99f203  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/3018/files/42db62060551f933d3b4eb951c02f44d6958f1b3..61fa0943fc52f85c23b7529bd6d620824c99f203

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

----==_mimepart_5d793f588f664_15523fb8d5ecd95c22132e--


From nobody Wed Sep 11 11:39: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 B6C65120BC7 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 11:39:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 szuZgPHFcCCh for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 11:39: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 1B959120289 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 11:39:51 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id BA44812126B for <quic-issues@ietf.org>; Wed, 11 Sep 2019 11:39:50 -0700 (PDT)
Date: Wed, 11 Sep 2019 11:39:50 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c8aaea-36af23@github.com>
Subject: [quicwg/base-drafts] 36af23: Script updating gh-pages from 61fa0943. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xUmp-OzCVrTbtiTIPRypKXtz5vw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 18:39:53 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 36af238662308bbef7121876db00c55baa14db55
      https://github.com/quicwg/base-drafts/commit/36af238662308bbef7121876db00c55baa14db55
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

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



From nobody Wed Sep 11 11:42: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 2868B120C11 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 11:42:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 0IpDoENxyslH for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 11:42:13 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AC92F120C23 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 11:42:12 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id CF915660057 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 11:42:11 -0700 (PDT)
Date: Wed, 11 Sep 2019 11:42:11 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2WU535D4EKPU6PDR53Q2AJHEVBNHHB2UTSTY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3018/review/286995428@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3018@github.com>
References: <quicwg/base-drafts/pull/3018@github.com>
Subject: Re: [quicwg/base-drafts] Recovery Changelog (#3018)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d794003c0d72_3ca63fa4004cd964569de"; 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/CEnfJb0xNFxmog5Uo5WA0dV6b9w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 18:42:15 -0000

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

ianswett commented on this pull request.



> @@ -1496,6 +1496,11 @@ Invoked from DetectLostPackets when packets are deemed lost.
 
 Issue and pull request numbers are listed with a leading octothorp.
 
+## Since draft-ietf-quic-recovery-22
+
+- PTO should always send an ack-eliciting packet (#2895)
+- Unify the Handshake Timer with the PTO timer (#2648, #2658, #2886)
+

SG, added in anticipating of #2916 being merged.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3018#discussion_r323399219
----==_mimepart_5d794003c0d72_3ca63fa4004cd964569de
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/3018#discussion_r323399219">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1496,6 +1496,11 @@ Invoked from DetectLostPackets when packets are deemed lost.
 
 Issue and pull request numbers are listed with a leading octothorp.
 
+## Since draft-ietf-quic-recovery-22
+
+- PTO should always send an ack-eliciting packet (#2895)
+- Unify the Handshake Timer with the PTO timer (#2648, #2658, #2886)
+
</pre>
<p>SG, added in anticipating of <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="470784626" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2916" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2916/hovercard" href="https://github.com/quicwg/base-drafts/pull/2916">#2916</a> being merged.</p>

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


From nobody Wed Sep 11 12:09: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 F4056120865 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 12:09: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 9UCsZv3N8mf9 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 12:09: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 1D07112006E for <quic-issues@ietf.org>; Wed, 11 Sep 2019 12:09:39 -0700 (PDT)
Date: Wed, 11 Sep 2019 12:09:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568228978; bh=9uT1uixR/sTaDtiXksB3WOAG7LQYQGG0tgm0y5x9NyY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bLjof5Zft3ldOEq9IQHE14ltgiFXdjDuPCnozl61Aaas/U0m2WoS7sY5r6y45uq67 +n8CCPHLIxiADYOCxu1AI8jNvPfDqA/cGDnsWC+pGlEW+nIaEoSrXnnQYScfsxBKk7 95jniPy5zOxOVthc8TZRcry+jcyRzaoNKV1aFWHI=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2XJJTIL4N6ZYLIS5F3Q2DQFEVBNHHBYD42OI@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/287011114@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_5d7946723735e_38623fe6928cd9684497d"; 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/BTdoA4PiFBR8rr1sNCDSlPuPZok>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 19:09:41 -0000

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

janaiyengar commented on this pull request.



>  ### Sending ACK Frames
 
-An endpoint sends ACK frames to acknowledge packets it has received and
-processed.
+An ACK frame SHOULD be sent immediately upon receipt of a second ack-eliciting
+packet. Loss detection does not assume that the peer sends an ACK immediately on
+receiving a second ack-eliciting packet.

I'm trying out something -- give me a few minutes

-- 
You are receiving this 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_r323411496
----==_mimepart_5d7946723735e_38623fe6928cd9684497d
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/2916#discussion_r323411496">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  ### Sending ACK Frames
 
-An endpoint sends ACK frames to acknowledge packets it has received and
-processed.
+An ACK frame SHOULD be sent immediately upon receipt of a second ack-eliciting
+packet. Loss detection does not assume that the peer sends an ACK immediately on
+receiving a second ack-eliciting packet.
</pre>
<p>I'm trying out something -- give me a few minutes</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJKYTVIZEWD23BBR5KKLQJE67FA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCENXCKQ#discussion_r323411496">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2L6EPSCIRDQDPQ3N3QJE67FANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ34EYJIY7APCTQ62TQJE67FA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCENXCKQ.gif" height="1" width="1" 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=AFTOJKYTVIZEWD23BBR5KKLQJE67FA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCENXCKQ#discussion_r323411496",
"url": "https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications\u0026email_token=AFTOJKYTVIZEWD23BBR5KKLQJE67FA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCENXCKQ#discussion_r323411496",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7946723735e_38623fe6928cd9684497d--


From nobody Wed Sep 11 12:49: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 096BF120807 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 12:49: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 wuhh-a6EACRg for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 12:49: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 B3E7D120018 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 12:49:08 -0700 (PDT)
Date: Wed, 11 Sep 2019 12:49:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568231347; bh=AAt6aT1r9TRf5TabrMUxuZQampJebXR6IrC1jUoF47A=; h=Date:From:To:Subject:From; b=O9XuHT4jeJDlqYOinc1FF7VqPlshe38CwzXMh56YNAe2RaS5Q8F07Rjfh5JIL9Pl4 rgnBE006RAd6PjaXEo07N/8hPBcKl6159zjJfawXa5OyWR6abpQOi+kg600yR2sIw8 /x3iPZObVq+p0ufq68FeOq5YLiF9ENlr3OHzMTHU=
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-generating-acknowledgements/6910bc-5a8af7@github.com>
Subject: [quicwg/base-drafts] 5a8af7: moving text around a bit and mt'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/8p4127X0AHAAuz84lqBz-IjlEoA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 19:49:10 -0000

  Branch: refs/heads/ianswett-generating-acknowledgements
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5a8af76fb64d5ccc9c16516c409390ccd59f8192
      https://github.com/quicwg/base-drafts/commit/5a8af76fb64d5ccc9c16516c409390ccd59f8192
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  moving text around a bit and mt's comment



From nobody Wed Sep 11 12:49: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 67638120C70 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 12:49: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 I7YmX39MsrU5 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 12:49: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 AEBB112081B for <quic-issues@ietf.org>; Wed, 11 Sep 2019 12:49:16 -0700 (PDT)
Date: Wed, 11 Sep 2019 12:49:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568231355; bh=pK0rHPJzzlV0RtvTAmEuwd5kpDDzARI1ePQn2jRsWF0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GVV+wbDKIy49v4Jz4tiQnYrtg368Halj6A7oieYl5E7SC7hxaaGsBcY1gfStvoFBy mYaExhgFSvlM0OrwtvFr7V9RSSyeQV1wVDC7hxbzZbLZkszqISqnVuIuD5G1hplZ15 bzBfnDb6N6gTGglUMdUaN65N4JqzB+H8yWERfiCo=
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/2916/push/4023497641@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_5d794fbbd12cc_73153fddda2cd95c53895"; 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/rMYT5N5rAl-GADKXbBCx0BsA7Ig>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 19:49:23 -0000

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

@janaiyengar pushed 1 commit.

5a8af76fb64d5ccc9c16516c409390ccd59f8192  moving text around a bit and mt's comment


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2916/files/6910bcea398723851d7ace7b8d4ff7e2ad9c88a5..5a8af76fb64d5ccc9c16516c409390ccd59f8192

----==_mimepart_5d794fbbd12cc_73153fddda2cd95c53895
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/5a8af76fb64d5ccc9c16516c409390ccd59f8192">5a8af76</a>  moving text around a bit and mt&#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/2916/files/6910bcea398723851d7ace7b8d4ff7e2ad9c88a5..5a8af76fb64d5ccc9c16516c409390ccd59f8192?email_source=notifications&amp;email_token=AFTOJK6SQG7Q36MFYQ4EJVDQJFDTXA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDGNBZG43DIMI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4TBHEAHL4EQWOIB3DQJFDTXANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3EBSPUISENBGJ2ANLQJFDTXA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDGNBZG43DIMI.gif" height="1" width="1" 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/6910bcea398723851d7ace7b8d4ff7e2ad9c88a5..5a8af76fb64d5ccc9c16516c409390ccd59f8192?email_source=notifications\u0026email_token=AFTOJK6SQG7Q36MFYQ4EJVDQJFDTXA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDGNBZG43DIMI",
"url": "https://github.com/quicwg/base-drafts/pull/2916/files/6910bcea398723851d7ace7b8d4ff7e2ad9c88a5..5a8af76fb64d5ccc9c16516c409390ccd59f8192?email_source=notifications\u0026email_token=AFTOJK6SQG7Q36MFYQ4EJVDQJFDTXA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGI4TSNRTHAZTAOKQOVZWQIZUGAZDGNBZG43DIMI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d794fbbd12cc_73153fddda2cd95c53895--


From nobody Wed Sep 11 12:49: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 2A7CB120812 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 12:49: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 aOLqWFUvxrZs for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 12:49:40 -0700 (PDT)
Received: from out-16.smtp.github.com (out-16.smtp.github.com [192.30.254.199]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AABAE120C61 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 12:49:40 -0700 (PDT)
Date: Wed, 11 Sep 2019 12:49:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568231380; bh=oj4vc7z3I5kM/KlBe5ySQWlrz0iQqRUHWmcvW3ZtpM8=; h=Date:From:To:Subject:From; b=2K2FnfBr50hv42IPK1+AFi8HyxVYEcpUbhmBSX6BcxsWFJo/1NDmygP84gTkcauSM onTDJMXLcdkPxBh6CCbG+gY4Lj+ubPdhkVJlRuDHx9fV/bbrPvlt87Z3ZIs/mj62Cp WhysQRYBcHLDHUtxqi9YnK0CDXIfGVU3iyajzLlY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/36af23-757181@github.com>
Subject: [quicwg/base-drafts] 757181: Script updating gh-pages from 5a8af76f. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/DCxKD1wMOvXOdNf7D8VhHBTe7MI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 19:49:49 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7571817f194a3e64dd29bac5491917931f77afab
      https://github.com/quicwg/base-drafts/commit/7571817f194a3e64dd29bac5491917931f77afab
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

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



From nobody Wed Sep 11 12: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 884001201CE for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 12:50: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 czOeKiMERM0V for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 12:50: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 C0D21120018 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 12:50:14 -0700 (PDT)
Date: Wed, 11 Sep 2019 12:50:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568231414; bh=6Yy14oV590866MIAavmzTgnNtAzUx3qfvYcN4fETpM0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Q0WSgZs4yCcSn4Z1/QmNEIMUrfa6aM8VMocHSYJuRacz7bT+feMoDeJTeh+cYH7Kk fuHW7wPn1QM4tIGzxLM5qrQ1XmHYY3r4Fjf7pNW75s6zGxhW3kzAuD6bl2QjrRySs+ YpF8ugS1Zhr1iCAlyMS9app6h1r0eckVibg5gjPg=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2GEV5HXFE3EVL4CWN3Q2IINEVBNHHBYD42OI@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/287032284@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_5d794ff684ca_7e973fbe12acd9647499"; 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/Dlo-___REIuAqx04y_JzWAg0J_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: Wed, 11 Sep 2019 19:50:17 -0000

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

janaiyengar commented on this pull request.

@ianswett @martinthomson PTAL

>  ### Sending ACK Frames
 
-An endpoint sends ACK frames to acknowledge packets it has received and
-processed.
+An ACK frame SHOULD be sent immediately upon receipt of a second ack-eliciting
+packet. Loss detection does not assume that the peer sends an ACK immediately on
+receiving a second ack-eliciting packet.

Ok, a few changes, look at the last commit. I've moved some text around and I think I've captured the spirit of this more clearly.

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

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

<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> <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> PTAL</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/2916#discussion_r323427723">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  ### Sending ACK Frames
 
-An endpoint sends ACK frames to acknowledge packets it has received and
-processed.
+An ACK frame SHOULD be sent immediately upon receipt of a second ack-eliciting
+packet. Loss detection does not assume that the peer sends an ACK immediately on
+receiving a second ack-eliciting packet.
</pre>
<p>Ok, a few changes, look at the last commit. I've moved some text around and I think I've captured the spirit of this more clearly.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK5U2UXHRU6RELXTUM3QJFDXNA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEN4HXA#pullrequestreview-287032284">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6OONBSYKBBUE7CNX3QJFDXNANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3W7ZW2JJ3NB4L47DDQJFDXNA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEN4HXA.gif" height="1" width="1" 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=AFTOJK5U2UXHRU6RELXTUM3QJFDXNA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEN4HXA#pullrequestreview-287032284",
"url": "https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications\u0026email_token=AFTOJK5U2UXHRU6RELXTUM3QJFDXNA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEN4HXA#pullrequestreview-287032284",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d794ff684ca_7e973fbe12acd9647499--


From nobody Wed Sep 11 12:58: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 DB521120923 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 12:58:22 -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 6XDRFrxh6s7a for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 12:58: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 8511A120AAE for <quic-issues@ietf.org>; Wed, 11 Sep 2019 12:58:19 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 928FC961B00 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 12:58:18 -0700 (PDT)
Date: Wed, 11 Sep 2019 12:58:18 -0700
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6SG52W2YYSVVIQ2RF3Q2JGVEVBNHHBYD42OI@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/287036888@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_5d7951da824c1_52093fc38a4cd960224585"; 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/y7oEb1LhcFHvYVvW6wj6PuYBp6k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 19:58:25 -0000

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

nibanks commented on this pull request.



>  
-Packets containing only ACK frames are not congestion controlled, so there are
-limits on how frequently they can be sent.  An endpoint MUST NOT send more than
-one ACK-frame-only packet in response to receiving an ACK-eliciting packet
-(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 ACK frames avoids an
-infinite feedback loop of acknowledgements, which could prevent the connection
-from ever becoming idle. However, the endpoint acknowledges non-ACK-eliciting
-packets when it sends an ACK frame.
+A receiver's delayed acknowledgment timer SHOULD NOT exceed the current RTT
+estimate or the value it indicates in the `max_ack_delay` transport parameter.
+This ensures an acknowledgment is sent at least once per RTT when packets
+needing acknowledgement are received.  The sender can use the receiver's
+`max_ack_delay` value in determining timeouts for timer-based retransmission.

Does this text `SHOULD NOT exceed the current RTT estimate` mean the peer could/should use a min of the max_ack_delay and the current RTT when computing probe timeouts?
```
PTO = smoothed_rtt + max(4*rttvar, kGranularity) + min(max_ack_delay, smoothed_rtt)
```

-- 
You are receiving this 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-287036888
----==_mimepart_5d7951da824c1_52093fc38a4cd960224585
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/2916#discussion_r323431259">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  
-Packets containing only ACK frames are not congestion controlled, so there are
-limits on how frequently they can be sent.  An endpoint MUST NOT send more than
-one ACK-frame-only packet in response to receiving an ACK-eliciting packet
-(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 ACK frames avoids an
-infinite feedback loop of acknowledgements, which could prevent the connection
-from ever becoming idle. However, the endpoint acknowledges non-ACK-eliciting
-packets when it sends an ACK frame.
+A receiver&#39;s delayed acknowledgment timer SHOULD NOT exceed the current RTT
+estimate or the value it indicates in the `max_ack_delay` transport parameter.
+This ensures an acknowledgment is sent at least once per RTT when packets
+needing acknowledgement are received.  The sender can use the receiver&#39;s
+`max_ack_delay` value in determining timeouts for timer-based retransmission.
</pre>
<p>Does this text <code>SHOULD NOT exceed the current RTT estimate</code> mean the peer could/should use a min of the max_ack_delay and the current RTT when computing probe timeouts?</p>
<pre><code>PTO = smoothed_rtt + max(4*rttvar, kGranularity) + min(max_ack_delay, smoothed_rtt)
</code></pre>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications&amp;email_token=AFTOJKYNHLLRVEF6U22WWBLQJFEVVA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEN5LWA#pullrequestreview-287036888">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4UIS5PE2RIWJ55RKDQJFEVVANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7NC4UEWI5NRNDHPZTQJFEVVA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEN5LWA.gif" height="1" width="1" 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=AFTOJKYNHLLRVEF6U22WWBLQJFEVVA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEN5LWA#pullrequestreview-287036888",
"url": "https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications\u0026email_token=AFTOJKYNHLLRVEF6U22WWBLQJFEVVA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEN5LWA#pullrequestreview-287036888",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7951da824c1_52093fc38a4cd960224585--


From nobody Wed Sep 11 13:20: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 327AA1207FF for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 13:20:14 -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 1NBEsEMZid35 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 13:20: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 1FB89120289 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 13:20:12 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 2ABB31C07C1 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 13:20:11 -0700 (PDT)
Date: Wed, 11 Sep 2019 13:20:11 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK43RJNRN4FYTYVZSON3Q2LYXEVBNHHBYD42OI@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/287048584@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_5d7956fb1bc68_299a3faf83ecd96c4598b"; 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/TaGnfmdTaPE0t0TbQwoUBfas-N4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 20:20:14 -0000

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

ianswett commented on this pull request.



>  
-Packets containing only ACK frames are not congestion controlled, so there are
-limits on how frequently they can be sent.  An endpoint MUST NOT send more than
-one ACK-frame-only packet in response to receiving an ACK-eliciting packet
-(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 ACK frames avoids an
-infinite feedback loop of acknowledgements, which could prevent the connection
-from ever becoming idle. However, the endpoint acknowledges non-ACK-eliciting
-packets when it sends an ACK frame.
+A receiver's delayed acknowledgment timer SHOULD NOT exceed the current RTT
+estimate or the value it indicates in the `max_ack_delay` transport parameter.
+This ensures an acknowledgment is sent at least once per RTT when packets
+needing acknowledgement are received.  The sender can use the receiver's
+`max_ack_delay` value in determining timeouts for timer-based retransmission.

Yes, probably.  This text is pre-existing, and maybe with max_ack_delay the 1 ack per RTT recommendation should be removed, but that's not an editorial 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/2916#discussion_r323439994
----==_mimepart_5d7956fb1bc68_299a3faf83ecd96c4598b
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_r323439994">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  
-Packets containing only ACK frames are not congestion controlled, so there are
-limits on how frequently they can be sent.  An endpoint MUST NOT send more than
-one ACK-frame-only packet in response to receiving an ACK-eliciting packet
-(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 ACK frames avoids an
-infinite feedback loop of acknowledgements, which could prevent the connection
-from ever becoming idle. However, the endpoint acknowledges non-ACK-eliciting
-packets when it sends an ACK frame.
+A receiver&#39;s delayed acknowledgment timer SHOULD NOT exceed the current RTT
+estimate or the value it indicates in the `max_ack_delay` transport parameter.
+This ensures an acknowledgment is sent at least once per RTT when packets
+needing acknowledgement are received.  The sender can use the receiver&#39;s
+`max_ack_delay` value in determining timeouts for timer-based retransmission.
</pre>
<p>Yes, probably.  This text is pre-existing, and maybe with max_ack_delay the 1 ack per RTT recommendation should be removed, but that's not an editorial 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/2916?email_source=notifications&amp;email_token=AFTOJK7C6R7Y3FOKAS7GMXLQJFHHXA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEOAHCA#discussion_r323439994">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY24UNJDF4XYPP5SUTQJFHHXANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK766SUHJJO3ZQAKT3DQJFHHXA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEOAHCA.gif" height="1" width="1" 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=AFTOJK7C6R7Y3FOKAS7GMXLQJFHHXA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEOAHCA#discussion_r323439994",
"url": "https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications\u0026email_token=AFTOJK7C6R7Y3FOKAS7GMXLQJFHHXA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEOAHCA#discussion_r323439994",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7956fb1bc68_299a3faf83ecd96c4598b--


From nobody Wed Sep 11 13:21: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 18094120227 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 13: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 Z1td8XwczxeH for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 13:21:54 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C63281201CE for <quic-issues@ietf.org>; Wed, 11 Sep 2019 13:21:53 -0700 (PDT)
Date: Wed, 11 Sep 2019 13:21:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568233312; bh=D2RLttw4IgeBRbo6OmIKQEX8mKkSxSU+ay6HwWifGGY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yrIqDEYZpSjI89GVdA854cH2+RbSo4bw607N8nzJpj9DqDwG/1UGs5RfQC4bdA9QG oCm8BjT4g/Ju8SyEe8yq0XR0ckaIG8rY07VEyXF/73q5Rfqs86fmAbof6AKjRb2cbt P9L5+qrTaBxBljh5ptmyVteGJ7P2kgbdE2cledAQ=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYHGOAJNXGZ4X54MFF3Q2L7BEVBNHHBYD42OI@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/287049551@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_5d795760ddc62_27de3f94dd4cd9641385e8"; 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/tj_jMz5ct8jFzLkip0i7q61X7cA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 20:21:55 -0000

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

ianswett commented on this pull request.

Thanks for the update Jana, LGTM.

I think we should open an issue for Nick's question.  I wonder if we should remove the text about sending an ACK per RTT entirely?  ie: what if the RTT is 1us?



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

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

<p>Thanks for the update Jana, LGTM.</p>
<p>I think we should open an issue for Nick's question.  I wonder if we should remove the text about sending an ACK per RTT entirely?  ie: what if the RTT is 1us?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJKYUP6MHL4Q24L2JIJTQJFHOBA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEOAOTY#pullrequestreview-287049551">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6Z3LY67ZQOTSIL7GTQJFHOBANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5HMN5ECOVTUIHA4ZTQJFHOBA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEOAOTY.gif" height="1" width="1" 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=AFTOJKYUP6MHL4Q24L2JIJTQJFHOBA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEOAOTY#pullrequestreview-287049551",
"url": "https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications\u0026email_token=AFTOJKYUP6MHL4Q24L2JIJTQJFHOBA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEOAOTY#pullrequestreview-287049551",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d795760ddc62_27de3f94dd4cd9641385e8--


From nobody Wed Sep 11 13:55: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 39873120812 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 13:55:24 -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_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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DAUU3N4X3uMX for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 13:55: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 C6ACA1207FF for <quic-issues@ietf.org>; Wed, 11 Sep 2019 13:55:21 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id E39FEA0855 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 13:55:20 -0700 (PDT)
Date: Wed, 11 Sep 2019 13:55:20 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6WRYD747EQOIR77ZV3Q2P4REVBNHHB2WTA7U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3020@github.com>
Subject: [quicwg/base-drafts] Transport parameter registry is too constraining for innovation (#3020)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d795f38d42ac_4ed3fca47ecd96029254e"; 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/Cw7aUSYDrSA5w4miQ_m2mDbxMQs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 20:55:24 -0000

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

As of [draft-22](https://tools.ietf.org/html/draft-ietf-quic-transport-22#section-22.1), transport parameter identifiers are 16bit integers, with a registry where
- `[0x0000 - 0xfeff]` uses the [RFC8128 Specification Required policy](https://tools.ietf.org/html/rfc8126#section-4.6)
- `[0xff00 - 0xffff]` is reserved for experimentation

While keeping Specification Required makes sense for a good chunk of the registry space, I think there will be many experiments that are conducted before a full specification is written (some already exist today and I expect there to be many many more once the protocol is standardized).

However, those experiments only have 256 values to play with, and that is bound to cause collisions and headaches down the road.

I think the simplest solution to this problem is to use variable length integers for transport parameter identifiers. The TLS presentation language doesn't support them but since we already use VLIs for the values of several transport parameters we're no longer bound by the TLS presentation language. I think there was also support for doing this when it was discussed on #1608, but that issue was closed when the *values* were changed to VLI with #1947, without changing the identifiers.

I'm happy to write the PR if this issue gathers 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/3020
----==_mimepart_5d795f38d42ac_4ed3fca47ecd96029254e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>As of <a href=3D"https://tools.ietf.org/html/draft-ietf-quic-transport=
-22#section-22.1" rel=3D"nofollow">draft-22</a>, transport parameter iden=
tifiers are 16bit integers, with a registry where</p>
<ul>
<li><code>[0x0000 - 0xfeff]</code> uses the <a href=3D"https://tools.ietf=
.org/html/rfc8126#section-4.6" rel=3D"nofollow">RFC8128 Specification Req=
uired policy</a></li>
<li><code>[0xff00 - 0xffff]</code> is reserved for experimentation</li>
</ul>
<p>While keeping Specification Required makes sense for a good chunk of t=
he registry space, I think there will be many experiments that are conduc=
ted before a full specification is written (some already exist today and =
I expect there to be many many more once the protocol is standardized).</=
p>
<p>However, those experiments only have 256 values to play with, and that=
 is bound to cause collisions and headaches down the road.</p>
<p>I think the simplest solution to this problem is to use variable lengt=
h integers for transport parameter identifiers. The TLS presentation lang=
uage doesn't support them but since we already use VLIs for the values of=
 several transport parameters we're no longer bound by the TLS presentati=
on language. I think there was also support for doing this when it was di=
scussed on <a class=3D"issue-link js-issue-link" data-error-text=3D"Faile=
d to load issue title" data-id=3D"345568128" data-permission-text=3D"Issu=
e title is private" data-url=3D"https://github.com/quicwg/base-drafts/iss=
ues/1608" data-hovercard-type=3D"issue" data-hovercard-url=3D"/quicwg/bas=
e-drafts/issues/1608/hovercard" href=3D"https://github.com/quicwg/base-dr=
afts/issues/1608">#1608</a>, but that issue was closed when the <em>value=
s</em> were changed to VLI with <a class=3D"issue-link js-issue-link" dat=
a-error-text=3D"Failed to load issue title" data-id=3D"376248327" data-pe=
rmission-text=3D"Issue title is private" data-url=3D"https://github.com/q=
uicwg/base-drafts/issues/1947" data-hovercard-type=3D"pull_request" data-=
hovercard-url=3D"/quicwg/base-drafts/pull/1947/hovercard" href=3D"https:/=
/github.com/quicwg/base-drafts/pull/1947">#1947</a>, without changing the=
 identifiers.</p>
<p>I'm happy to write the PR if this issue gathers support.</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/3020?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK2NHTIYTDAEESTQ7YTQJFLLRA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFUVEXG43VM=
WVGG33NNVSW45C7NFSM4HK2MD6Q">view it on GitHub</a>, or <a href=3D"https:/=
/github.com/notifications/unsubscribe-auth/AFTOJK3QRNJQH5D6CGEULWTQJFLLRA=
NCNFSM4IVYZAZQ">mute the thread</a>.<img src=3D"https://github.com/notifi=
cations/beacon/AFTOJK3JXVZSICMSKTQH5DLQJFLLRA5CNFSM4IVYZAZ2YY3PNVWWK3TUL5=
2HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HK2MD6Q.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/3020?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK2NHTIYTDAEESTQ7YTQJFLLRA5CNFSM4=
IVYZAZ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HK2MD6Q",
"url": "https://github.com/quicwg/base-drafts/issues/3020?email_source=3D=
notifications\u0026email_token=3DAFTOJK2NHTIYTDAEESTQ7YTQJFLLRA5CNFSM4IVY=
ZAZ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HK2MD6Q",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>=

----==_mimepart_5d795f38d42ac_4ed3fca47ecd96029254e--


From nobody Wed Sep 11 14:47: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 7D7741200A4 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 14:47:39 -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, TVD_SPACE_RATIO=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 FoGliD__kuSp for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 14:47:37 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B5F66120096 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 14:47:37 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 03E0B961B0A for <quic-issues@ietf.org>; Wed, 11 Sep 2019 14:47:37 -0700 (PDT)
Date: Wed, 11 Sep 2019 14:47:36 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-generating-acknowledgements/5a8af7-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/Frt9461vqKOBfIDCzQqO6kpyDkA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 21:47:40 -0000

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


From nobody Wed Sep 11 14:47: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 31D7B120096 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 14:47: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 WPKqaZqvjpBE for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 14:47: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 9C6111201B7 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 14:47:38 -0700 (PDT)
Date: Wed, 11 Sep 2019 14:47:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568238458; bh=2xTZLDSrnXCcyjYR6qDD5Wb4KNpNPw+dwXZa07XAyL4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Ku/X1wB79lVjjrItjEPkf/ldBvztZGHg359GZ+eQVa4+e3YrWkf03RxbsBdVVnP0n eVdtRGPIKwlNKk4wxzTztgVClBatpS0LBiu4YY+E5KuhjxlF+bHw7M5RBJn74G5u72 EXWGuBoNh0XnX84CCZP7djAoYizqrBos+v0YylfU=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2HCAHWVION7EOJUYF3Q2WATEVBNHHBYD42OI@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/c530579562@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_5d796b79e556a_755e3fd8750cd9641883af"; 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/5k-JU4Jsubo5ggVlPHhI_0KGWq8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 21:47:40 -0000

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

@ianswett : I think the ACK per RTT is sensible.... if the RTT is 1us, you still need to send an ACK in that timeframe if the sender is to send more packets. But yes, let's discuss that in a separate 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/2916#issuecomment-530579562
----==_mimepart_5d796b79e556a_755e3fd8750cd9641883af
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> : I think the ACK per RTT is sensible.... if the RTT is 1us, you still need to send an ACK in that timeframe if the sender is to send more packets. But yes, let's discuss that in a separate 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/2916?email_source=notifications&amp;email_token=AFTOJK4YXLBYSA2DWJF752DQJFRPTA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6QAA2Q#issuecomment-530579562">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY4D232HSPGWHMQZFLQJFRPTANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7Y26YEVEI6VSIVHH3QJFRPTA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6QAA2Q.gif" height="1" width="1" 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=AFTOJK4YXLBYSA2DWJF752DQJFRPTA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6QAA2Q#issuecomment-530579562",
"url": "https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications\u0026email_token=AFTOJK4YXLBYSA2DWJF752DQJFRPTA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6QAA2Q#issuecomment-530579562",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d796b79e556a_755e3fd8750cd9641883af--


From nobody Wed Sep 11 14:47: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 5407112081D for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 14:47:41 -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 MtcRYa1P9g0v for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 14:47:37 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 683B6120058 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 14:47:37 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 8EFD5661152 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 14:47:36 -0700 (PDT)
Date: Wed, 11 Sep 2019 14:47:36 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/11de39-7f413b@github.com>
Subject: [quicwg/base-drafts] 812ced: 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/LAUd626g4U58KXS4LE-utgrp_F0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 21:47:42 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 812ced0d74615a9483a593a08b73e406503d2fed
      https://github.com/quicwg/base-drafts/commit/812ced0d74615a9483a593a08b73e406503d2fed
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Move Generating Acknowledgements to Transport


  Commit: f8fc854dc84230cb001eb6f17d8902e1f3fcda95
      https://github.com/quicwg/base-drafts/commit/f8fc854dc84230cb001eb6f17d8902e1f3fcda95
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 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.


  Commit: cfab7ed02da1122be8ff076ea86b6c894e806477
      https://github.com/quicwg/base-drafts/commit/cfab7ed02da1122be8ff076ea86b6c894e806477
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 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


  Commit: 4ac701ed78400ab797ec6d128863478a984501d7
      https://github.com/quicwg/base-drafts/commit/4ac701ed78400ab797ec6d128863478a984501d7
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Stop referencing QUIC Transport

in QUIC Transport.


  Commit: 862bcd3f64a31af9cba383b1d5487b2bc6071fc2
      https://github.com/quicwg/base-drafts/commit/862bcd3f64a31af9cba383b1d5487b2bc6071fc2
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 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.


  Commit: f364aab2cc25702d06509d3c83acdff00d8f0045
      https://github.com/quicwg/base-drafts/commit/f364aab2cc25702d06509d3c83acdff00d8f0045
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Stop referencing host-delay in Recovery

Instead reference section 13.2 of transport


  Commit: 50f2a55bdf2e90740eb042e56978aa3c378aa8f3
      https://github.com/quicwg/base-drafts/commit/50f2a55bdf2e90740eb042e56978aa3c378aa8f3
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Fix CircleCI (hopefully)

By renaming "ACK Ranges" to "Managing ACK Ranges"


  Commit: eed60b25cea7f4b9a0391256ed4dfd4a5cf38565
      https://github.com/quicwg/base-drafts/commit/eed60b25cea7f4b9a0391256ed4dfd4a5cf38565
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

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


  Commit: 67ece93dc91c24be2646e05d8bac4ea444c7f0b1
      https://github.com/quicwg/base-drafts/commit/67ece93dc91c24be2646e05d8bac4ea444c7f0b1
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 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: 6ff4cc0f6f62d2c3f53df957ef6bc5c7ec26c998
      https://github.com/quicwg/base-drafts/commit/6ff4cc0f6f62d2c3f53df957ef6bc5c7ec26c998
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 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: 1a07dcd794a4427518150d2bc47dc4e81568f7d5
      https://github.com/quicwg/base-drafts/commit/1a07dcd794a4427518150d2bc47dc4e81568f7d5
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 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: ce3c950b0e4c1a0cf423b70b68f701d63072ce5c
      https://github.com/quicwg/base-drafts/commit/ce3c950b0e4c1a0cf423b70b68f701d63072ce5c
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 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: d77285c9c7d2887d26e636a412262fef97c16fc4
      https://github.com/quicwg/base-drafts/commit/d77285c9c7d2887d26e636a412262fef97c16fc4
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 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: 19df21525bf3eff2834c5e119d496c258777f5a5
      https://github.com/quicwg/base-drafts/commit/19df21525bf3eff2834c5e119d496c258777f5a5
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Addresses comments and some text rework


  Commit: 55f1ad92f03dfb96d7c07e6e8550faf4f6285399
      https://github.com/quicwg/base-drafts/commit/55f1ad92f03dfb96d7c07e6e8550faf4f6285399
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  re-adding (with some rework) text that was dropped inadvertently


  Commit: d60f633a45413a6234a192703a7a9b7d40cf8ec1
      https://github.com/quicwg/base-drafts/commit/d60f633a45413a6234a192703a7a9b7d40cf8ec1
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  rebase cleanup


  Commit: 17196dc451c9479302e53b33d69a821fd0af3372
      https://github.com/quicwg/base-drafts/commit/17196dc451c9479302e53b33d69a821fd0af3372
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-11 (Wed, 11 Sep 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: 02bbcdf106e9532e3b2cd52ab70591b40e4f23e1
      https://github.com/quicwg/base-drafts/commit/02bbcdf106e9532e3b2cd52ab70591b40e4f23e1
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-11 (Wed, 11 Sep 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: 35a607298e7fc8bb2be98a5eaecb5a2773aeb027
      https://github.com/quicwg/base-drafts/commit/35a607298e7fc8bb2be98a5eaecb5a2773aeb027
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-11 (Wed, 11 Sep 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: ac3e43754ac89bf9eb9441c8623508091e100211
      https://github.com/quicwg/base-drafts/commit/ac3e43754ac89bf9eb9441c8623508091e100211
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-11 (Wed, 11 Sep 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: 6910bcea398723851d7ace7b8d4ff7e2ad9c88a5
      https://github.com/quicwg/base-drafts/commit/6910bcea398723851d7ace7b8d4ff7e2ad9c88a5
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  Reflow a line


  Commit: 5a8af76fb64d5ccc9c16516c409390ccd59f8192
      https://github.com/quicwg/base-drafts/commit/5a8af76fb64d5ccc9c16516c409390ccd59f8192
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  moving text around a bit and mt's comment


  Commit: 7f413bff993be3e7835f88101fc49291e10ef5fb
      https://github.com/quicwg/base-drafts/commit/7f413bff993be3e7835f88101fc49291e10ef5fb
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  Merge pull request #2916 from quicwg/ianswett-generating-acknowledgements

Move Generating Acknowledgements to Transport


Compare: https://github.com/quicwg/base-drafts/compare/11de393fbbde...7f413bff993b


From nobody Wed Sep 11 14:47: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 E67C0120840 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 14:47: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 Rl3oL9p5k--Z for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 14:47: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 2AC1C120058 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 14:47:46 -0700 (PDT)
Date: Wed, 11 Sep 2019 14:47:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568238465; bh=IosguPcELmiXHPJtMUCKGc7qloWR9OE7/q5lKPBlkAs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=n1oa40Oa7EuNMhOlFXdSBqMpNbztilWVU+UbqWhmYdbgVc5cipzzsM0v7NTx3DpVD kE2G6ZN7mpUrmZwWl7h3l/xvJo9tospXV1AVpheWI16L9YrUm4Gq5jf+9J4gxh+dw1 jWb7x9zvy4VlmNXO1C78BJdC1UVNpYJN2V3IVGJg=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK33XLR6NRUQL7RTCDF3Q2WBDEVBNHHBMFVXHI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/1860/issue_event/2627262523@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_5d796b812c946_161b3f9f9accd96c2483f"; 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/niZbyqCeDaX1NQ7ByG2FVn4YNqY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 21:47:49 -0000

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

Closed #1860 via #2916.

-- 
You are receiving this 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#event-2627262523
----==_mimepart_5d796b812c946_161b3f9f9accd96c2483f
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="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> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="470784626" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2916" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2916/hovercard" href="https://github.com/quicwg/base-drafts/pull/2916">#2916</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/1860?email_source=notifications&amp;email_token=AFTOJK7HPQXHQ2Y76VFUX6TQJFRQDA5CNFSM4F3Y7JTKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSMNQOY#event-2627262523">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7MVDFKYGANAOLYRU3QJFRQDANCNFSM4F3Y7JTA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYSTDUNMHCSFK66AB3QJFRQDA5CNFSM4F3Y7JTKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSMNQOY.gif" height="1" width="1" 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=AFTOJK7HPQXHQ2Y76VFUX6TQJFRQDA5CNFSM4F3Y7JTKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSMNQOY#event-2627262523",
"url": "https://github.com/quicwg/base-drafts/issues/1860?email_source=notifications\u0026email_token=AFTOJK7HPQXHQ2Y76VFUX6TQJFRQDA5CNFSM4F3Y7JTKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSMNQOY#event-2627262523",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d796b812c946_161b3f9f9accd96c2483f--


From nobody Wed Sep 11 14:48: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 5FEBD1201B7 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 14:47: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 2zirAPDHrG-u for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 14:47: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 6FE0C120096 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 14:47:46 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id B89288C0DCA for <quic-issues@ietf.org>; Wed, 11 Sep 2019 14:47:45 -0700 (PDT)
Date: Wed, 11 Sep 2019 14:47:45 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2JWETIBY455XRD2753Q2WBDEVBNHHBYD42OI@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/issue_event/2627262516@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_5d796b81a997a_2dde3f7f1e8cd96c4044c"; 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/ocI3vXfYw2M8clwfsw_nZsWwpQs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 21:47:49 -0000

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

Merged #2916 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/2916#event-2627262516
----==_mimepart_5d796b81a997a_2dde3f7f1e8cd96c4044c
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="470784626" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2916" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2916/hovercard" href="https://github.com/quicwg/base-drafts/pull/2916">#2916</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/2916?email_source=notifications&amp;email_token=AFTOJKZUNI6GB73M7TOAF7LQJFRQDA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSMNQNA#event-2627262516">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYC6IY2TWIPFKYJA3TQJFRQDANCNFSM4IFSL75Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3EB45EXHKQV7WG3ALQJFRQDA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSMNQNA.gif" height="1" width="1" 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=AFTOJKZUNI6GB73M7TOAF7LQJFRQDA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSMNQNA#event-2627262516",
"url": "https://github.com/quicwg/base-drafts/pull/2916?email_source=notifications\u0026email_token=AFTOJKZUNI6GB73M7TOAF7LQJFRQDA5CNFSM4IFSL752YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSMNQNA#event-2627262516",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d796b81a997a_2dde3f7f1e8cd96c4044c--


From nobody Wed Sep 11 14:48: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 DB662120096 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 14:48: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 3iaoBdpP5HAP for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 14:48:23 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5FB1B120058 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 14:48:23 -0700 (PDT)
Date: Wed, 11 Sep 2019 14:48:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568238502; bh=aFVBZScY9kLEiSXBP10aqvCRzI6J1Me0g+ATUASOdv8=; h=Date:From:To:Subject:From; b=x+Uw2DafiN2iaM0mBVpqLvDQfBEzM6dF7ooUiJ4m7/Q1oyF9GDuVw0KBqV9xrNEQv rkztWmyIBncCi6FsJyRj00UEcphPv1DYhWYmIZXmD9di5v5+ktruKrfDwo1GfrN5n7 ahoMGzAcWjuw1qC1pefQiz80s7Zni0tbtaSJCMcY=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/757181-6de783@github.com>
Subject: [quicwg/base-drafts] 6de783: Script updating gh-pages from 7f413bff. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_RYdtxG3gevy1T6LpPoU1DYQXIk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 21:48:25 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6de783dcf5ccdf48956248e6fee0fd4b52c8216f
      https://github.com/quicwg/base-drafts/commit/6de783dcf5ccdf48956248e6fee0fd4b52c8216f
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

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



From nobody Wed Sep 11 14:51: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 CA4FA120096 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 14:51:36 -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 frl738pY1KzF for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 14:51: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 6727E120058 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 14:51:35 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id C6326A1DB4 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 14:51:34 -0700 (PDT)
Date: Wed, 11 Sep 2019 14:51:34 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5CDM45I2A24FLQQOF3Q2WPNEVBNHHB2UXKPQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3019/review/287094482@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3019@github.com>
References: <quicwg/base-drafts/pull/3019@github.com>
Subject: Re: [quicwg/base-drafts] Changelog for transport-23 (#3019)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d796c66b5a08_1a553faaed2cd96813911a"; 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/9YjNQRChGZvScWbyKqLJNhsi8eY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 11 Sep 2019 21:51:37 -0000

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

janaiyengar commented on this pull request.



> +- A maximum ACK delay of 0 is used for handshake packet number spaces (#2646,
+  #2638)
+- Improved rules for use of congestion control state on new paths (#2685, #2918)
+- PATH_RESPONSE frames are not sent again if lost (#2724, #2729)
+- Removed recommendation to coordinate spin for multiple connections that share
+  a path (#2763, #2882)
+- Allow smaller stateless resets and recommend a smaller minimum on packets
+  that might trigger a stateless reset (#2770, #2869, #2927)
+- Provide guidance around the interface to QUIC as used by application protocols
+  (#2805, #2857)
+- Frames other than STREAM can cause STREAM_LIMIT_ERROR (#2825, #2826)
+- Tighter rules about processing of rejected 0-RTT packets (#2829, #2840, #2841)
+- Explanation of the effect of Retry on 0-RTT packets (#2842, #2852)
+- Cryptographic handshake needs to provide server transport parameter encryption
+  (#2920, #2921)
+

#2916 is now merged.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3019#discussion_r323475980
----==_mimepart_5d796c66b5a08_1a553faaed2cd96813911a
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/3019#discussion_r323475980">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +- A maximum ACK delay of 0 is used for handshake packet number spaces (#2646,
+  #2638)
+- Improved rules for use of congestion control state on new paths (#2685, #2918)
+- PATH_RESPONSE frames are not sent again if lost (#2724, #2729)
+- Removed recommendation to coordinate spin for multiple connections that share
+  a path (#2763, #2882)
+- Allow smaller stateless resets and recommend a smaller minimum on packets
+  that might trigger a stateless reset (#2770, #2869, #2927)
+- Provide guidance around the interface to QUIC as used by application protocols
+  (#2805, #2857)
+- Frames other than STREAM can cause STREAM_LIMIT_ERROR (#2825, #2826)
+- Tighter rules about processing of rejected 0-RTT packets (#2829, #2840, #2841)
+- Explanation of the effect of Retry on 0-RTT packets (#2842, #2852)
+- Cryptographic handshake needs to provide server transport parameter encryption
+  (#2920, #2921)
+
</pre>
<p><a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="470784626" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2916" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2916/hovercard" href="https://github.com/quicwg/base-drafts/pull/2916">#2916</a> is now merged.</p>

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


From nobody Wed Sep 11 18: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 30DF3120AE0 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:05: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 uMrw_Xud8U6E for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:05:14 -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 BEE7B120A93 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:05:11 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:05:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568250310; bh=l2hHDSpR+RpvHDyiPDYEIzVQvaCMGZ417N69yRw/sAA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qKHdu/hdbFZPVzd1YCp+OHVoR+WroJ1dYPL7khmnfz/xPGrkz5pr6vjd/iDNepl6Y 8HyBLyxZ0SjGcZ7kFBXfvw79um0YRWw0UTlpt9/z/ekhmXbgg5OfCb5hWX1rlbsOJK uOAE73wDcDgeSQ/5W0Xlo7wyI/INolzFNt4cIZjc=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7XZZD7OUAOU2FCOGF3Q27DNEVBNHHB2WTA7U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3020/530622380@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3020@github.com>
References: <quicwg/base-drafts/issues/3020@github.com>
Subject: Re: [quicwg/base-drafts] Transport parameter registry is too constraining for innovation (#3020)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7999c695a7c_53a63f80648cd95c9829a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-zbNvFQFNJjRD_heyv4Z8XUn-NQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:05:16 -0000

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

You aren't the first to suggest this one.  Let's make sure we at least discuss this directly.  We did discuss this in the context of the issues that you cite and decided not to, but that was never the central question.

>From our perspective, this isn't a significant change to code.

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

<p>You aren't the first to suggest this one.  Let's make sure we at least discuss this directly.  We did discuss this in the context of the issues that you cite and decided not to, but that was never the central question.</p>
<p>From our perspective, this isn't a significant change to 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/3020?email_source=notifications&amp;email_token=AFTOJKYUQ2C6PIIP7DQZHNTQJGIUNA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6QKPLA#issuecomment-530622380">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6XWH7G6WECAQRJYMTQJGIUNANCNFSM4IVYZAZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4MHPZNYAZ3LBPGVMTQJGIUNA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6QKPLA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJKYUQ2C6PIIP7DQZHNTQJGIUNA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6QKPLA#issuecomment-530622380",
"url": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJKYUQ2C6PIIP7DQZHNTQJGIUNA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6QKPLA#issuecomment-530622380",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7999c695a7c_53a63f80648cd95c9829a--


From nobody Wed Sep 11 18: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 8E96A120B15 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:08:57 -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 42oLgyD7NsOD for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:08:56 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2977D120AE0 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:08:56 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 8C7496E0477 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:08:55 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:08:55 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/changelog-tt-23/c88085-e9aa25@github.com>
Subject: [quicwg/base-drafts] e9aa25: Add #2916 too
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fK3HEdW2IZ4kDlAUpu0uLOB4k2c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:08:58 -0000

  Branch: refs/heads/changelog-tt-23
  Home:   https://github.com/quicwg/base-drafts
  Commit: e9aa25a0bdebb42dbf392ad551a72aa0eb7531f8
      https://github.com/quicwg/base-drafts/commit/e9aa25a0bdebb42dbf392ad551a72aa0eb7531f8
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-12 (Thu, 12 Sep 2019)

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

  Log Message:
  -----------
  Add #2916 too



From nobody Wed Sep 11 18:09: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 A3869120B9C for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:09:05 -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 Yi6xLc2swXQw for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:09: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 563A1120AE0 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:09:04 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id BCB3596004E for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:09:03 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:09:03 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3019/push/4024361764@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3019@github.com>
References: <quicwg/base-drafts/pull/3019@github.com>
Subject: Re: [quicwg/base-drafts] Changelog for transport-23 (#3019)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d799aaf98c7f_2cce3f7ed88cd96c910fd"; 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/2evuSZAv25hwpMvOJ-OVFOUQl6s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:09:06 -0000

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

@martinthomson pushed 1 commit.

e9aa25a0bdebb42dbf392ad551a72aa0eb7531f8  Add #2916 too


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

----==_mimepart_5d799aaf98c7f_2cce3f7ed88cd96c910fd
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/e9aa25a0bdebb42dbf392ad551a72aa0eb7531f8">e9aa25a</a>  Add #2916 too</li>
</ul>


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

----==_mimepart_5d799aaf98c7f_2cce3f7ed88cd96c910fd--


From nobody Wed Sep 11 18:11: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 B67931208AB for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11: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 d-DHdaPkFTAj for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:10:59 -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 8312B120013 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:10:28 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:10:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568250628; bh=UlTsl3HgGEpFCz/OMmEZKcbGFYanpZPI4OBUKIks0HA=; h=Date:From:To:Subject:From; b=l+ZDk8Aubjlab7jkiUOtC4Ud/cDi5TMuASizt96ant21GvMW6vjYpkTLMPcadXFR8 rGM721jT9JJzrUOhnuGxWZn1axQev6enzWPoTqmd8Rd+bx5ALVo6P6M9+FiBzEyLn4 I3m6oDDw7KjJkQt9cK8J35OQhDbXDphXJOO0HuUw=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/6de783-37c519@github.com>
Subject: [quicwg/base-drafts] 37c519: Script updating gh-pages from e9aa25a0. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FpptRAQJ8Nt-a9zz6QBzxi2Pafw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:11:01 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 37c519ddab87e05023c9f9f786f1cfd2c8801071
      https://github.com/quicwg/base-drafts/commit/37c519ddab87e05023c9f9f786f1cfd2c8801071
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-12 (Thu, 12 Sep 2019)

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

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



From nobody Wed Sep 11 18: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 6A879120013 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11:02 -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 T-57GPRRYaQx for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11: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 3CE0E12006B for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:10:55 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 52E0A8C0E47 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:10:54 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:10:54 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/7f413b-90a814@github.com>
Subject: [quicwg/base-drafts] c3a6f9: Recovery Changelog
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8HefzwgAsiW7oKhPcFjTviO54k4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:11:02 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: c3a6f9f39708d5763f92aa2e135fc67b5d32d26f
      https://github.com/quicwg/base-drafts/commit/c3a6f9f39708d5763f92aa2e135fc67b5d32d26f
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  Recovery Changelog


  Commit: bcbecf2c96ac99b7bda8e8683af70e7bf1e6d1c9
      https://github.com/quicwg/base-drafts/commit/bcbecf2c96ac99b7bda8e8683af70e7bf1e6d1c9
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

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


  Commit: 42db62060551f933d3b4eb951c02f44d6958f1b3
      https://github.com/quicwg/base-drafts/commit/42db62060551f933d3b4eb951c02f44d6958f1b3
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

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


  Commit: 515185d51882f5d635471215b54959724ca1015e
      https://github.com/quicwg/base-drafts/commit/515185d51882f5d635471215b54959724ca1015e
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  Changelog for transport-23


  Commit: c880853f1a9ec3dc05a4912fc17058296c1e0e9b
      https://github.com/quicwg/base-drafts/commit/c880853f1a9ec3dc05a4912fc17058296c1e0e9b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

  Log Message:
  -----------
  Remove issues that were closed between 2019-06-09 and 2019-07-09 from -23 changelog


  Commit: 61fa0943fc52f85c23b7529bd6d620824c99f203
      https://github.com/quicwg/base-drafts/commit/61fa0943fc52f85c23b7529bd6d620824c99f203
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-11 (Wed, 11 Sep 2019)

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

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


  Commit: e9aa25a0bdebb42dbf392ad551a72aa0eb7531f8
      https://github.com/quicwg/base-drafts/commit/e9aa25a0bdebb42dbf392ad551a72aa0eb7531f8
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-12 (Thu, 12 Sep 2019)

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

  Log Message:
  -----------
  Add #2916 too


  Commit: 2b3738d004ada613f187a6b16afd6060c3247209
      https://github.com/quicwg/base-drafts/commit/2b3738d004ada613f187a6b16afd6060c3247209
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-12 (Thu, 12 Sep 2019)

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

  Log Message:
  -----------
  Add #2916 to listing


  Commit: 2ae2985849cdde7e7469b737e9fad8b33b6d0bf5
      https://github.com/quicwg/base-drafts/commit/2ae2985849cdde7e7469b737e9fad8b33b6d0bf5
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-12 (Thu, 12 Sep 2019)

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

  Log Message:
  -----------
  Merge branch 'ianswett-recovery-changelog'


  Commit: 90a8141fb05c22b9b73fc54c78cae593ae730179
      https://github.com/quicwg/base-drafts/commit/90a8141fb05c22b9b73fc54c78cae593ae730179
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-12 (Thu, 12 Sep 2019)

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

  Log Message:
  -----------
  Merge branch 'changelog-tt-23'


Compare: https://github.com/quicwg/base-drafts/compare/7f413bff993b...90a8141fb05c


From nobody Wed Sep 11 18:11: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 2C7B21208AB for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11:05 -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, TVD_SPACE_RATIO=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 WY_Tm98QzOi9 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11: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 499A612083E for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:10:59 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id A2E9C8C1168 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:10:58 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:10:58 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-recovery-changelog/61fa09-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/gLNNkdqtq5-6tK_SsoZ1a07WtD8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:11:05 -0000

  Branch: refs/heads/ianswett-recovery-changelog
  Home:   https://github.com/quicwg/base-drafts


From nobody Wed Sep 11 18:11: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 5FE3612083E for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11: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, 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 Fr5Sfbgs83A3 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11:03 -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 675C61208A1 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:11:00 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:10:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568250660; bh=0OeL52CYEKojfm29ar2UnEjvlE1vbe5HGlf+D9qk09Q=; h=Date:From:To:Subject:From; b=ssLzebWxEJgGYK4yZrZKCUCusZUZvF5RE+hBsHKxvXw/JdaWUWp60oiyJ8QsOQFSk QNLQ2MbC25o3y/hcjiiNCG9QxbfDSmXAHzOrmEvf2Stk5yqga7zvzPqfekZ7J9y4pH AP/Yv/OFLF49YW53+/1G68ovHlWPS8KUlPU6v8Uw=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/changelog-tt-23/e9aa25-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/vbNLlmFUECrWfz7yn1s_p0t9Bh4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:11:06 -0000

  Branch: refs/heads/changelog-tt-23
  Home:   https://github.com/quicwg/base-drafts


From nobody Wed Sep 11 18:11: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 A23F4120C6F for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11:11 -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 CV7MQuXHCjjF for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11: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 BAF5812083E for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:11:08 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id F155B6E1156 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:11:07 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:11:07 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/90a814-3d21ce@github.com>
Subject: [quicwg/base-drafts] f80d88: HTTP-23 changelog
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/l2cIPEDx9bgJq_2S4Fyyoua346g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:11:12 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: f80d883bf46de52f4bc68f94b5ed7e3669024a41
      https://github.com/quicwg/base-drafts/commit/f80d883bf46de52f4bc68f94b5ed7e3669024a41
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2019-09-10 (Tue, 10 Sep 2019)

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

  Log Message:
  -----------
  HTTP-23 changelog


  Commit: 3d21ced982d053fc6f6101fe68a9d4a6f648778f
      https://github.com/quicwg/base-drafts/commit/3d21ced982d053fc6f6101fe68a9d4a6f648778f
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-12 (Thu, 12 Sep 2019)

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

  Log Message:
  -----------
  Merge pull request #3017 from quicwg/http/changelog_23

HTTP-23 changelog


Compare: https://github.com/quicwg/base-drafts/compare/90a8141fb05c...3d21ced982d0


From nobody Wed Sep 11 18: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 4678D120C73 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11:12 -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 ci_3f16HntgV for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11: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 249DD120BEB for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:11:10 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 7CF6496074E for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:11:09 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:11:09 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7446YRNE4ZQ7TCBVF3Q3G23EVBNHHB2UXKPQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3019/issue_event/2627566080@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3019@github.com>
References: <quicwg/base-drafts/pull/3019@github.com>
Subject: Re: [quicwg/base-drafts] Changelog for transport-23 (#3019)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d799b2d6dedf_35473fafd5ecd9607654b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7mB_xzbEgEONyG6jh7ULoJtfdnM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:11:12 -0000

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

Merged #3019 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/3019#event-2627566080
----==_mimepart_5d799b2d6dedf_35473fafd5ecd9607654b
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="491973244" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3019" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3019/hovercard" href="https://github.com/quicwg/base-drafts/pull/3019">#3019</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/3019?email_source=notifications&amp;email_token=AFTOJK6QFZSGJNRA4XNFIK3QJGJK3A5CNFSM4IVOHKUKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSOXUAA#event-2627566080">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2D5NCQ7OIO2C3UUDTQJGJK3ANCNFSM4IVOHKUA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6KOYRY3YCD5ZPQNN3QJGJK3A5CNFSM4IVOHKUKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSOXUAA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3019?email_source=notifications\u0026email_token=AFTOJK6QFZSGJNRA4XNFIK3QJGJK3A5CNFSM4IVOHKUKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSOXUAA#event-2627566080",
"url": "https://github.com/quicwg/base-drafts/pull/3019?email_source=notifications\u0026email_token=AFTOJK6QFZSGJNRA4XNFIK3QJGJK3A5CNFSM4IVOHKUKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSOXUAA#event-2627566080",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d799b2d6dedf_35473fafd5ecd9607654b--


From nobody Wed Sep 11 18:11: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 87EF9120013 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11: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 V29VJBvjiqZf for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11:11 -0700 (PDT)
Received: from out-12.smtp.github.com (out-12.smtp.github.com [192.30.254.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 269A3120C38 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:11:11 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:11:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568250670; bh=MV7ERs9W3fuLTwqPmsb2N/NGygPMmLwZYGTCry5zDHI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bx6jGEpGYrbTPdJJILwx7Pmc/damMMh3yYBaG5scyyGKDxsLZ2f/DUheuQh9UQzmK ucRb3X3sglkgFgRs6181cTRGklRnsMu6aZE/IDS5cXlc3bJZOur7QFbute0F/b02T+ JElZj3YjrjfvLnDPYFhILbguMrr0pyA2VQQGoLLo=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7FK4ZBRHO2UPI4WZ53Q3G25EVBNHHB2UTSTY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3018/issue_event/2627566052@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3018@github.com>
References: <quicwg/base-drafts/pull/3018@github.com>
Subject: Re: [quicwg/base-drafts] Recovery Changelog (#3018)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d799b2e8a28b_156b3ff1138cd96410661"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/GTj8nj3HHgvtxeIfQFS9agilWh0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:11:15 -0000

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

Merged #3018 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/3018#event-2627566052
----==_mimepart_5d799b2e8a28b_156b3ff1138cd96410661
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="491942558" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3018" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3018/hovercard" href="https://github.com/quicwg/base-drafts/pull/3018">#3018</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/3018?email_source=notifications&amp;email_token=AFTOJK35QQVWP3TPX4DPDQLQJGJK5A5CNFSM4IVNRCWKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSOXTZA#event-2627566052">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZU3FPV5USHVAVS5DDQJGJK5ANCNFSM4IVNRCWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7IBA7IYQ2OEAPJSODQJGJK5A5CNFSM4IVNRCWKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSOXTZA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3018?email_source=notifications\u0026email_token=AFTOJK35QQVWP3TPX4DPDQLQJGJK5A5CNFSM4IVNRCWKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSOXTZA#event-2627566052",
"url": "https://github.com/quicwg/base-drafts/pull/3018?email_source=notifications\u0026email_token=AFTOJK35QQVWP3TPX4DPDQLQJGJK5A5CNFSM4IVNRCWKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSOXTZA#event-2627566052",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d799b2e8a28b_156b3ff1138cd96410661--


From nobody Wed Sep 11 18:11: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 4263E1208B6 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11:15 -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, TVD_SPACE_RATIO=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 17jYvfjlNwc8 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11:10 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 36FF31208A1 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:11:09 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id 7343DA00A9 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:11:08 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:11:08 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/http/changelog_23/f80d88-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/XvwsL3h3rP82Cgfux0VLG387X-Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:11:15 -0000

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


From nobody Wed Sep 11 18:11: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 2DA5812006B for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11: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 X6mT13RGLB81 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11:25 -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 F05FE1208A1 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:11:19 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:11:19 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568250679; bh=eldOH5a4/l1fC05Loob1unT8xD+2AOUSz+GCmjLBxXM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qbIY9dzDshOQctKkfiTqKNciy1AEfNo59wt7KE5RUFFoSYl9kCyAJqE+SMDhnFI6a n5BBm83PZK6UAtoaLKkkmk/1X1b+8nYOij7MBa+mMATWSbhwHzcPK8rzrHlRqIdeRD 8vdBh0wKhS+NfASi1TDU2ZujQGJVJ3DSCI5oWmUc=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK47IPQBI4COF6HZ3GV3Q272PEVBNHHB2USWPE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3017/issue_event/2627566271@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3017@github.com>
References: <quicwg/base-drafts/pull/3017@github.com>
Subject: Re: [quicwg/base-drafts] HTTP-23 changelog (#3017)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d799b37492ff_71ed3fc676ecd96c2302b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fp6Pm6WHwFly9mgYOiGiACvKswE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:11:26 -0000

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

Merged #3017 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/3017#event-2627566271
----==_mimepart_5d799b37492ff_71ed3fc676ecd96c2302b
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="491935353" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3017" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3017/hovercard" href="https://github.com/quicwg/base-drafts/pull/3017">#3017</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/3017?email_source=notifications&amp;email_token=AFTOJK2O7B3FQW6BGADKI3TQJGJLPA5CNFSM4IVNL7VKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSOXVPY#event-2627566271">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2MD5VF4FHEBMJC5CTQJGJLPANCNFSM4IVNL7VA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6EIKRE7XBWXIAMZRLQJGJLPA5CNFSM4IVNL7VKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSOXVPY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3017?email_source=notifications\u0026email_token=AFTOJK2O7B3FQW6BGADKI3TQJGJLPA5CNFSM4IVNL7VKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSOXVPY#event-2627566271",
"url": "https://github.com/quicwg/base-drafts/pull/3017?email_source=notifications\u0026email_token=AFTOJK2O7B3FQW6BGADKI3TQJGJLPA5CNFSM4IVNL7VKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSOXVPY#event-2627566271",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d799b37492ff_71ed3fc676ecd96c2302b--


From nobody Wed Sep 11 18:11: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 519F3120A5C for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 iouimqqnYTCD for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11: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 E575012083E for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:11: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 33EF96A133E for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:11:24 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:11:24 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/37c519-f2a826@github.com>
Subject: [quicwg/base-drafts] f2a826: Script updating gh-pages from 90a8141f. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/P2uoki-roJiaN3eU8BuNUKztqhI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:11:29 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f2a8265b16cc7b20e5d561cb3bd53f911b8a3c4f
      https://github.com/quicwg/base-drafts/commit/f2a8265b16cc7b20e5d561cb3bd53f911b8a3c4f
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-12 (Thu, 12 Sep 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 90a8141f. [ci skip]



From nobody Wed Sep 11 18:12: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 0B95C1208A1 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 P8WUWod8rmOI for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:11:57 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BEB7712083E for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:11:46 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 30BA0A0C52 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:11:46 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:11:46 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f2a826-cce804@github.com>
Subject: [quicwg/base-drafts] cce804: Script updating gh-pages from 3d21ced9. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jCdijz4GvUX6S2IdMyfMP9XmQNE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:11:59 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: cce804caa38ee670e66f809f3b03bbf670858f69
      https://github.com/quicwg/base-drafts/commit/cce804caa38ee670e66f809f3b03bbf670858f69
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-12 (Thu, 12 Sep 2019)

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

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



From nobody Wed Sep 11 18:12: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 17AE5120013 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:12: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 7Wac8lHefO2J for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:12: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 EFD3512006B for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:12:18 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:12:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568250738; bh=QeGPLRXV8Uie3LAo9fhveBt9F8hjzJuRFwORd3n/nTg=; h=Date:From:To:Subject:From; b=Iap8I0TM86pi5JwA9LS3KPEs/tgtyRl4pnbyHPjKQM8h8ljNggALYkHbFQwG8m4cI MzFWSYi8r3PVCJw0F7AQN+4dP7APIvuTbrwNeDiWDnfwT5IsMuL9oXxhoazeDDC1Vy wggjaEL5oWpcs45YF6lC/WLlFQnB4jQg6bei56T4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/cce804-82adb8@github.com>
Subject: [quicwg/base-drafts] 82adb8: Script updating issues at 2019-09-12T01:12:11Z. [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/rYAXWMTy4y5xKQL3ptc4sg3VD7s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:12:24 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 82adb85b92627da8ab6695f16b8ed941fb5a135e
      https://github.com/quicwg/base-drafts/commit/82adb85b92627da8ab6695f16b8ed941fb5a135e
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-12 (Thu, 12 Sep 2019)

  Changed paths:
    M issues.json
    M pulls.json

  Log Message:
  -----------
  Script updating issues at 2019-09-12T01:12:11Z. [ci skip]



From nobody Wed Sep 11 18:13: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 AD140120C42 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:13:24 -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, TVD_SPACE_RATIO=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 vDQktgWxFu86 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:13:23 -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 4E17F120C31 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:13:23 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 0B4C3260482 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:13:23 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:13:22 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-http-23/000000-57bff6@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/LMKnd7rZ2c6xPuKNYBtsVXi_uzE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:13:25 -0000

  Branch: refs/tags/draft-ietf-quic-http-23
  Home:   https://github.com/quicwg/base-drafts


From nobody Wed Sep 11 18: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 47D7D120C55 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:13: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, 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 4PD0bRHYumWT for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:13:28 -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 072D8120C42 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:13:28 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:13:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568250807; bh=SXh4yHMr2da6NGVCAStsOp8KisClLDO2FE6LVdB9MCg=; h=Date:From:To:Subject:From; b=LWFctpRf5kWXU1xgk+e4QM/sQEIxtQY3JEfclw14h4ALlk0ea49qIeZpJRieic+51 fQoM6FNDWT/QQmbBpKEFa1CQC9oZhWZ34mihEe6HCI0cjUWwImzgHVyOueRlMi8Dbh kHq3vvD3XgyVq2on7yPx/emw97SvjxeAhwz6vkuE=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-invariants-07/000000-19f8c1@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/W98OnfLtAIUhKYABMJ2Y7boqU_w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:13:29 -0000

  Branch: refs/tags/draft-ietf-quic-invariants-07
  Home:   https://github.com/quicwg/base-drafts


From nobody Wed Sep 11 18:13: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 D8005120C70 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:13: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 4sTCAlUjksUU for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:13: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 7E2D1120C38 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:13:32 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:13:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568250811; bh=OfNtwRIEvAj9O7XNXKJyoXCA8SudSfp9SvKvAjmN1oM=; h=Date:From:To:Subject:From; b=XDUQPl4jPGWYxiPmTDDnm1dkYgvETtQP5BcRm4VPT2g9yiPiJvyKmdrxogRzwSGOT vRQkuRv5UGqeWteVCbY6EDH6OeBN/FX+jfk/lXR9Oy/hLwa+mszM6e3aTKvWlYdkQv 9ud9mntBLrYmWADJaVzzODVQSa+nqsaKU62DmWd4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-qpack-10/000000-08c303@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/FAGSV2PeUsJDSRcGQeTpq7BIivU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:13:34 -0000

  Branch: refs/tags/draft-ietf-quic-qpack-10
  Home:   https://github.com/quicwg/base-drafts


From nobody Wed Sep 11 18:13: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 2BF72120C7B for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:13:44 -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 RwexTvVPY2QJ for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:13: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 78D7A120C6B for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:13:41 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:13:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568250820; bh=cs36VM0cEHU1uP3RV30NbFqI+v5udmF79hEdxsXCwLU=; h=Date:From:To:Subject:From; b=0oXS9K58ezz1yTvVU/H0CQyecaMrqklZN734UQbd/j9QLCohXHIINsxvoXNoTMjLZ UkeR+EhG2Yqguva2d/XY8RBlxSh1jNzJoXTP5mfzbxfM3/TxfQkdBNH7aMyG7OPwsN Bo6XEWuuQOx8NhUCC8h0SUmu90ppyXAzOb7zqgxw=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-tls-23/000000-322405@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/f43NFM0tWstPP5duUx6T98GLNlk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:13:45 -0000

  Branch: refs/tags/draft-ietf-quic-tls-23
  Home:   https://github.com/quicwg/base-drafts


From nobody Wed Sep 11 18:14: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 A6024120C73 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:13: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 M-QR9V83V2hz for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:13: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 CFFBF120C9E for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:13:45 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:13:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568250825; bh=s5JM5JfpydLnyFwdqa1fV2yMtoav0hyhIrTXoTSy8FU=; h=Date:From:To:Subject:From; b=X7AgKC/ExXHH7yZgoGJxkA2gnEKvp9BYQl4IYrqC2Sdl1WFfwFYE6D0Oy/vcNSGR0 eCxvGG6nlb9tmS4lKRQ7ryhdv2mZcc05YcKCCasbymQESF6UAVGycF4ox1bIIHc4ik 4JqKPfChPB8ntMrL2HdINGYtPWRntBiXB9Veo0/4=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-transport-23/000000-9b8941@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/xOLT7E2Dw6Vif1L6BmrapLTDcag>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:13:55 -0000

  Branch: refs/tags/draft-ietf-quic-transport-23
  Home:   https://github.com/quicwg/base-drafts


From nobody Wed Sep 11 18:20: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 B294612012D for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:20: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=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 Dnv_lFJh2ESK for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:20: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 DC1E2120C38 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:13:36 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:13:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568250816; bh=7EcCObR5FJliYLV48hhcjOA+F8qQCaKKbtL7YTneWVk=; h=Date:From:To:Subject:From; b=To2EWKPTtovdxJsjH9W4HYqi4YGCNEGTbKp9eALDd1jpfEfrwZQ5wtl6K3FeTKWXf X26BK+FC8Q+WMF89CXdek0o40agUke82scVGee5w0uCWt/IRR+MPg1ru37Pxi79fdR X7kcmMckJyDVznIFRwO7vCc9uOtYUkIQhmw/7Syg=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-recovery-23/000000-94b851@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/RaEAkMNyHARHohvpqaoKWuew3Tg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:20:20 -0000

  Branch: refs/tags/draft-ietf-quic-recovery-23
  Home:   https://github.com/quicwg/base-drafts


From nobody Wed Sep 11 18: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 4E84F12001A for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:42:04 -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 qQjibm5wh4jC for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:42: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 CC4E7120013 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:42:02 -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 ECBEF6A0647 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:42:01 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:42:01 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2ZIZT3JFZIW24UBBF3Q3KOTEVBNHHB2WTA7U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3020/530629679@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3020@github.com>
References: <quicwg/base-drafts/issues/3020@github.com>
Subject: Re: [quicwg/base-drafts] Transport parameter registry is too constraining for innovation (#3020)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d79a269ddd74_31013fe8248cd95c183328"; 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/1EpiCXyT1SH7YOOwzGnCUz2GeWg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:42:04 -0000

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

> From our perspective, this isn't a significant change to code.

The same for us, too.

Am I understanding correctly that the concern here is that extensions of TLS structures tend to use uint16_t as their type identifiers, and that the reusable parser might be constrained to that design pattern?

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

<blockquote>
<p>From our perspective, this isn't a significant change to code.</p>
</blockquote>
<p>The same for us, too.</p>
<p>Am I understanding correctly that the concern here is that extensions of TLS structures tend to use uint16_t as their type identifiers, and that the reusable parser might be constrained to that design pattern?</p>

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


From nobody Wed Sep 11 18:47: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 C814B12081F for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18: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 4yQ-A8dMBM_8 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:47: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 2C456120013 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:47:42 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:47:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568252861; bh=aor36QEYslsOZ+GFZUmWyHpMTm/9o/WtBqXJXTqNeDc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CwrcDE2WuM6CcS5ffgKlHhnyovSqiIQ3t3XnHq8vLePUWo/3S5irxzZMRGysmYLt2 M1AscJeSK8dRtSIo2kxCANe36bvOjsYyGAM0P3vQAJ027LdAkEs/9kOXdgilO8bjkt WbTfedg9pdQuOlGcdHT7Qv/mZZjyLJho/Df3otEI=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYES6H7VBL6FGTZCYN3Q3EC3EVBNHHB2WTA7U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3020/530630727@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3020@github.com>
References: <quicwg/base-drafts/issues/3020@github.com>
Subject: Re: [quicwg/base-drafts] Transport parameter registry is too constraining for innovation (#3020)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d79a3bd2c6eb_320b3fae610cd95c25804e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/N9ypdubRg2oa63Oc0oJUjUW5OM4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:47:44 -0000

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

I thought that this might be the case originally, but it turns out that the blob for transport parameters is generated by QUIC code in mostly all of the cases I have seen.  If there is someone out there who is relying on passing a TLS stack a structured grammar and letting the TLS stack perform serialization, then we might want to just leave this alone.

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

<p>I thought that this might be the case originally, but it turns out that the blob for transport parameters is generated by QUIC code in mostly all of the cases I have seen.  If there is someone out there who is relying on passing a TLS stack a structured grammar and letting the TLS stack perform serialization, then we might want to just leave this alone.</p>

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


From nobody Wed Sep 11 18: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 C419912003F for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:54:41 -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 sW7EVmCh528R for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 18:54: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 2C37E120013 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:54:40 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 365BB9610BC for <quic-issues@ietf.org>; Wed, 11 Sep 2019 18:54:39 -0700 (PDT)
Date: Wed, 11 Sep 2019 18:54:39 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5ICZAZS4JKXRDJQ6V3Q3L57EVBNHHB2WTA7U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3020/530631920@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3020@github.com>
References: <quicwg/base-drafts/issues/3020@github.com>
Subject: Re: [quicwg/base-drafts] Transport parameter registry is too constraining for innovation (#3020)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d79a55f27242_15af3fec860cd96c3032c1"; 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/pU8GpfDqIjpNpZMSKccj3yfDdZ4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 01:54:42 -0000

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

Thank you for the clarification.

We _do_ use the TLS stack to encode / decode the transport parameters, therefore we do want see the TLS grammar-based design being preserved. The reason we do not mind the extension type being a varint is because our codec is flexible enough to handle that.
https://github.com/h2o/quicly/blob/master/lib/quicly.c#L1353-L1437

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

<p>Thank you for the clarification.</p>
<p>We <em>do</em> use the TLS stack to encode / decode the transport parameters, therefore we do want see the TLS grammar-based design being preserved. The reason we do not mind the extension type being a varint is because our codec is flexible enough to handle that.<br>
<a href="https://github.com/h2o/quicly/blob/master/lib/quicly.c#L1353-L1437">https://github.com/h2o/quicly/blob/master/lib/quicly.c#L1353-L1437</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/3020?email_source=notifications&amp;email_token=AFTOJKZ6TBQNBOX6AK5TO33QJGON7A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6QMZ4A#issuecomment-530631920">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2YL76QUK4S422DKPDQJGON7ANCNFSM4IVYZAZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6UG3VES7SNQGJHV3LQJGON7A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6QMZ4A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJKZ6TBQNBOX6AK5TO33QJGON7A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6QMZ4A#issuecomment-530631920",
"url": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJKZ6TBQNBOX6AK5TO33QJGON7A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6QMZ4A#issuecomment-530631920",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d79a55f27242_15af3fec860cd96c3032c1--


From nobody Wed Sep 11 20:02: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 B254A1200B7 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 20:02: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 KsT0K3XSAa95 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 20:02:40 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 11E4C120033 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 20:02:40 -0700 (PDT)
Date: Wed, 11 Sep 2019 20:02:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568257359; bh=1qjI9fGqgNOB1PX0TtBwrbPMVR1q9Jc+FjM6KMUYEZA=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=lxfyTZ8nR83pBKeP2t/RUdi7yE259hSpFXDPeWES5aR2VT/wpc6j+Rwc8eTv0LFID 5s94jojdkTLGZBd/p/KbL8/6QZQqL7a4BBboKl/iek5rQf3wY7CUSeanpQWrcxZcy9 IkB5wMftBEMeSotw1CAAoLoIDh5ApTfc2PxqHLM4=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2OG22PBMW2SHD6WFF3Q3T47EVBNHHB2W63A4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3021@github.com>
Subject: [quicwg/base-drafts] fix draft-23 test vectors (#3021)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d79b54f54d96_72223fc6e56cd9642628d8"; 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/Yur-NxLb-3IWnyBucc70aPOvb78>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 03:02:42 -0000

----==_mimepart_5d79b54f54d96_72223fc6e56cd9642628d8
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/3021

-- Commit Summary --

  * fix length of Initial payload for the client
  * fix protected Initial header for the server

-- File Changes --

    M draft-ietf-quic-tls.md (4)

-- Patch Links --

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

----==_mimepart_5d79b54f54d96_72223fc6e56cd9642628d8
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/3021'>https://github.com/quicwg/base-drafts/pull/3021</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>fix length of Initial payload for the client</li>
  <li>fix protected Initial header for the server</li>
</ul>

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

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

----==_mimepart_5d79b54f54d96_72223fc6e56cd9642628d8--


From nobody Wed Sep 11 20: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 47ED1120086 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 20:27:20 -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 iq4XQgbxe8tq for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 20:27: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 2C88B1200B7 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 20:27:18 -0700 (PDT)
Date: Wed, 11 Sep 2019 20:27:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568258837; bh=rm4SzrjiDPpi0av6CunwiPj2ymdSG5nvg+pUXvZpGKg=; h=Date:From:To:Subject:From; b=p6sadza6V16t7yPIwjOqqydT0OOHI2QfnWhwJ5q2IoPfW7EigQftIzy1GWKPmw+TQ DXoADtXjPBZqEa/qCsphmkUpSq1tet1iWDLJzDpQDJsWjxRWZXHDgh3OETHSmvIhhQ BS0BkDXD6z7gUurMT5nWZvngvofD09lFg3616vkM=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/3d21ce-e4fd9b@github.com>
Subject: [quicwg/base-drafts] 8faf8a: fix length of Initial payload for the client
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NlS42x-hsgLK8aSo9ZJEt3apDXI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 03:27:20 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8faf8aaeba17bebbd5214e66db47fdae8cbf0f3d
      https://github.com/quicwg/base-drafts/commit/8faf8aaeba17bebbd5214e66db47fdae8cbf0f3d
  Author: Marten Seemann <martenseemann@gmail.com>
  Date:   2019-09-12 (Thu, 12 Sep 2019)

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

  Log Message:
  -----------
  fix length of Initial payload for the client


  Commit: 1fe037e04579076b15cb87284a4ac9159865f51c
      https://github.com/quicwg/base-drafts/commit/1fe037e04579076b15cb87284a4ac9159865f51c
  Author: Marten Seemann <martenseemann@gmail.com>
  Date:   2019-09-12 (Thu, 12 Sep 2019)

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

  Log Message:
  -----------
  fix protected Initial header for the server


  Commit: e4fd9b2178c233378fa0092f41ed4825b34ee2a7
      https://github.com/quicwg/base-drafts/commit/e4fd9b2178c233378fa0092f41ed4825b34ee2a7
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-12 (Thu, 12 Sep 2019)

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

  Log Message:
  -----------
  Merge pull request #3021 from marten-seemann/fix-test-vectors

fix draft-23 test vectors


Compare: https://github.com/quicwg/base-drafts/compare/3d21ced982d0...e4fd9b2178c2


From nobody Wed Sep 11 20:27: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 3CBD412025D for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 20:27: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 qZicDpdyIBj9 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 20:27:27 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3735C120086 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 20:27:25 -0700 (PDT)
Date: Wed, 11 Sep 2019 20:27:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568258844; bh=jiDjCZ0d0QoPt0mJ02YjhL5ohTuMNAbsWJ13HWpkYuI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XM0EbH/gfuaT6UqD9b5b+HRKXA5adsMrQidSQVmypn9HC+j6grd+QM1OJKbugcl11 n25weOdtFGz/+MG47czwuV2bUmfJ5kUyQohv6waBHj01/LUuuWqmC1UaNaR8sg0Zkf BKctx0l4XDjJtfqXol2YiNCXofkwmPq+Opk5zB8M=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5JGFHU5OPAAODZ7WN3Q3PYZEVBNHHB2W63A4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3021/c530648945@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3021@github.com>
References: <quicwg/base-drafts/pull/3021@github.com>
Subject: Re: [quicwg/base-drafts] fix draft-23 test vectors (#3021)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d79bb1c27e3a_5f733fe9560cd9684049a1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/M5mPRtEM8I6L3gwo9iRpAh9R4IQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 03:27:28 -0000

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

Confirmed that this was a transcription error.  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/3021#issuecomment-530648945
----==_mimepart_5d79bb1c27e3a_5f733fe9560cd9684049a1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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


From nobody Wed Sep 11 20:27: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 8E41812025D for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 20:27:31 -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 Piu0sKPLjAWe for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 20:27: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 F32C8120086 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 20:27:28 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 640D852039D for <quic-issues@ietf.org>; Wed, 11 Sep 2019 20:27:28 -0700 (PDT)
Date: Wed, 11 Sep 2019 20:27:28 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYOZEGJRNAOZIRXVS53Q3PZBEVBNHHB2W63A4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3021/issue_event/2627741245@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3021@github.com>
References: <quicwg/base-drafts/pull/3021@github.com>
Subject: Re: [quicwg/base-drafts] fix draft-23 test vectors (#3021)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d79bb20557d0_2bf3ff0bdccd95c230022"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/RB8b-H-aUvuVQPzKkHw3aPgEXe4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 03:27:32 -0000

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

Merged #3021 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/3021#event-2627741245
----==_mimepart_5d79bb20557d0_2bf3ff0bdccd95c230022
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="492559111" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3021" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3021/hovercard" href="https://github.com/quicwg/base-drafts/pull/3021">#3021</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/3021?email_source=notifications&amp;email_token=AFTOJKYMG7V5QYDZT4CUYCDQJGZKBA5CNFSM4IV54PZKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSQCMPI#event-2627741245">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY4MXKGEJZNX5VE5JLQJGZKBANCNFSM4IV54PZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3RCZIGFCIV65YR523QJGZKBA5CNFSM4IV54PZKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSQCMPI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3021?email_source=notifications\u0026email_token=AFTOJKYMG7V5QYDZT4CUYCDQJGZKBA5CNFSM4IV54PZKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSQCMPI#event-2627741245",
"url": "https://github.com/quicwg/base-drafts/pull/3021?email_source=notifications\u0026email_token=AFTOJKYMG7V5QYDZT4CUYCDQJGZKBA5CNFSM4IV54PZKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTSQCMPI#event-2627741245",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d79bb20557d0_2bf3ff0bdccd95c230022--


From nobody Wed Sep 11 20:27: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 099C8120086 for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 20:27: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 iASr-dzhFTPv for <quic-issues@ietfa.amsl.com>; Wed, 11 Sep 2019 20:27:53 -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 A750C120273 for <quic-issues@ietf.org>; Wed, 11 Sep 2019 20:27:52 -0700 (PDT)
Date: Wed, 11 Sep 2019 20:27:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568258871; bh=51GRr9Mxx3n/RRDBUKeZs2MD2pqHYxEoaixsea24BPY=; h=Date:From:To:Subject:From; b=gMvX/4sd3klfuxOgRdNUGnao5CSapQeXuOx2qH3uvWrn/33X9vNCt83ynFEqS6oR5 ihzIvVpsMh7osWwa8UMhAst3U0KmBJXjoDET9ksND20jLwosmkY+95o5yzwRNuUSbe 9KCD0CNjIsnn0SMv1Vmr+Nowwt+A+ZNaNjjeVF+I=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/82adb8-4bd4d0@github.com>
Subject: [quicwg/base-drafts] 4bd4d0: Script updating gh-pages from e4fd9b21. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vyofhRf0ZmpHP6TtgRMgwHHzR-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: Thu, 12 Sep 2019 03:27:55 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4bd4d01cb81adae16c7822578da8c5ebd8a096dd
      https://github.com/quicwg/base-drafts/commit/4bd4d01cb81adae16c7822578da8c5ebd8a096dd
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-12 (Thu, 12 Sep 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 e4fd9b21. [ci skip]



From nobody Thu Sep 12 01:18: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 85992120864 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 01:18:28 -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 pq7OLacJB3bd for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 01:18:27 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 30C1712026E for <quic-issues@ietf.org>; Thu, 12 Sep 2019 01:18:27 -0700 (PDT)
Date: Thu, 12 Sep 2019 01:18:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568276306; bh=TWHPmQixR/LYqDe3c6zZeKKw4IJYwK/xRsGpyAGPL3s=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Hz7fi6exTte01gpnh5SuOgfMzMfMaP18mdmLAD9EpiY6KDw+9XDj6RXz3vdqG0oVu AeWMPCXgkDh718KZqPVZt8TXzunJKzYgUKzSHim2L/GSBI3J0bskenitTISv0Jb0EI XMXxmZbGrBnrTaqHlA87tuHSaIy8UIMw93jeY+VQ=
From: chumd <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4TOZOBT2VEP3PQ3DF3Q4Y5FEVBNHHBYF7KWI@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/530718951@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_5d79ff5238074_5f043f9123acd96c35994"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chumd
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/825Mwcaxq_f71DL7UviERsWWbyo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 08:18:29 -0000

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

How to recovery its label

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

<p>How to recovery its label</p>

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


From nobody Thu Sep 12 01: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 B55801208BF for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 01:21:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 PzqcComxbLoM for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 01:21: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 9897F12006B for <quic-issues@ietf.org>; Thu, 12 Sep 2019 01:21:11 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id A3492961D22 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 01:21:10 -0700 (PDT)
Date: Thu, 12 Sep 2019 01:21:10 -0700
From: chumd <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2TFBHTC37YAGYGZ2V3Q4ZHNEVBNHHB2XKYTE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3022@github.com>
Subject: [quicwg/base-drafts] MIn_RTT management #2923 (#3022)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d79fff693e00_2983ff5fd4cd96012475"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chumd
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZQQFbIiiqrZRQ8d9W11-gb7e_4U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 08:21:14 -0000

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

#3019 #3020 #3020 

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

<p><a class=3D"issue-link js-issue-link" data-error-text=3D"Failed to loa=
d issue title" data-id=3D"491973244" data-permission-text=3D"Issue title =
is private" data-url=3D"https://github.com/quicwg/base-drafts/issues/3019=
" data-hovercard-type=3D"pull_request" data-hovercard-url=3D"/quicwg/base=
-drafts/pull/3019/hovercard" href=3D"https://github.com/quicwg/base-draft=
s/pull/3019">#3019</a> <a class=3D"issue-link js-issue-link" data-error-t=
ext=3D"Failed to load issue title" data-id=3D"492462333" data-permission-=
text=3D"Issue title is private" data-url=3D"https://github.com/quicwg/bas=
e-drafts/issues/3020" data-hovercard-type=3D"issue" data-hovercard-url=3D=
"/quicwg/base-drafts/issues/3020/hovercard" href=3D"https://github.com/qu=
icwg/base-drafts/issues/3020">#3020</a> <a class=3D"issue-link js-issue-l=
ink" data-error-text=3D"Failed to load issue title" data-id=3D"492462333"=
 data-permission-text=3D"Issue title is private" data-url=3D"https://gith=
ub.com/quicwg/base-drafts/issues/3020" data-hovercard-type=3D"issue" data=
-hovercard-url=3D"/quicwg/base-drafts/issues/3020/hovercard" href=3D"http=
s://github.com/quicwg/base-drafts/issues/3020">#3020</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/3022?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK4VKWIJPVUC4Y4WFOTQJH3XNA5CNFSM4IWAWYLKYY3PNVWWK3TUL52HS4DFUVEXG43VM=
WVGG33NNVSW45C7NFSM4HK5LCMQ">view it on GitHub</a>, or <a href=3D"https:/=
/github.com/notifications/unsubscribe-auth/AFTOJK5WN6T37UU6CBB4YTTQJH3XNA=
NCNFSM4IWAWYLA">mute the thread</a>.<img src=3D"https://github.com/notifi=
cations/beacon/AFTOJK6JQTDEEONL3YEQV7LQJH3XNA5CNFSM4IWAWYLKYY3PNVWWK3TUL5=
2HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HK5LCMQ.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/3022?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK4VKWIJPVUC4Y4WFOTQJH3XNA5CNFSM4=
IWAWYLKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HK5LCMQ",
"url": "https://github.com/quicwg/base-drafts/issues/3022?email_source=3D=
notifications\u0026email_token=3DAFTOJK4VKWIJPVUC4Y4WFOTQJH3XNA5CNFSM4IWA=
WYLKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HK5LCMQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>=

----==_mimepart_5d79fff693e00_2983ff5fd4cd96012475--


From nobody Thu Sep 12 01: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 ABD9912081C for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 01:46:40 -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 YdVXnuk6tf5U for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 01:46: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 2ADD012006B for <quic-issues@ietf.org>; Thu, 12 Sep 2019 01:46:39 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 54BAA1C0C9D for <quic-issues@ietf.org>; Thu, 12 Sep 2019 01:46:38 -0700 (PDT)
Date: Thu, 12 Sep 2019 01:46:38 -0700
From: chumd <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7RWNBXR5OOG62UEQN3Q44G5EVBNHHB2XMI7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3023@github.com>
Subject: [quicwg/base-drafts] Octocat/hello-world-workflow (#3023)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7a05ee45dc8_27273fa8c72cd96814398b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chumd
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: 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-pBJVtFGbc00sIY59FYPf6pFE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 08:46:41 -0000

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

Updatemain.yml set-up-action
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Octocat/hello-world-workflow

-- File Changes --

    A .github/workflows/pythonpackage.yml (34)

-- Patch Links --

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

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

<p>Updatemain.yml set-up-action</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/3023'>https://github.com/quicwg/base-drafts/pull/3023</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Octocat/hello-world-workflow</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>A</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3023/files#diff-0">.github/workflows/pythonpackage.yml</a>
    (34)
  </li>
</ul>

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

----==_mimepart_5d7a05ee45dc8_27273fa8c72cd96814398b--


From nobody Thu Sep 12 02:44: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 C019F12082B for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 02:44: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 AIaGFEfcAdXs for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 02:43:59 -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 47132120273 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 02:43:59 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 67E898C1E1F for <quic-issues@ietf.org>; Thu, 12 Sep 2019 02:43:58 -0700 (PDT)
Date: Thu, 12 Sep 2019 02:43:58 -0700
From: chumd <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK654W72RKD4D67RQNV3Q5C55EVBMPHAEFW6BA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/commit/56e9e1a6515ac1ea6e882a83c48d7149070bdd17/35053064@github.com>
In-Reply-To: <quicwg/base-drafts/commit/56e9e1a6515ac1ea6e882a83c48d7149070bdd17@github.com>
References: <quicwg/base-drafts/commit/56e9e1a6515ac1ea6e882a83c48d7149070bdd17@github.com>
Subject: Re: [quicwg/base-drafts] Add master to fallback path for new branches (56e9e1a)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7a135e59350_f973fded8acd9641102e6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chumd
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/the_YzNwWs8BjdNx2NvFtA3GrRM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 09:44:01 -0000

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

Laptop not working no intinate well make away

-- 
You are receiving 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/56e9e1a6515ac1ea6e882a83c48d7149070bdd17#commitcomment-35053064
----==_mimepart_5d7a135e59350_f973fded8acd9641102e6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Laptop not working no intinate well make away</p>

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


From nobody Thu Sep 12 03:04: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 75CDA120072 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 03:04:12 -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_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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hMoERXyYLZKF for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 03:04:08 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6260A120077 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 03:04:08 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 85B22961B77 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 03:04:07 -0700 (PDT)
Date: Thu, 12 Sep 2019 03:04:07 -0700
From: chumd <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3D5A52IMGTL4MUMQV3Q5FJPEVBNHHB2XREF4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3024@github.com>
Subject: [quicwg/base-drafts] Https:/github-release-draft..yml (#3024)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7a181777123_46ed3fc2fe2cd96c213bd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chumd
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/GXiMxYCMDWlzkEnPZLjx4-pcJbU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 10:04:13 -0000

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

Linked by contributor...=0D
You can view, comment on, or merge this pull request online at:=0D
=0D
  https://github.com/quicwg/base-drafts/pull/3024=0D
=0D
-- Commit Summary --=0D
=0D
  * Update draft-ietf-quic-transport.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * move definition of active_connection_id_limit to where it belongs=0D
  * grease transport parameters=0D
  * Merge pull request #2872 from marten-seemann/move-active-conn-id-limi=
t-def=0D
  * Merge pull request #2769 from nibanks/pr/replace-cid=0D
  * Merge pull request #2729 from erickinnear/dont_retransmit_path_respon=
se=0D
  * Merge pull request #2794 from quicwg/ianswett-ack-ack=0D
  * Merge pull request #2370 from huitema/stronger-migration-handshake=0D=

  * Change log for -21=0D
  * Reflow=0D
  * Ian&#39;s tweaks to text=0D
  * Fix recovery references=0D
  * Grammatical error=0D
  * Merge pull request #2875 from quicwg/changelog-21=0D
  * Merge branch &#39;master&#39; into master=0D
  * Merge pull request #2749 from martinduke/master=0D
  * Fix changelogs for -22=0D
  * Merge branch &#39;master&#39; into accept-and-reject-0-rtt=0D
  * Editorial fix for #2479=0D
  * Update draft-ietf-quic-invariants.md=0D
  * Update draft-ietf-quic-invariants.md=0D
  * Update draft-ietf-quic-invariants.md=0D
  * Update draft-ietf-quic-invariants.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * Update draft-ietf-quic-invariants.md=0D
  * add IANA considerations=0D
  * Articulate error code principles=0D
  * Remove spin coordination requirement=0D
  * fixed typo=0D
  * Byte lengths are next=0D
  * Merge pull request #2877 from quicwg/ianswett-2479=0D
  * Get test vectors in place for -23=0D
  * Merge pull request #2883 from martinduke/patch-1=0D
  * Move some text up=0D
  * Firm up language around stream termination=0D
  * Giving Lucas credit for a suggestion=0D
  * qpack: fix reference to blocked-streams section=0D
  * Remove connection error response to a packets from a different source=
 address when an endpoint has sent disable_migration, clarify an endpoint=
s options when prohibited packets are received, rename disable_migration =
to disable_active_migration, and remove INVALID_MIGRATION error code.=0D
  * Rewrap long line=0D
  * Move wasteful packet stuff to -transport=0D
  * Tweak language more=0D
  * Merge Crypto timeout and PTO (#2806)=0D
  * Fix typo=0D
  * Updates from review feedback=0D
  * Don&#39;t state QUIC error codes.=0D
  * Fix lack of exponential backoff in pseudocode (#2902)=0D
  * Fix HPACK xref=0D
  * Add one to sample offset for header protection=0D
  * Merge pull request #2904 from quicwg/sample-offset=0D
  * Reaction to attack=0D
  * Merge pull request #2901 from tandf/patch-1=0D
  * Remove sentence that&#39;s no longer necessary=0D
  * Typo in change log=0D
  * PTO should always send an ack-eliciting packet=0D
  * Clarify resetting congestion control=0D
  * Merge pull request #2917 from quicwg/close2685=0D
  * Fix language around CC on migration=0D
  * Up to two full-sized datagrams, not packets (#2915)=0D
  * Add rationale for why ack-eliciting=0D
  * reorder reading better for=0D
  * Merge pull request #2912 from quicwg/ianswett-pto-ack-eliciting=0D
  * Confidentiality for server transport parameters=0D
  * Reword per Ian&#39;s suggestion=0D
  * Update draft-ietf-quic-transport.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * David&#39;s comments=0D
  * Update draft-ietf-quic-transport.md=0D
  * Minor clarification. Fixes #2084=0D
  * Fix typo in transport draft: eliciting=0D
  * Merge pull request #2930 from dtikhonov/201907241710-fix-typo-eliciti=
ng=0D
  * Rewrap, clarify affiliation to mean cooperation=0D
  * Update the PreferredAddress structure to accomodate a 20 byte CID.=0D=

  * Merge pull request #2943 from rpaulo/preferred-address-cid=0D
  * Fix nit in protocol overview in TLS draft=0D
  * Remove extra curly brace from HTTP draft=0D
  * Remove mention of &quot;protocol version selection&quot; from TLS dra=
ft=0D
  * Merge pull request #2949 from nharper/nit2=0D
  * Merge pull request #2948 from nharper/nit1=0D
  * Merge pull request #2950 from nharper/nit3=0D
  * Replace HTTP_MALFORMED_FRAME error code (#2662)=0D
  * Early-Data isn&#39;t per-stream, it&#39;s connection handshake state=0D=

  * Tighten HEADERS and DATA frame order requirements. (#2867)=0D
  * Add normative reference to RFC7540 8.1.2.5. (#2868)=0D
  * ECN verification text=0D
  * faulty, not all=0D
  * ECN verification text=0D
  * faulty, not all=0D
  * ... and I thought this was going to be easy=0D
  * gah... git=0D
  * fix ref=0D
  * clarify out of order acking=0D
  * Make Recovery Pseudocode Formatting Consistent (#2946)=0D
  * Update draft-ietf-quic-transport.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * Apply suggestions from code review=0D
  * Merge pull request #2887 from quicwg/vectors-23=0D
  * More feedback=0D
  * Remove extra line=0D
  * comments and more=0D
  * Apply suggestions from code review=0D
  * reflow=0D
  * comments=0D
  * use largest acked, not packet number=0D
  * the best words=0D
  * lint=0D
  * Merge pull request #2896 from quicwg/issue2890=0D
  * Merge pull request #2888 from quicwg/firm-stop-sending=0D
  * CRYPTO frames can not be sent in 0-RTT=0D
  * Merge pull request #2960 from tandf/patch-1=0D
  * more words=0D
  * Merge pull request #2954 from quicwg/jri/ack-el=0D
  * Repair rules for NEW_TOKEN=0D
  * fix example for reserved transport parameter code points=0D
  * Update Stream Commitment Attack example=0D
  * s/STREAM DATA frames/STREAM frames/=0D
  * 1,000,001 streams to be precise=0D
  * likely too many uses of likely=0D
  * Editorial clean-up=0D
  * Merge pull request #2965 from tandf/patch-1=0D
  * Modify pseudo-code to enforce that zero must be encoded as zero.=0D
  * blocked=0D
  * MUST emit Header Acknowledgement=0D
  * Change &quot;when&quot; to &quot;after&quot; to allow for delayed ack=
nowledgements that might reduce overheads.=0D
  * post-base index is not relative index=0D
  * Update draft-ietf-quic-transport.md=0D
  * ECN counts in the ACK frame should be in the same pn_space of the ACK=
 frame (#2964)=0D
  * Merge pull request #2921 from quicwg/encrypt-tps=0D
  * Merge pull request #2852 from marten-seemann/should-send-0rtt-after-r=
etry=0D
  * Merge pull request #2841 from marten-seemann/accept-and-reject-0-rtt=0D=

  * Merge pull request #2857 from quicwg/define-terms=0D
  * Merge pull request #2918 from quicwg/more2685=0D
  * Merge pull request #2893 from erickinnear/ek/disable_active_migration=
=0D
  * Merge branch &#39;master&#39; into grease-transport-parameters=0D
  * Merge pull request #2873 from marten-seemann/grease-transport-paramet=
ers=0D
  * Merge pull request #2880 from quicwg/error-handling-principles=0D
  * Merge pull request #2882 from quicwg/dont-coordinate-spin=0D
  * Dedupe=0D
  * Talk more about multiple tokens=0D
  * Reword=0D
  * Not migration, just address change=0D
  * Add missing word back=0D
  * State network byte order here, too=0D
  * Merge pull request #2976 from quicwg/transport/pa_yes_really_nbo=0D
  * Merge pull request #2961 from quicwg/retransmit-new-token=0D
  * Update remaining test vectors for Initial packets.=0D
  * Merge pull request #2981 from rpaulo/update-remaining-vectors=0D
  * Remove short title for TLS=0D
  * Merge pull request #2983 from quicwg/no-tls-short-title=0D
  * Update QPACK stream creation error=0D
  * Reorder &quot;Variables of Interest&quot;=0D
  * Merge pull request #2927 from quicwg/ianswett-smaller-stateless-reset=
s=0D
  * Merge pull request #2752 from quicwg/jri/ecn=0D
  * Merge pull request #2929 from ekr/issue2084_correlated_cids=0D
  * Missing quote=0D
  * Only servers send NEW_TOKEN=0D
  * No point in coalescing Retry or VN=0D
  * Simplify ChaCha20 interface=0D
  * DCID in short headers=0D
  * Keys need to be available to QUIC earlier=0D
  * Require 8164 validation for non-https origins (#2973)=0D
  * Forbid duplicate setting identifiers. (#2979)=0D
  * Ian&#39;s suggestion=0D
  * Remove PRIORITY (#2922)=0D
  * Send complete SETTINGS (#2972)=0D
  * Add headings to Security Considerations (#2975)=0D
  * Default values in IANA (#2974)=0D
  * Merge pull request #2988 from quicwg/client-new-token=0D
  * Merge pull request #2991 from quicwg/unclarity-short=0D
  * Merge pull request #2989 from quicwg/coalesce-retry-vn=0D
  * apply Mike&#39;s suggestion=0D
  * HTTP Upgrade in H3 is silliness (#2898)=0D
  * Error codes can&#39;t cause errors=0D
  * Fix Recovery Pseudocode (#2907)=0D
  * Ian&#39;s suggested wording=0D
  * Simplify more=0D
  * Attempt to make the stateless reset text better=0D
  * More editorial changes=0D
  * Reserved frame types and the other reserved frame types (#2997)=0D
  * Cache git repo between Circle runs=0D
  * Cache draft references too=0D
  * Only gc if called for=0D
  * Taking Ian&#39;s rewording=0D
  * Add master to fallback path for new branches=0D
  * (38+2)/8 !=3D 6=0D
  * Add CRYPTO_BUFFER_EXCEEDED to the error code table=0D
  * Use contains() (#3015)=0D
  * No --=0D
  * Merge pull request #2962 from quicwg/multi-token=0D
  * Merge pull request #2990 from quicwg/chacha-simple=0D
  * Error codes can&#39;t cause errors (#2998)=0D
  * QPACK [editorial] Update text to include both criteria of &quot;block=
ing entry&quot;. (#2937)=0D
  * Merge pull request #3012 from maskit/error_code_table=0D
  * Merge pull request #3007 from quicwg/cleanup-sr=0D
  * rename HTTP_UNEXPECTED_FRAME to HTTP_FRAME_UNEXPECTED and fold HTTP_W=
=E2=80=A6 (#3003)=0D
  * QPACK [editorial] Update text on instructions and representations. (#=
2941)=0D
  * Security Considerations text for a memory limit (#3004)=0D
  * typo=0D
  * typo fix=0D
  * Merge pull request #3009 from quicwg/circle_caching=0D
  * Merge pull request #2802 from marten-seemann/misleading-alpn-version=0D=

  * Update QPACK Changelog (#3016)=0D
  * HTTP-23 changelog=0D
  * Recovery Changelog=0D
  * Update draft-ietf-quic-recovery.md=0D
  * Update draft-ietf-quic-recovery.md=0D
  * Both read and write for Handshake keys=0D
  * Merge pull request #2992 from quicwg/keys-available-earlier=0D
  * Changelog for transport-23=0D
  * Move Generating Acknowledgements to Transport=0D
  * Move, don&#39;t just remove the text=0D
  * Remove the &quot;Crypto Handshake Data&quot; section=0D
  * Stop referencing QUIC Transport=0D
  * Remove obsolete text=0D
  * Stop referencing host-delay in Recovery=0D
  * Fix CircleCI (hopefully)=0D
  * Update draft-ietf-quic-recovery.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * Addresses comments and some text rework=0D
  * re-adding (with some rework) text that was dropped inadvertently=0D
  * rebase cleanup=0D
  * Remove issues that were closed between 2019-06-09 and 2019-07-09 from=
 -23 changelog=0D
  * Update draft-ietf-quic-transport.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * Update draft-ietf-quic-transport.md=0D
  * Reflow a line=0D
  * Update draft-ietf-quic-recovery.md=0D
  * moving text around a bit and mt&#39;s comment=0D
  * Merge pull request #2916 from quicwg/ianswett-generating-acknowledgem=
ents=0D
  * Add #2916 too=0D
  * Add #2916 to listing=0D
  * Merge branch &#39;ianswett-recovery-changelog&#39;=0D
  * Merge branch &#39;changelog-tt-23&#39;=0D
  * Merge pull request #3017 from quicwg/http/changelog_23=0D
  * fix length of Initial payload for the client=0D
  * fix protected Initial header for the server=0D
  * Merge pull request #3021 from marten-seemann/fix-test-vectors=0D
=0D
-- File Changes --=0D
=0D
    M .circleci/config.yml (29)=0D
    M CONTRIBUTING.md (2)=0D
    M README.md (8)=0D
    M draft-ietf-quic-http.md (1848)=0D
    M draft-ietf-quic-invariants.md (48)=0D
    M draft-ietf-quic-qpack.md (699)=0D
    M draft-ietf-quic-recovery.md (776)=0D
    D draft-ietf-quic-spin-exp.md (314)=0D
    M draft-ietf-quic-tls.md (501)=0D
    M draft-ietf-quic-transport.md (1608)=0D
    M initial-protection.js (16)=0D
    M tag.sh (1)=0D
    A workflow.png (0)=0D
    A workflow.xml (1)=0D
=0D
-- Patch Links --=0D
=0D
https://github.com/quicwg/base-drafts/pull/3024.patch=0D
https://github.com/quicwg/base-drafts/pull/3024.diff=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/pull/3024=0D

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

<p>Linked by contributor...</p>=0D
=0D
<hr>=0D
=0D
<h4>You can view, comment on, or merge this pull request online at:</h4>=0D=

<p>&nbsp;&nbsp;<a href=3D'https://github.com/quicwg/base-drafts/pull/3024=
'>https://github.com/quicwg/base-drafts/pull/3024</a></p>=0D
=0D
<h4>Commit Summary</h4>=0D
<ul>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>move definition of active_connection_id_limit to where it belongs</=
li>=0D
  <li>grease transport parameters</li>=0D
  <li>Merge pull request #2872 from marten-seemann/move-active-conn-id-li=
mit-def</li>=0D
  <li>Merge pull request #2769 from nibanks/pr/replace-cid</li>=0D
  <li>Merge pull request #2729 from erickinnear/dont_retransmit_path_resp=
onse</li>=0D
  <li>Merge pull request #2794 from quicwg/ianswett-ack-ack</li>=0D
  <li>Merge pull request #2370 from huitema/stronger-migration-handshake<=
/li>=0D
  <li>Change log for -21</li>=0D
  <li>Reflow</li>=0D
  <li>Ian&#39;s tweaks to text=0D
</li>=0D
  <li>Fix recovery references</li>=0D
  <li>Grammatical error</li>=0D
  <li>Merge pull request #2875 from quicwg/changelog-21</li>=0D
  <li>Merge branch &#39;master&#39; into master</li>=0D
  <li>Merge pull request #2749 from martinduke/master</li>=0D
  <li>Fix changelogs for -22</li>=0D
  <li>Merge branch &#39;master&#39; into accept-and-reject-0-rtt</li>=0D
  <li>Editorial fix for #2479</li>=0D
  <li>Update draft-ietf-quic-invariants.md</li>=0D
  <li>Update draft-ietf-quic-invariants.md</li>=0D
  <li>Update draft-ietf-quic-invariants.md</li>=0D
  <li>Update draft-ietf-quic-invariants.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Update draft-ietf-quic-invariants.md</li>=0D
  <li>add IANA considerations</li>=0D
  <li>Articulate error code principles</li>=0D
  <li>Remove spin coordination requirement</li>=0D
  <li>fixed typo</li>=0D
  <li>Byte lengths are next</li>=0D
  <li>Merge pull request #2877 from quicwg/ianswett-2479</li>=0D
  <li>Get test vectors in place for -23</li>=0D
  <li>Merge pull request #2883 from martinduke/patch-1</li>=0D
  <li>Move some text up</li>=0D
  <li>Firm up language around stream termination</li>=0D
  <li>Giving Lucas credit for a suggestion=0D
</li>=0D
  <li>qpack: fix reference to blocked-streams section</li>=0D
  <li>Remove connection error response to a packets from a different sour=
ce address when an endpoint has sent disable_migration, clarify an endpoi=
nts options when prohibited packets are received, rename disable_migratio=
n to disable_active_migration, and remove INVALID_MIGRATION error code.</=
li>=0D
  <li>Rewrap long line</li>=0D
  <li>Move wasteful packet stuff to -transport</li>=0D
  <li>Tweak language more</li>=0D
  <li>Merge Crypto timeout and PTO (#2806)</li>=0D
  <li>Fix typo</li>=0D
  <li>Updates from review feedback</li>=0D
  <li>Don&#39;t state QUIC error codes.</li>=0D
  <li>Fix lack of exponential backoff in pseudocode (#2902)</li>=0D
  <li>Fix HPACK xref</li>=0D
  <li>Add one to sample offset for header protection</li>=0D
  <li>Merge pull request #2904 from quicwg/sample-offset</li>=0D
  <li>Reaction to attack</li>=0D
  <li>Merge pull request #2901 from tandf/patch-1</li>=0D
  <li>Remove sentence that&#39;s no longer necessary</li>=0D
  <li>Typo in change log</li>=0D
  <li>PTO should always send an ack-eliciting packet</li>=0D
  <li>Clarify resetting congestion control</li>=0D
  <li>Merge pull request #2917 from quicwg/close2685</li>=0D
  <li>Fix language around CC on migration</li>=0D
  <li>Up to two full-sized datagrams, not packets (#2915)</li>=0D
  <li>Add rationale for why ack-eliciting</li>=0D
  <li>reorder reading better for</li>=0D
  <li>Merge pull request #2912 from quicwg/ianswett-pto-ack-eliciting</li=
>=0D
  <li>Confidentiality for server transport parameters</li>=0D
  <li>Reword per Ian&#39;s suggestion</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>David&#39;s comments</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Minor clarification. Fixes #2084</li>=0D
  <li>Fix typo in transport draft: eliciting</li>=0D
  <li>Merge pull request #2930 from dtikhonov/201907241710-fix-typo-elici=
ting</li>=0D
  <li>Rewrap, clarify affiliation to mean cooperation</li>=0D
  <li>Update the PreferredAddress structure to accomodate a 20 byte CID.<=
/li>=0D
  <li>Merge pull request #2943 from rpaulo/preferred-address-cid</li>=0D
  <li>Fix nit in protocol overview in TLS draft</li>=0D
  <li>Remove extra curly brace from HTTP draft</li>=0D
  <li>Remove mention of &quot;protocol version selection&quot; from TLS d=
raft</li>=0D
  <li>Merge pull request #2949 from nharper/nit2</li>=0D
  <li>Merge pull request #2948 from nharper/nit1</li>=0D
  <li>Merge pull request #2950 from nharper/nit3</li>=0D
  <li>Replace HTTP_MALFORMED_FRAME error code (#2662)</li>=0D
  <li>Early-Data isn&#39;t per-stream, it&#39;s connection handshake stat=
e</li>=0D
  <li>Tighten HEADERS and DATA frame order requirements. (#2867)</li>=0D
  <li>Add normative reference to RFC7540 8.1.2.5. (#2868)</li>=0D
  <li>ECN verification text</li>=0D
  <li>faulty, not all</li>=0D
  <li>ECN verification text</li>=0D
  <li>faulty, not all</li>=0D
  <li>... and I thought this was going to be easy</li>=0D
  <li>gah... git</li>=0D
  <li>fix ref</li>=0D
  <li>clarify out of order acking</li>=0D
  <li>Make Recovery Pseudocode Formatting Consistent (#2946)</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Apply suggestions from code review</li>=0D
  <li>Merge pull request #2887 from quicwg/vectors-23</li>=0D
  <li>More feedback</li>=0D
  <li>Remove extra line</li>=0D
  <li>comments and more</li>=0D
  <li>Apply suggestions from code review</li>=0D
  <li>reflow</li>=0D
  <li>comments</li>=0D
  <li>use largest acked, not packet number</li>=0D
  <li>the best words</li>=0D
  <li>lint</li>=0D
  <li>Merge pull request #2896 from quicwg/issue2890</li>=0D
  <li>Merge pull request #2888 from quicwg/firm-stop-sending</li>=0D
  <li>CRYPTO frames can not be sent in 0-RTT</li>=0D
  <li>Merge pull request #2960 from tandf/patch-1</li>=0D
  <li>more words</li>=0D
  <li>Merge pull request #2954 from quicwg/jri/ack-el</li>=0D
  <li>Repair rules for NEW_TOKEN</li>=0D
  <li>fix example for reserved transport parameter code points</li>=0D
  <li>Update Stream Commitment Attack example</li>=0D
  <li>s/STREAM DATA frames/STREAM frames/</li>=0D
  <li>1,000,001 streams to be precise</li>=0D
  <li>likely too many uses of likely</li>=0D
  <li>Editorial clean-up</li>=0D
  <li>Merge pull request #2965 from tandf/patch-1</li>=0D
  <li>Modify pseudo-code to enforce that zero must be encoded as zero.</l=
i>=0D
  <li>blocked</li>=0D
  <li>MUST emit Header Acknowledgement</li>=0D
  <li>Change &quot;when&quot; to &quot;after&quot; to allow for delayed a=
cknowledgements that might reduce overheads.</li>=0D
  <li>post-base index is not relative index</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>ECN counts in the ACK frame should be in the same pn_space of the A=
CK frame (#2964)</li>=0D
  <li>Merge pull request #2921 from quicwg/encrypt-tps</li>=0D
  <li>Merge pull request #2852 from marten-seemann/should-send-0rtt-after=
-retry</li>=0D
  <li>Merge pull request #2841 from marten-seemann/accept-and-reject-0-rt=
t</li>=0D
  <li>Merge pull request #2857 from quicwg/define-terms</li>=0D
  <li>Merge pull request #2918 from quicwg/more2685</li>=0D
  <li>Merge pull request #2893 from erickinnear/ek/disable_active_migrati=
on</li>=0D
  <li>Merge branch &#39;master&#39; into grease-transport-parameters</li>=
=0D
  <li>Merge pull request #2873 from marten-seemann/grease-transport-param=
eters</li>=0D
  <li>Merge pull request #2880 from quicwg/error-handling-principles</li>=
=0D
  <li>Merge pull request #2882 from quicwg/dont-coordinate-spin</li>=0D
  <li>Dedupe</li>=0D
  <li>Talk more about multiple tokens</li>=0D
  <li>Reword</li>=0D
  <li>Not migration, just address change</li>=0D
  <li>Add missing word back</li>=0D
  <li>State network byte order here, too</li>=0D
  <li>Merge pull request #2976 from quicwg/transport/pa_yes_really_nbo</l=
i>=0D
  <li>Merge pull request #2961 from quicwg/retransmit-new-token</li>=0D
  <li>Update remaining test vectors for Initial packets.</li>=0D
  <li>Merge pull request #2981 from rpaulo/update-remaining-vectors</li>=0D=

  <li>Remove short title for TLS</li>=0D
  <li>Merge pull request #2983 from quicwg/no-tls-short-title</li>=0D
  <li>Update QPACK stream creation error</li>=0D
  <li>Reorder &quot;Variables of Interest&quot;</li>=0D
  <li>Merge pull request #2927 from quicwg/ianswett-smaller-stateless-res=
ets</li>=0D
  <li>Merge pull request #2752 from quicwg/jri/ecn</li>=0D
  <li>Merge pull request #2929 from ekr/issue2084_correlated_cids</li>=0D=

  <li>Missing quote</li>=0D
  <li>Only servers send NEW_TOKEN</li>=0D
  <li>No point in coalescing Retry or VN</li>=0D
  <li>Simplify ChaCha20 interface</li>=0D
  <li>DCID in short headers</li>=0D
  <li>Keys need to be available to QUIC earlier</li>=0D
  <li>Require 8164 validation for non-https origins (#2973)</li>=0D
  <li>Forbid duplicate setting identifiers. (#2979)</li>=0D
  <li>Ian&#39;s suggestion</li>=0D
  <li>Remove PRIORITY (#2922)</li>=0D
  <li>Send complete SETTINGS (#2972)</li>=0D
  <li>Add headings to Security Considerations (#2975)</li>=0D
  <li>Default values in IANA (#2974)</li>=0D
  <li>Merge pull request #2988 from quicwg/client-new-token</li>=0D
  <li>Merge pull request #2991 from quicwg/unclarity-short</li>=0D
  <li>Merge pull request #2989 from quicwg/coalesce-retry-vn</li>=0D
  <li>apply Mike&#39;s suggestion</li>=0D
  <li>HTTP Upgrade in H3 is silliness (#2898)</li>=0D
  <li>Error codes can&#39;t cause errors</li>=0D
  <li>Fix Recovery Pseudocode (#2907)</li>=0D
  <li>Ian&#39;s suggested wording</li>=0D
  <li>Simplify more</li>=0D
  <li>Attempt to make the stateless reset text better</li>=0D
  <li>More editorial changes</li>=0D
  <li>Reserved frame types and the other reserved frame types (#2997)</li=
>=0D
  <li>Cache git repo between Circle runs</li>=0D
  <li>Cache draft references too</li>=0D
  <li>Only gc if called for</li>=0D
  <li>Taking Ian&#39;s rewording</li>=0D
  <li>Add master to fallback path for new branches</li>=0D
  <li>(38+2)/8 !=3D 6</li>=0D
  <li>Add CRYPTO_BUFFER_EXCEEDED to the error code table</li>=0D
  <li>Use contains() (#3015)</li>=0D
  <li>No --</li>=0D
  <li>Merge pull request #2962 from quicwg/multi-token</li>=0D
  <li>Merge pull request #2990 from quicwg/chacha-simple</li>=0D
  <li>Error codes can&#39;t cause errors (#2998)</li>=0D
  <li>QPACK [editorial] Update text to include both criteria of &quot;blo=
cking entry&quot;. (#2937)</li>=0D
  <li>Merge pull request #3012 from maskit/error_code_table</li>=0D
  <li>Merge pull request #3007 from quicwg/cleanup-sr</li>=0D
  <li>rename HTTP_UNEXPECTED_FRAME to HTTP_FRAME_UNEXPECTED and fold HTTP=
_W=E2=80=A6 (#3003)</li>=0D
  <li>QPACK [editorial] Update text on instructions and representations. =
(#2941)</li>=0D
  <li>Security Considerations text for a memory limit (#3004)</li>=0D
  <li>typo</li>=0D
  <li>typo fix</li>=0D
  <li>Merge pull request #3009 from quicwg/circle_caching</li>=0D
  <li>Merge pull request #2802 from marten-seemann/misleading-alpn-versio=
n</li>=0D
  <li>Update QPACK Changelog (#3016)</li>=0D
  <li>HTTP-23 changelog</li>=0D
  <li>Recovery Changelog</li>=0D
  <li>Update draft-ietf-quic-recovery.md</li>=0D
  <li>Update draft-ietf-quic-recovery.md</li>=0D
  <li>Both read and write for Handshake keys</li>=0D
  <li>Merge pull request #2992 from quicwg/keys-available-earlier</li>=0D=

  <li>Changelog for transport-23</li>=0D
  <li>Move Generating Acknowledgements to Transport</li>=0D
  <li>Move, don&#39;t just remove the text</li>=0D
  <li>Remove the &quot;Crypto Handshake Data&quot; section</li>=0D
  <li>Stop referencing QUIC Transport</li>=0D
  <li>Remove obsolete text</li>=0D
  <li>Stop referencing host-delay in Recovery</li>=0D
  <li>Fix CircleCI (hopefully)</li>=0D
  <li>Update draft-ietf-quic-recovery.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Addresses comments and some text rework</li>=0D
  <li>re-adding (with some rework) text that was dropped inadvertently</l=
i>=0D
  <li>rebase cleanup</li>=0D
  <li>Remove issues that were closed between 2019-06-09 and 2019-07-09 fr=
om -23 changelog</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Update draft-ietf-quic-transport.md</li>=0D
  <li>Reflow a line</li>=0D
  <li>Update draft-ietf-quic-recovery.md</li>=0D
  <li>moving text around a bit and mt&#39;s comment</li>=0D
  <li>Merge pull request #2916 from quicwg/ianswett-generating-acknowledg=
ements</li>=0D
  <li>Add #2916 too</li>=0D
  <li>Add #2916 to listing</li>=0D
  <li>Merge branch &#39;ianswett-recovery-changelog&#39;</li>=0D
  <li>Merge branch &#39;changelog-tt-23&#39;</li>=0D
  <li>Merge pull request #3017 from quicwg/http/changelog_23</li>=0D
  <li>fix length of Initial payload for the client</li>=0D
  <li>fix protected Initial header for the server</li>=0D
  <li>Merge pull request #3021 from marten-seemann/fix-test-vectors</li>=0D=

</ul>=0D
=0D
<h4>File Changes</h4>=0D
<ul>=0D
  <li>=0D
    <strong>M</strong>=0D
    <a href=3D"https://github.com/quicwg/base-drafts/pull/3024/files#diff=
-0">.circleci/config.yml</a>=0D
    (29)=0D
  </li>=0D
  <li>=0D
    <strong>M</strong>=0D
    <a href=3D"https://github.com/quicwg/base-drafts/pull/3024/files#diff=
-1">CONTRIBUTING.md</a>=0D
    (2)=0D
  </li>=0D
  <li>=0D
    <strong>M</strong>=0D
    <a href=3D"https://github.com/quicwg/base-drafts/pull/3024/files#diff=
-2">README.md</a>=0D
    (8)=0D
  </li>=0D
  <li>=0D
    <strong>M</strong>=0D
    <a href=3D"https://github.com/quicwg/base-drafts/pull/3024/files#diff=
-3">draft-ietf-quic-http.md</a>=0D
    (1848)=0D
  </li>=0D
  <li>=0D
    <strong>M</strong>=0D
    <a href=3D"https://github.com/quicwg/base-drafts/pull/3024/files#diff=
-4">draft-ietf-quic-invariants.md</a>=0D
    (48)=0D
  </li>=0D
  <li>=0D
    <strong>M</strong>=0D
    <a href=3D"https://github.com/quicwg/base-drafts/pull/3024/files#diff=
-5">draft-ietf-quic-qpack.md</a>=0D
    (699)=0D
  </li>=0D
  <li>=0D
    <strong>M</strong>=0D
    <a href=3D"https://github.com/quicwg/base-drafts/pull/3024/files#diff=
-6">draft-ietf-quic-recovery.md</a>=0D
    (776)=0D
  </li>=0D
  <li>=0D
    <strong>D</strong>=0D
    <a href=3D"https://github.com/quicwg/base-drafts/pull/3024/files#diff=
-7">draft-ietf-quic-spin-exp.md</a>=0D
    (314)=0D
  </li>=0D
  <li>=0D
    <strong>M</strong>=0D
    <a href=3D"https://github.com/quicwg/base-drafts/pull/3024/files#diff=
-8">draft-ietf-quic-tls.md</a>=0D
    (501)=0D
  </li>=0D
  <li>=0D
    <strong>M</strong>=0D
    <a href=3D"https://github.com/quicwg/base-drafts/pull/3024/files#diff=
-9">draft-ietf-quic-transport.md</a>=0D
    (1608)=0D
  </li>=0D
  <li>=0D
    <strong>M</strong>=0D
    <a href=3D"https://github.com/quicwg/base-drafts/pull/3024/files#diff=
-10">initial-protection.js</a>=0D
    (16)=0D
  </li>=0D
  <li>=0D
    <strong>M</strong>=0D
    <a href=3D"https://github.com/quicwg/base-drafts/pull/3024/files#diff=
-11">tag.sh</a>=0D
    (1)=0D
  </li>=0D
  <li>=0D
    <strong>A</strong>=0D
    <a href=3D"https://github.com/quicwg/base-drafts/pull/3024/files#diff=
-12">workflow.png</a>=0D
    (0)=0D
  </li>=0D
  <li>=0D
    <strong>A</strong>=0D
    <a href=3D"https://github.com/quicwg/base-drafts/pull/3024/files#diff=
-13">workflow.xml</a>=0D
    (1)=0D
  </li>=0D
</ul>=0D
=0D
<h4>Patch Links:</h4>=0D
<ul>=0D
  <li><a href=3D'https://github.com/quicwg/base-drafts/pull/3024.patch'>h=
ttps://github.com/quicwg/base-drafts/pull/3024.patch</a></li>=0D
  <li><a href=3D'https://github.com/quicwg/base-drafts/pull/3024.diff'>ht=
tps://github.com/quicwg/base-drafts/pull/3024.diff</a></li>=0D
</ul>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3024?email_source=3Dnotifications&amp;email_token=3DA=
FTOJKYQJHSWY3LVF7U4AH3QJIHZPA5CNFSM4IWBZ64KYY3PNVWWK3TUL52HS4DFUVEXG43VMW=
VGG33NNVSW45C7NFSM4HK6EQXQ">view it on GitHub</a>, or <a href=3D"https://=
github.com/notifications/unsubscribe-auth/AFTOJKYL2TR6747EBOVHUOLQJIHZPAN=
CNFSM4IWBZ64A">mute the thread</a>.<img src=3D"https://github.com/notific=
ations/beacon/AFTOJKZFEXHCLEIOHIR6WNDQJIHZPA5CNFSM4IWBZ64KYY3PNVWWK3TUL52=
HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HK6EQXQ.gif" height=3D"1" width=3D"1" a=
lt=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/3024?email_source=3D=
notifications\u0026email_token=3DAFTOJKYQJHSWY3LVF7U4AH3QJIHZPA5CNFSM4IWB=
Z64KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HK6EQXQ",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3024?email_source=3Dno=
tifications\u0026email_token=3DAFTOJKYQJHSWY3LVF7U4AH3QJIHZPA5CNFSM4IWBZ6=
4KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HK6EQXQ",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=0D

----==_mimepart_5d7a181777123_46ed3fc2fe2cd96c213bd--


From nobody Thu Sep 12 04:35: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 EB1061200CC for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 04:35:34 -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 3LK-SLk-WURB for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 04:35: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 4C77B120091 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 04:35:33 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 4C6248C0185 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 04:35:32 -0700 (PDT)
Date: Thu, 12 Sep 2019 04:35:32 -0700
From: chumd <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3PAWS645BVPDNI2MF3Q5QAJEVBNHHB2XWDOA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3025@github.com>
Subject: [quicwg/base-drafts] Confused about Fixed Bit in Version Negotiation Packet #2995 (#3025)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7a2d843d891_17fb3f9cd20cd95c46027"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chumd
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7cKr8m2xqvAClmaOAgta3wLWSwA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 11:35:35 -0000

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

Link to port # #3024 

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

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


From nobody Thu Sep 12 04:39: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 A12A31200CD for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 04:39:02 -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 il44dtTWxac9 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 04:39: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 00E4A120091 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 04:39:00 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id CD6B96E0852 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 04:38:59 -0700 (PDT)
Date: Thu, 12 Sep 2019 04:38:59 -0700
From: chumd <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ5NDMOE6VVHIQ7JGV3Q5QNHEVBNHHBYY33OM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2952/c530786096@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2952@github.com>
References: <quicwg/base-drafts/pull/2952@github.com>
Subject: Re: [quicwg/base-drafts] Skip a packet number when sending one PTO packet (#2952)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7a2e53be63d_11323fa9d78cd9601296ce"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chumd
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/aFZXmlwWS8m5-slJYVtU5KOJehQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 11:39:03 -0000

----==_mimepart_5d7a2e53be63d_11323fa9d78cd9601296ce
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thats brialliant idialistic for futured company soon.......

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2952#issuecomment-530786096
----==_mimepart_5d7a2e53be63d_11323fa9d78cd9601296ce
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Thats brialliant idialistic for futured company soon.......</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications&amp;email_token=AFTOJK6VFHRM2GGV6CRTCGTQJIS5HA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6RSOMA#issuecomment-530786096">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2UG7MG327ISOLZWF3QJIS5HANCNFSM4II7ULMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4LP2WXDWJS4ISHZATQJIS5HA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6RSOMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications\u0026email_token=AFTOJK6VFHRM2GGV6CRTCGTQJIS5HA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6RSOMA#issuecomment-530786096",
"url": "https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications\u0026email_token=AFTOJK6VFHRM2GGV6CRTCGTQJIS5HA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6RSOMA#issuecomment-530786096",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7a2e53be63d_11323fa9d78cd9601296ce--


From nobody Thu Sep 12 04: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 206961200E9 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 04:46:13 -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 8R0AV5JWqE2D for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 04:46:11 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5F2B21200DE for <quic-issues@ietf.org>; Thu, 12 Sep 2019 04:46:08 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 47A5A6E11DA for <quic-issues@ietf.org>; Thu, 12 Sep 2019 04:46:07 -0700 (PDT)
Date: Thu, 12 Sep 2019 04:46:07 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4NMFZPVSERYQPHXNV3Q5RH7EVBNHHBYY33OM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2952/c530788310@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2952@github.com>
References: <quicwg/base-drafts/pull/2952@github.com>
Subject: Re: [quicwg/base-drafts] Skip a packet number when sending one PTO packet (#2952)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7a2fff38725_4bda3fb5784cd96c369ee"; 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/Tv28ThEngim6I2oYJ-b_Uwy5vPM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 11:46:13 -0000

----==_mimepart_5d7a2fff38725_4bda3fb5784cd96c369ee
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@chumd
> Thats brialliant idialistic for futured company soon.......

Yeah, it's incredible how much money they will make by skipping packet numbers. If I had just known about this before...


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2952#issuecomment-530788310
----==_mimepart_5d7a2fff38725_4bda3fb5784cd96c369ee
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=55215063" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/chumd">@chumd</a></p>
<blockquote>
<p>Thats brialliant idialistic for futured company soon.......</p>
</blockquote>
<p>Yeah, it's incredible how much money they will make by skipping packet numbers. If I had just known about this before...</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications&amp;email_token=AFTOJK22X2OV3YSAC2IOFITQJITX7A5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6RS7VQ#issuecomment-530788310">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK26CGPL6A4WSW3ZCELQJITX7ANCNFSM4II7ULMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7EQSEUV64RIA2KUJDQJITX7A5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6RS7VQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications\u0026email_token=AFTOJK22X2OV3YSAC2IOFITQJITX7A5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6RS7VQ#issuecomment-530788310",
"url": "https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications\u0026email_token=AFTOJK22X2OV3YSAC2IOFITQJITX7A5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6RS7VQ#issuecomment-530788310",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7a2fff38725_4bda3fb5784cd96c369ee--


From nobody Thu Sep 12 07:40: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 B0CD4120856 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 07:40:29 -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 B13HuX9or0bL for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 07:40:28 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2EEB512012E for <quic-issues@ietf.org>; Thu, 12 Sep 2019 07:40:28 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 8984BC6036D for <quic-issues@ietf.org>; Thu, 12 Sep 2019 07:40:27 -0700 (PDT)
Date: Thu, 12 Sep 2019 07:40:27 -0700
From: chumd <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7TA6CPFLKGS7JBCGN3Q6FVXEVBNHHBYY33OM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2952/c530857413@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2952@github.com>
References: <quicwg/base-drafts/pull/2952@github.com>
Subject: Re: [quicwg/base-drafts] Skip a packet number when sending one PTO packet (#2952)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7a58db7afce_2e263fd55b2cd95c249f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chumd
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kh_CAZwQuD0b_JNIpkM3XMckvJo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 14:40:31 -0000

----==_mimepart_5d7a58db7afce_2e263fd55b2cd95c249f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

 think think thinking..........fzcash.io/community .
  Dollar...they're??going travel meeting community to personally deploying the  big even/......   coinbase/lokally wallet etc check backgroundLy/TransaCtion
Er20 looked it.....after making youre reporting blog/hub.com....../  goodnight still working tomrrow @ dawn..ethe  requesting passward  to proving transaction /wasnt

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2952#issuecomment-530857413
----==_mimepart_5d7a58db7afce_2e263fd55b2cd95c249f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>think think thinking..........fzcash.io/community .<br>
Dollar...they're??going travel meeting community to personally deploying the  big even/......   coinbase/lokally wallet etc check backgroundLy/TransaCtion<br>
Er20 looked it.....after making youre reporting blog/hub.com....../  goodnight still working tomrrow @ dawn..ethe  requesting passward  to proving transaction /wasnt</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications&amp;email_token=AFTOJKYZJQCZTBWB5JXSGS3QJJIFXA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SD3RI#issuecomment-530857413">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7R2RTC6I6UXJHJQJTQJJIFXANCNFSM4II7ULMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYSQSIYIIWGOOSZWKLQJJIFXA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SD3RI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications\u0026email_token=AFTOJKYZJQCZTBWB5JXSGS3QJJIFXA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SD3RI#issuecomment-530857413",
"url": "https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications\u0026email_token=AFTOJKYZJQCZTBWB5JXSGS3QJJIFXA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SD3RI#issuecomment-530857413",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7a58db7afce_2e263fd55b2cd95c249f--


From nobody Thu Sep 12 07: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 77D97120041 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 07: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 XkkdQQFTQtff for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 07:47: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 942AC12003E for <quic-issues@ietf.org>; Thu, 12 Sep 2019 07:47:46 -0700 (PDT)
Date: Thu, 12 Sep 2019 07:47:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568299665; bh=5ViRSS6blKtqthCm1hBxJDEQlDvktw/+WNYMbkydRLQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=AiATd2VPUm+bbxWKfQZQSaYlEbJ6BUzNQBn9+E0JtuWSQzH1AsyGU5U78h1Eni7kW QPppLgpkX7koxpDY5LM0krcgEOwDLxdtgNBb0JZrCvWeeAwgmx9DJUcwCYO/XsjoxK ZSwk8Q0/lez2OV2tCzNzvbq3APVUqanXFSgmeiYM=
From: chumd <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK27TTHM45LR5DXRZCF3Q6GRDEVBNHHBYY33OM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2952/c530860816@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2952@github.com>
References: <quicwg/base-drafts/pull/2952@github.com>
Subject: Re: [quicwg/base-drafts] Skip a packet number when sending one PTO packet (#2952)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7a5a91a9a1f_312c3fd46f2cd96c158788"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chumd
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gFGTkhaIhL9nCziwtRxYszRi8Jo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 14:47:49 -0000

----==_mimepart_5d7a5a91a9a1f_312c3fd46f2cd96c158788
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Like what i said  for the biggest  even i deploying personally for zcash foundation/community.
Need to paying laptop thats reason personally employed @company..no support
No earning no dollar/comments 40%...thats TRUE 100%

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2952#issuecomment-530860816
----==_mimepart_5d7a5a91a9a1f_312c3fd46f2cd96c158788
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Like what i said  for the biggest  even i deploying personally for zcash foundation/community.<br>
Need to paying laptop thats reason personally employed <a class="user-mention" data-hovercard-type="organization" data-hovercard-url="/orgs/Company/hovercard" href="https://github.com/Company">@Company</a>..no support<br>
No earning no dollar/comments 40%...thats TRUE 100%</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications&amp;email_token=AFTOJK6S6N3BQAAETY62VRLQJJJBDA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SEWEA#issuecomment-530860816">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3I3QSJ6H75TGXGCJLQJJJBDANCNFSM4II7ULMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK23D47LWQJI6GF5G5LQJJJBDA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SEWEA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications\u0026email_token=AFTOJK6S6N3BQAAETY62VRLQJJJBDA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SEWEA#issuecomment-530860816",
"url": "https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications\u0026email_token=AFTOJK6S6N3BQAAETY62VRLQJJJBDA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SEWEA#issuecomment-530860816",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7a5a91a9a1f_312c3fd46f2cd96c158788--


From nobody Thu Sep 12 07:57: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 438EF120831 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 07:57:30 -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 V9uEupBvDQ1F for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 07:57:28 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 58C68120827 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 07:57:28 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 79AF58C060D for <quic-issues@ietf.org>; Thu, 12 Sep 2019 07:57:27 -0700 (PDT)
Date: Thu, 12 Sep 2019 07:57:27 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3AG7AV5P5S4PYE5JN3Q6OWPEVBNHHB2XMI7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3023/c530865385@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3023@github.com>
References: <quicwg/base-drafts/pull/3023@github.com>
Subject: Re: [quicwg/base-drafts] Octocat/hello-world-workflow (#3023)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7a5cd76a816_16083fbe760cd964166381"; 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/HYEGhjdXtFoj4yfIldTXPdkTWKs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 14:57:35 -0000

----==_mimepart_5d7a5cd76a816_16083fbe760cd964166381
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm sorry, you'll have to provide a little more context here.  What is this, and why do we want 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/3023#issuecomment-530865385
----==_mimepart_5d7a5cd76a816_16083fbe760cd964166381
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'm sorry, you'll have to provide a little more context here.  What is this, and why do we want 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/3023?email_source=notifications&amp;email_token=AFTOJK3TDOU7ZRQDSJXIR3LQJJKFPA5CNFSM4IWA7D32YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SFZ2I#issuecomment-530865385">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZSWLNPXJKGP5WFY53QJJKFPANCNFSM4IWA7D3Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3UJRRXD6XTUUEIDBDQJJKFPA5CNFSM4IWA7D32YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SFZ2I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3023?email_source=notifications\u0026email_token=AFTOJK3TDOU7ZRQDSJXIR3LQJJKFPA5CNFSM4IWA7D32YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SFZ2I#issuecomment-530865385",
"url": "https://github.com/quicwg/base-drafts/pull/3023?email_source=notifications\u0026email_token=AFTOJK3TDOU7ZRQDSJXIR3LQJJKFPA5CNFSM4IWA7D32YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SFZ2I#issuecomment-530865385",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7a5cd76a816_16083fbe760cd964166381--


From nobody Thu Sep 12 07: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 434F712018B for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 07:58:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.807
X-Spam-Level: 
X-Spam-Status: No, score=-6.807 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id wFangnyMKwKF for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 07:58:18 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B220B12022E for <quic-issues@ietf.org>; Thu, 12 Sep 2019 07:58:18 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id ECDD7520A97 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 07:58:17 -0700 (PDT)
Date: Thu, 12 Sep 2019 07:58:17 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7JYO4KSEZ5KZRO3XN3Q6OZTEVBNHHB2XREF4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3024/c530865758@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3024@github.com>
References: <quicwg/base-drafts/pull/3024@github.com>
Subject: Re: [quicwg/base-drafts] Https:/github-release-draft..yml (#3024)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7a5d09de18d_126e3f7f1a2cd96c77384"; 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/SQaGeWi1IaI7I0S2716t8R-E9v4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 14:58:20 -0000

----==_mimepart_5d7a5d09de18d_126e3f7f1a2cd96c77384
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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/pull/3024#issuecomment-530865758
----==_mimepart_5d7a5d09de18d_126e3f7f1a2cd96c77384
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>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/pull/3024?email_source=notifications&amp;email_token=AFTOJK62NRUOTGFFXSLIQPDQJJKITA5CNFSM4IWBZ64KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SF4XQ#issuecomment-530865758">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYK7LO5TNISJUQIH5TQJJKITANCNFSM4IWBZ64A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2OWW3YFGIXHIIPKZTQJJKITA5CNFSM4IWBZ64KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SF4XQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3024?email_source=notifications\u0026email_token=AFTOJK62NRUOTGFFXSLIQPDQJJKITA5CNFSM4IWBZ64KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SF4XQ#issuecomment-530865758",
"url": "https://github.com/quicwg/base-drafts/pull/3024?email_source=notifications\u0026email_token=AFTOJK62NRUOTGFFXSLIQPDQJJKITA5CNFSM4IWBZ64KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SF4XQ#issuecomment-530865758",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7a5d09de18d_126e3f7f1a2cd96c77384--


From nobody Thu Sep 12 07: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 5644C120114 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 07:58:21 -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 GFgeAnh6eZxs for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 07:58: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 C2D6C120111 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 07:58:19 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 190076E147E for <quic-issues@ietf.org>; Thu, 12 Sep 2019 07:58:19 -0700 (PDT)
Date: Thu, 12 Sep 2019 07:58:19 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZKM7R4DCTDUPHLNL53Q6OZXEVBNHHB2XREF4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3024/issue_event/2629507834@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3024@github.com>
References: <quicwg/base-drafts/pull/3024@github.com>
Subject: Re: [quicwg/base-drafts] Https:/github-release-draft..yml (#3024)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7a5d0ba21e_1f883fec774cd9681763aa"; 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/x_ftq0196qthJKCKER7jIqMrJLE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 14:58:22 -0000

----==_mimepart_5d7a5d0ba21e_1f883fec774cd9681763aa
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3024.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3024#event-2629507834
----==_mimepart_5d7a5d0ba21e_1f883fec774cd9681763aa
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="492708911" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3024" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3024/hovercard" href="https://github.com/quicwg/base-drafts/pull/3024">#3024</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/3024?email_source=notifications&amp;email_token=AFTOJK7QHH46RFT6SMQHQR3QJJKIXA5CNFSM4IWBZ64KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTS5RV6Q#event-2629507834">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6MSLLIP5UOUWPS7XLQJJKIXANCNFSM4IWBZ64A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3LV2GCJNCWJDQEJS3QJJKIXA5CNFSM4IWBZ64KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTS5RV6Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3024?email_source=notifications\u0026email_token=AFTOJK7QHH46RFT6SMQHQR3QJJKIXA5CNFSM4IWBZ64KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTS5RV6Q#event-2629507834",
"url": "https://github.com/quicwg/base-drafts/pull/3024?email_source=notifications\u0026email_token=AFTOJK7QHH46RFT6SMQHQR3QJJKIXA5CNFSM4IWBZ64KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTS5RV6Q#event-2629507834",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7a5d0ba21e_1f883fec774cd9681763aa--


From nobody Thu Sep 12 07:59: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 36517120106 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 07:59:37 -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 RDYg2I0_QdBK for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 07:59: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 E6E37120041 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 07:59:35 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 333876A0449 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 07:59:35 -0700 (PDT)
Date: Thu, 12 Sep 2019 07:59:35 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2J3JSVJ2C2RCKJTQF3Q6O6PEVBNHHB2XWDOA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3025/530866372@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3025@github.com>
References: <quicwg/base-drafts/issues/3025@github.com>
Subject: Re: [quicwg/base-drafts] Confused about Fixed Bit in Version Negotiation Packet #2995 (#3025)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7a5d5723f0d_134f3ff556ecd96c797f5"; 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/QrKRttEEY3CY0RS4uMTh2L7nHqw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 14:59:37 -0000

----==_mimepart_5d7a5d5723f0d_134f3ff556ecd96c797f5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This does not appear to be an issue.  See https://github.com/quicwg/base-drafts/blob/master/CONTRIBUTING.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/issues/3025#issuecomment-530866372
----==_mimepart_5d7a5d5723f0d_134f3ff556ecd96c797f5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This does not appear to be an issue.  See <a href="https://github.com/quicwg/base-drafts/blob/master/CONTRIBUTING.md">https://github.com/quicwg/base-drafts/blob/master/CONTRIBUTING.md</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/3025?email_source=notifications&amp;email_token=AFTOJK5JQ5FLBMMHIKGNFATQJJKNPA5CNFSM4IWCVDA2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SGBRA#issuecomment-530866372">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZUSINVF6Z6U6XMDX3QJJKNPANCNFSM4IWCVDAQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3ACEVGEMM4FQ6E5ETQJJKNPA5CNFSM4IWCVDA2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SGBRA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3025?email_source=notifications\u0026email_token=AFTOJK5JQ5FLBMMHIKGNFATQJJKNPA5CNFSM4IWCVDA2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SGBRA#issuecomment-530866372",
"url": "https://github.com/quicwg/base-drafts/issues/3025?email_source=notifications\u0026email_token=AFTOJK5JQ5FLBMMHIKGNFATQJJKNPA5CNFSM4IWCVDA2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6SGBRA#issuecomment-530866372",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7a5d5723f0d_134f3ff556ecd96c797f5--


From nobody Thu Sep 12 07: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 19C34120041 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 07:59:38 -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 S4IiBT9yWJ3f for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 07:59:36 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6EAD912003E for <quic-issues@ietf.org>; Thu, 12 Sep 2019 07:59:36 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id A25668C1E97 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 07:59:35 -0700 (PDT)
Date: Thu, 12 Sep 2019 07:59:35 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2J3JSVJ2C2RCKJTQF3Q6O6PEVBNHHB2XWDOA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3025/issue_event/2629512851@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3025@github.com>
References: <quicwg/base-drafts/issues/3025@github.com>
Subject: Re: [quicwg/base-drafts] Confused about Fixed Bit in Version Negotiation Packet #2995 (#3025)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7a5d579407e_d2e3fded84cd960126440"; 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/62KeJzLCvrwP_SrCXJxVc0k0kZg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 14:59:38 -0000

----==_mimepart_5d7a5d579407e_d2e3fded84cd960126440
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3025.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3025#event-2629512851
----==_mimepart_5d7a5d579407e_d2e3fded84cd960126440
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="492749680" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3025" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3025/hovercard" href="https://github.com/quicwg/base-drafts/issues/3025">#3025</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/3025?email_source=notifications&amp;email_token=AFTOJK7ECWKNXKPQIP6VKB3QJJKNPA5CNFSM4IWCVDA2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTS5S5EY#event-2629512851">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZUSINVF6Z6U6XMDX3QJJKNPANCNFSM4IWCVDAQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3GVWB5ZIUVLCJ3FBTQJJKNPA5CNFSM4IWCVDA2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTS5S5EY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3025?email_source=notifications\u0026email_token=AFTOJK7ECWKNXKPQIP6VKB3QJJKNPA5CNFSM4IWCVDA2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTS5S5EY#event-2629512851",
"url": "https://github.com/quicwg/base-drafts/issues/3025?email_source=notifications\u0026email_token=AFTOJK7ECWKNXKPQIP6VKB3QJJKNPA5CNFSM4IWCVDA2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTS5S5EY#event-2629512851",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7a5d579407e_d2e3fded84cd960126440--


From nobody Thu Sep 12 12:41: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 5EA3A12022D for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 12:41:25 -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 o6oQEhZWs9j2 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 12:41: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 85E2712021C for <quic-issues@ietf.org>; Thu, 12 Sep 2019 12:41:22 -0700 (PDT)
Date: Thu, 12 Sep 2019 12:41:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568317281; bh=gNGEG4jH1xMf4yGxirnoByxtmiY/9Rtk8uar+JbUK08=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=H94LZpCG2676wUxkD5CrceP5OeLi+4kV/gSQa/DunsRvryylci2fgT7zKEKuqYts7 o/O41Ofs0g8I2iXlI2XsT828RURyimgA/iCO9sjiyTvQt6+nZuYo5hXH+Sd9lsemas sf7HGkM0xr2mgkvb97uVttB8Bd45RrHlTPvPYdgg=
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3IGFY3GFQAFU5YG553Q7P7DEVBNHHB2YT2AM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3026@github.com>
Subject: [quicwg/base-drafts] Fix typo in transport draft: robustness (#3026)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7a9f61a99e1_2f663fb4078cd96c139940"; 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/KgX1VLhjvRuA_z3nW0jGcwgHysY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 19:41:26 -0000

----==_mimepart_5d7a9f61a99e1_2f663fb4078cd96c139940
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/3026

-- Commit Summary --

  * Fix typo in transport draft: robustness

-- File Changes --

    M draft-ietf-quic-transport.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3026.patch
https://github.com/quicwg/base-drafts/pull/3026.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/3026

----==_mimepart_5d7a9f61a99e1_2f663fb4078cd96c139940
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/3026'>https://github.com/quicwg/base-drafts/pull/3026</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Fix typo in transport draft: robustness</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3026/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/3026.patch'>https://github.com/quicwg/base-drafts/pull/3026.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3026.diff'>https://github.com/quicwg/base-drafts/pull/3026.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/3026?email_source=notifications&amp;email_token=AFTOJK2ZIB5DEEGYQEGMOCTQJKLODA5CNFSM4IWI2T3KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLCPIBQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYP7T7TWXYQMRG2XILQJKLODANCNFSM4IWI2T3A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZTJ7QWUIVH3CQKIDDQJKLODA5CNFSM4IWI2T3KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLCPIBQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3026?email_source=notifications\u0026email_token=AFTOJK2ZIB5DEEGYQEGMOCTQJKLODA5CNFSM4IWI2T3KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLCPIBQ",
"url": "https://github.com/quicwg/base-drafts/pull/3026?email_source=notifications\u0026email_token=AFTOJK2ZIB5DEEGYQEGMOCTQJKLODA5CNFSM4IWI2T3KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLCPIBQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d7a9f61a99e1_2f663fb4078cd96c139940--


From nobody Thu Sep 12 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 E6628120058 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 16:06: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 gubsvLQdO8Or for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 16:05:59 -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 5347612002E for <quic-issues@ietf.org>; Thu, 12 Sep 2019 16:05:59 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id 7E40D1C09F3 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 16:05:58 -0700 (PDT)
Date: Thu, 12 Sep 2019 16:05:58 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7M7MBZBGSBMSDTAOF3RAH6NEVBNHHBW7JPKY@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/c531039499@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_5d7acf566c71e_2eb83ff5d3ccd96490946"; 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/wPJWNU32_0M3e_hnp4wFJSj9L54>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 23:06:01 -0000

----==_mimepart_5d7acf566c71e_2eb83ff5d3ccd96490946
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

What next steps should be taken here? Is this 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/pull/2851#issuecomment-531039499
----==_mimepart_5d7acf566c71e_2eb83ff5d3ccd96490946
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>What next steps should be taken here? Is this 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/pull/2851?email_source=notifications&amp;email_token=AFTOJK7QI6U5CH4LE5EGP7DQJLDNNA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6TQKCY#issuecomment-531039499">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6LENJDHY4KPCKP4NLQJLDNNANCNFSM4H3WGHAA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7R4ZVDTTKHMQXTGT3QJLDNNA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6TQKCY.gif" height="1" width="1" 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=AFTOJK7QI6U5CH4LE5EGP7DQJLDNNA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6TQKCY#issuecomment-531039499",
"url": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJK7QI6U5CH4LE5EGP7DQJLDNNA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6TQKCY#issuecomment-531039499",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7acf566c71e_2eb83ff5d3ccd96490946--


From nobody Thu Sep 12 16:07: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 C7BE4120058 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 16:07: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 eRMebJohPGls for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 16:07:07 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B37F112002E for <quic-issues@ietf.org>; Thu, 12 Sep 2019 16:07:07 -0700 (PDT)
Date: Thu, 12 Sep 2019 16:07:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568329626; bh=rF9/LsBJOrraZonxRJTOuILjcktscqbsUOvKyG017Lw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NanKsG6Og58Dnq+xCJpqnxRV+b/jxkeSISHURVw9bQxjXyaJSbRzwIkdS24HH0WNi ah48UHZYXRp+U3aJ6Pl5kXurs+bycSgwy1XHGoEFx1qpXHgLdJa3GGyO/YzwDR5oVL x42WTo0hli/+QRFYUpqMNpz4HU8WYYiL9tQKGJCM=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZKLAAAZOUQYE4QZOF3RAICVEVBNHHBZKXY24@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2968/c531039720@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2968@github.com>
References: <quicwg/base-drafts/pull/2968@github.com>
Subject: Re: [quicwg/base-drafts] Stateless reset too (#2968)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7acf9ac4a8f_429f3fd9474cd9606359d"; 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/Vu6r0FRXTaA7KLk9xlLn9sQZ70Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 12 Sep 2019 23:07:09 -0000

----==_mimepart_5d7acf9ac4a8f_429f3fd9474cd9606359d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

What next steps should be taken here? Is this 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/pull/2968#issuecomment-531039720
----==_mimepart_5d7acf9ac4a8f_429f3fd9474cd9606359d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>What next steps should be taken here? Is this 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/pull/2968?email_source=notifications&amp;email_token=AFTOJK2ZGN64W2DL4XOE7MTQJLDRVA5CNFSM4IL2QPEKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6TQL2A#issuecomment-531039720">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYV6XF3PKEIQW4AILDQJLDRVANCNFSM4IL2QPEA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK57OSQWY32S4TOZ463QJLDRVA5CNFSM4IL2QPEKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6TQL2A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2968?email_source=notifications\u0026email_token=AFTOJK2ZGN64W2DL4XOE7MTQJLDRVA5CNFSM4IL2QPEKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6TQL2A#issuecomment-531039720",
"url": "https://github.com/quicwg/base-drafts/pull/2968?email_source=notifications\u0026email_token=AFTOJK2ZGN64W2DL4XOE7MTQJLDRVA5CNFSM4IL2QPEKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6TQL2A#issuecomment-531039720",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7acf9ac4a8f_429f3fd9474cd9606359d--


From nobody Thu Sep 12 19:11: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 81EC51201A3 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 19:11:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.807
X-Spam-Level: 
X-Spam-Status: No, score=-6.807 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iUAFzH5EfbhW for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 19:11: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 16BBE120090 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 19:11:36 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 5705D1C050A for <quic-issues@ietf.org>; Thu, 12 Sep 2019 19:11:35 -0700 (PDT)
Date: Thu, 12 Sep 2019 19:11:35 -0700
From: chumd <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZAY6QWGF2GEES5QHN3RAWVPEVBNHHB2XREF4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3024/c531072493@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3024@github.com>
References: <quicwg/base-drafts/pull/3024@github.com>
Subject: Re: [quicwg/base-drafts] Https:/github-release-draft..yml (#3024)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7afad7479e8_1f693fc0c26cd96030840"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chumd
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/JSJkO7kdwTvfKD0CNmoUhruJt00>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 02:11:38 -0000

----==_mimepart_5d7afad7479e8_1f693fc0c26cd96030840
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Chinlog

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3024#issuecomment-531072493
----==_mimepart_5d7afad7479e8_1f693fc0c26cd96030840
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Chinlog</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3024?email_source=notifications&amp;email_token=AFTOJK743Z5TPHZF7AV56B3QJLZFPA5CNFSM4IWBZ64KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6TYL3I#issuecomment-531072493">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY7ZEHA5NQVTX2BRALQJLZFPANCNFSM4IWBZ64A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6UQ3KTGDLKZZQ5DQLQJLZFPA5CNFSM4IWBZ64KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6TYL3I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3024?email_source=notifications\u0026email_token=AFTOJK743Z5TPHZF7AV56B3QJLZFPA5CNFSM4IWBZ64KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6TYL3I#issuecomment-531072493",
"url": "https://github.com/quicwg/base-drafts/pull/3024?email_source=notifications\u0026email_token=AFTOJK743Z5TPHZF7AV56B3QJLZFPA5CNFSM4IWBZ64KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6TYL3I#issuecomment-531072493",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7afad7479e8_1f693fc0c26cd96030840--


From nobody Thu Sep 12 20:18: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 0455812003F for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 20:18: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 TOV2JlacznqS for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 20:18:13 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 64FE912000F for <quic-issues@ietf.org>; Thu, 12 Sep 2019 20:18:13 -0700 (PDT)
Date: Thu, 12 Sep 2019 20:18:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568344692; bh=jZuZnSg584Ma39An53jNe6P5t94zmXP+feRhPUmH1Uk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gZ6uk5s/gIlWvTtE+Z4Xv7l757mBlRmzl3vEHte4XKUy9Cc2SQlzKvILTqUscGLRm U0TPF6SM4g+lMtybAgwt4ynbFM/4LFHaH4GPYCqpUVcRqKzmdQ5q/kctyKlLlqMV+j sYk2mLcLEuoOnBxH2/vCQA+4n76m43D54HHQ+dOI=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK63TBZIGB6UNXW2JDN3RAXOJEVBNHHB2XKYTE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3022/issue_event/2631095958@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3022@github.com>
References: <quicwg/base-drafts/issues/3022@github.com>
Subject: Re: [quicwg/base-drafts] MIn_RTT management #2923 (#3022)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b0a7466a6c_499e3f84caacd968112890"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3WwGMBe4bFH2QTofLHpOA3HwPyg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 03:18:15 -0000

----==_mimepart_5d7b0a7466a6c_499e3f84caacd968112890
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3022.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3022#event-2631095958
----==_mimepart_5d7b0a7466a6c_499e3f84caacd968112890
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="492656793" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3022" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3022/hovercard" href="https://github.com/quicwg/base-drafts/issues/3022">#3022</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/3022?email_source=notifications&amp;email_token=AFTOJK5OD4ONWSORZVN4Z3LQJMA7JA5CNFSM4IWAWYLKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTJVNFQ#event-2631095958">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4GCIE3AN2IFUMMRPTQJMA7JANCNFSM4IWAWYLA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK765CVKXNIZBFGV5LLQJMA7JA5CNFSM4IWAWYLKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTJVNFQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3022?email_source=notifications\u0026email_token=AFTOJK5OD4ONWSORZVN4Z3LQJMA7JA5CNFSM4IWAWYLKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTJVNFQ#event-2631095958",
"url": "https://github.com/quicwg/base-drafts/issues/3022?email_source=notifications\u0026email_token=AFTOJK5OD4ONWSORZVN4Z3LQJMA7JA5CNFSM4IWAWYLKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTJVNFQ#event-2631095958",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b0a7466a6c_499e3f84caacd968112890--


From nobody Thu Sep 12 20:20: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 67CE112000F for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 20:20: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 iD5uRZsmR6c4 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 20:20: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 8A77412003F for <quic-issues@ietf.org>; Thu, 12 Sep 2019 20:20:19 -0700 (PDT)
Date: Thu, 12 Sep 2019 20:20:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568344818; bh=juB6hX3p8FGEJjpMdbrPKyajJXCZQutoh49pd99Tg+Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zr+FgR/+gSRJCpol5p31raAa8T5NZ8MHWn/n6xsLckHcO9jQTeFzXXFbDiGHCfW8H CV5CoWbt4zG1KSwMisPyuZLGxcdI6zxoPoEZaDYOigdj+buuCVVHuNKQrqz/irV8uu +4Ve8GjOIZzN112gHDAqSYEY+tPfBi7sLFF1Ao9g=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7US7FY33VNZLIOAS53RAXWFEVBNHHB2XMI7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3023/issue_event/2631097841@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3023@github.com>
References: <quicwg/base-drafts/pull/3023@github.com>
Subject: Re: [quicwg/base-drafts] Octocat/hello-world-workflow (#3023)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b0af261852_74543fe8b72cd9601077f3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/giIPnoZHMwnfNpvjHYLuT2K0uJc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 03:20:21 -0000

----==_mimepart_5d7b0af261852_74543fe8b72cd9601077f3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3023.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3023#event-2631097841
----==_mimepart_5d7b0af261852_74543fe8b72cd9601077f3
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="492669178" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3023" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3023/hovercard" href="https://github.com/quicwg/base-drafts/pull/3023">#3023</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/3023?email_source=notifications&amp;email_token=AFTOJKZFXBS4XWLEFJQ572LQJMBHFA5CNFSM4IWA7D32YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTJV34I#event-2631097841">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6646SX5TZQQWD4FFDQJMBHFANCNFSM4IWA7D3Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYDO3ZYJ6DH7UT2GBLQJMBHFA5CNFSM4IWA7D32YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTJV34I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3023?email_source=notifications\u0026email_token=AFTOJKZFXBS4XWLEFJQ572LQJMBHFA5CNFSM4IWA7D32YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTJV34I#event-2631097841",
"url": "https://github.com/quicwg/base-drafts/pull/3023?email_source=notifications\u0026email_token=AFTOJKZFXBS4XWLEFJQ572LQJMBHFA5CNFSM4IWA7D32YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTJV34I#event-2631097841",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b0af261852_74543fe8b72cd9601077f3--


From nobody Thu Sep 12 20:20: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 7225412003F for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 20:20: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 ZPLUEj5dEhAI for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 20:20: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 4392B12000F for <quic-issues@ietf.org>; Thu, 12 Sep 2019 20:20:34 -0700 (PDT)
Date: Thu, 12 Sep 2019 20:20:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568344833; bh=DaotKMn9EPEMxDFQ7MxsI7DdYXgBtuJdWfV6nK3XCAY=; h=Date:From:To:Subject:From; b=PwTV3SiZGWb+jh0jyoBE5ihP3ITDuvRMdArBbmGoRUNY6C/dcuz3G9Phaddwmn480 Q3NpiliMHcUWPhAlmPEPfUF8hmK+/2d6AB2gtTxQ6R1258RD7wvGgoaQfB56P7UoGa 5l42hY2s97UFGQR/CviW/Sp+HU66IauJmx2tZn+w=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/e4fd9b-e2a5d7@github.com>
Subject: [quicwg/base-drafts] 268183: Fix typo in transport draft: robustness
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tYGZ-tWoVT77kFrr8fBIMkc9Oo0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 03:20:35 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 268183279085879a4aa0f14950bdcf201c2b8bab
      https://github.com/quicwg/base-drafts/commit/268183279085879a4aa0f14950bdcf201c2b8bab
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>
  Date:   2019-09-12 (Thu, 12 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Fix typo in transport draft: robustness


  Commit: e2a5d7cebd97dbf32b70472301e36e7bb29a7d53
      https://github.com/quicwg/base-drafts/commit/e2a5d7cebd97dbf32b70472301e36e7bb29a7d53
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-13 (Fri, 13 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3026 from dtikhonov/201909121539-fix-since-transport-22-typo

Fix typo in transport draft: robustness


Compare: https://github.com/quicwg/base-drafts/compare/e4fd9b2178c2...e2a5d7cebd97


From nobody Thu Sep 12 20:20: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 3BBB712003F for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 20:20: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 YYgmYF798zsz for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 20:20:49 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EB16E12000F for <quic-issues@ietf.org>; Thu, 12 Sep 2019 20:20:48 -0700 (PDT)
Date: Thu, 12 Sep 2019 20:20:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568344848; bh=eLTQu8VFPziKNReYMRwKLgOdZXZsQz+bNBIrncuAzDg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lPQkRVFK6Eo7ujaJXCcJ9mUPBsHHUfErfpnOoRi+pVGVCBPesMdoSRBegMoOizLFL zvahlX/xFw9mOnMDaEkKShIjpIsG6xQIYVSN75gakUBAQBWVQlvK02yYO6S3zQByFI /zJZrANgBXOmWw5OM8+mmN/dWm704kvVVFjEev7Q=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3BSK2BGTMSNOPTOI53RAXYBEVBNHHB2YT2AM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3026/issue_event/2631098315@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3026@github.com>
References: <quicwg/base-drafts/pull/3026@github.com>
Subject: Re: [quicwg/base-drafts] Fix typo in transport draft: robustness (#3026)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b0b109430_25113fd8308cd9603027d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/F8I9Y__PxEtoSkVtoqoXY5Jn6Wk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 03:20:50 -0000

----==_mimepart_5d7b0b109430_25113fd8308cd9603027d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3026 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/3026#event-2631098315
----==_mimepart_5d7b0b109430_25113fd8308cd9603027d
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="492993027" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3026" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3026/hovercard" href="https://github.com/quicwg/base-drafts/pull/3026">#3026</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/3026?email_source=notifications&amp;email_token=AFTOJK5RYC4PK3BFFGMIK6LQJMBJBA5CNFSM4IWI2T3KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTJV7SY#event-2631098315">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5KKNEVY2FGTY3J3K3QJMBJBANCNFSM4IWI2T3A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2SM2XIG5VD5GO25I3QJMBJBA5CNFSM4IWI2T3KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTJV7SY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3026?email_source=notifications\u0026email_token=AFTOJK5RYC4PK3BFFGMIK6LQJMBJBA5CNFSM4IWI2T3KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTJV7SY#event-2631098315",
"url": "https://github.com/quicwg/base-drafts/pull/3026?email_source=notifications\u0026email_token=AFTOJK5RYC4PK3BFFGMIK6LQJMBJBA5CNFSM4IWI2T3KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTJV7SY#event-2631098315",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b0b109430_25113fd8308cd9603027d--


From nobody Thu Sep 12 20:21: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 1DC1012003F for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 20:21: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 dtlxANccsdjt for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 20:21: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 C425012000F for <quic-issues@ietf.org>; Thu, 12 Sep 2019 20:21:17 -0700 (PDT)
Date: Thu, 12 Sep 2019 20:21:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568344877; bh=gANv5Pe6eT5TW+vgHVUXUgCfWquzSCu52bA+VRa1m+8=; h=Date:From:To:Subject:From; b=vU4I4fe+sSQRoRMbLw5XvjfJ2q4JYyRtOsRBg/vlPWvaOtIIYVOE9vFkHuwdRBTJx HhYlld2e+F5ZKxRskl9WFWrY3+xgqZhDR37w8wW5TXIR4MNC0YOPpnJcNbWJqNF65M p2VJaSB+RiKNNKL3sbMRvPEBYLieyhIIlAs5e0s0=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/4bd4d0-4e81d0@github.com>
Subject: [quicwg/base-drafts] 4e81d0: Script updating gh-pages from e2a5d7ce. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/TmqzUnEDFrLPJ4jiuSXiDdnQYr8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 03:21:19 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4e81d028aac5487f58ba950e876fc2bf67c18f76
      https://github.com/quicwg/base-drafts/commit/4e81d028aac5487f58ba950e876fc2bf67c18f76
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-13 (Fri, 13 Sep 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-smaller-stateless-resets/draft-ietf-quic-http.html
    R ianswett-smaller-stateless-resets/draft-ietf-quic-http.txt
    R ianswett-smaller-stateless-resets/draft-ietf-quic-invariants.html
    R ianswett-smaller-stateless-resets/draft-ietf-quic-invariants.txt
    R ianswett-smaller-stateless-resets/draft-ietf-quic-qpack.html
    R ianswett-smaller-stateless-resets/draft-ietf-quic-qpack.txt
    R ianswett-smaller-stateless-resets/draft-ietf-quic-recovery.html
    R ianswett-smaller-stateless-resets/draft-ietf-quic-recovery.txt
    R ianswett-smaller-stateless-resets/draft-ietf-quic-tls.html
    R ianswett-smaller-stateless-resets/draft-ietf-quic-tls.txt
    R ianswett-smaller-stateless-resets/draft-ietf-quic-transport.html
    R ianswett-smaller-stateless-resets/draft-ietf-quic-transport.txt
    R ianswett-smaller-stateless-resets/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from e2a5d7ce. [ci skip]



From nobody Thu Sep 12 20:21: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 AFA8E12003F for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 20:21: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 LPzh6ELFCPG0 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 20:21: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 7268F12000F for <quic-issues@ietf.org>; Thu, 12 Sep 2019 20:21:19 -0700 (PDT)
Date: Thu, 12 Sep 2019 20:21:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568344878; bh=sti8w6ToyKJK4+wEWeodzhamLtm2AH0aLcgSSnxSyas=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hr9XGe1XfIED0rdesHkaiDE+WCCr8UiB54Kq/u5wkhtn9cLwOkj28YaSrLQrX4iRH zzQbVZcDrUk/ZQ0VH750eNMKgkdcPaSHuX+JrIMjalvZB78rt1B3NtUu6C84X9H89t K0ZiYKrjE6s7bIGPNBLan96DYsFjr3uqhUXCxF/0=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZRXEDVNOQM3V7YELF3RAXZ5EVBNHHBW7JPKY@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/c531083530@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_5d7b0b2ebe8b6_38073fc3d82cd96420048c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yAkjmDQzQIdxeVdSS7gVyL98VwE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 03:21:21 -0000

----==_mimepart_5d7b0b2ebe8b6_38073fc3d82cd96420048c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Yeah, the chairs have this on their list (the issue is marked).  Patience.

-- 
You are receiving this 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-531083530
----==_mimepart_5d7b0b2ebe8b6_38073fc3d82cd96420048c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Yeah, the chairs have this on their list (the issue is marked).  Patience.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK4AJPJWHYROWOLKBU3QJMBK5A5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T3CCQ#issuecomment-531083530">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK57UP3VFXBU3JENU7LQJMBK5ANCNFSM4H3WGHAA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3YAVQUU46HY7EXSD3QJMBK5A5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T3CCQ.gif" height="1" width="1" 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=AFTOJK4AJPJWHYROWOLKBU3QJMBK5A5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T3CCQ#issuecomment-531083530",
"url": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJK4AJPJWHYROWOLKBU3QJMBK5A5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T3CCQ#issuecomment-531083530",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b0b2ebe8b6_38073fc3d82cd96420048c--


From nobody Thu Sep 12 21: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 ACB761200E0 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:19:44 -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 PbZ6wECltOGw for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:19:43 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 23D7C120088 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:19:43 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 390B21C074B for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:19:42 -0700 (PDT)
Date: Thu, 12 Sep 2019 21:19:42 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2977/push/4029399711@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2977@github.com>
References: <quicwg/base-drafts/pull/2977@github.com>
Subject: Re: [quicwg/base-drafts] forbid empty NEW_TOKEN frames (#2977)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b18de2ab1e_752a3fe0ca8cd96859167"; 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/xRWJoTO8D84WGclje8pSmJCImY0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 04:19:45 -0000

----==_mimepart_5d7b18de2ab1e_752a3fe0ca8cd96859167
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

c22d6ce3bcb1dbbe0164cf7895f229fe8a07f873  Add an explicit error code for an empty token


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2977/files/b4ced77c6526b977192e1daf49f2512773d354c8..c22d6ce3bcb1dbbe0164cf7895f229fe8a07f873

----==_mimepart_5d7b18de2ab1e_752a3fe0ca8cd96859167
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/c22d6ce3bcb1dbbe0164cf7895f229fe8a07f873">c22d6ce</a>  Add an explicit error code for an empty 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/2977/files/b4ced77c6526b977192e1daf49f2512773d354c8..c22d6ce3bcb1dbbe0164cf7895f229fe8a07f873?email_source=notifications&amp;email_token=AFTOJK6B66JBAITOPPXBID3QJMIF5A5CNFSM4IMODKOKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDQMRWGMZTCM2QOVZWQIZUGAZDSMZZHE3TCMI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5S3IDMRJJA7SQXD3TQJMIF5ANCNFSM4IMODKOA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK76PQPB3AHIAOTTBTLQJMIF5A5CNFSM4IMODKOKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDQMRWGMZTCM2QOVZWQIZUGAZDSMZZHE3TCMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2977/files/b4ced77c6526b977192e1daf49f2512773d354c8..c22d6ce3bcb1dbbe0164cf7895f229fe8a07f873?email_source=notifications\u0026email_token=AFTOJK6B66JBAITOPPXBID3QJMIF5A5CNFSM4IMODKOKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDQMRWGMZTCM2QOVZWQIZUGAZDSMZZHE3TCMI",
"url": "https://github.com/quicwg/base-drafts/pull/2977/files/b4ced77c6526b977192e1daf49f2512773d354c8..c22d6ce3bcb1dbbe0164cf7895f229fe8a07f873?email_source=notifications\u0026email_token=AFTOJK6B66JBAITOPPXBID3QJMIF5A5CNFSM4IMODKOKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDQMRWGMZTCM2QOVZWQIZUGAZDSMZZHE3TCMI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d7b18de2ab1e_752a3fe0ca8cd96859167--


From nobody Thu Sep 12 21:21: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 31AA612085E for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:21:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 uX73H2FGuUl8 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:21: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 28230120088 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:21:18 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 258F31C0ABF for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:21:17 -0700 (PDT)
Date: Thu, 12 Sep 2019 21:21:17 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZYXMLOVQMQDJ4GSCN3RBF33EVBNHHB2ZEM7Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3027@github.com>
Subject: [quicwg/base-drafts] Codes for frame encoding errors (#3027)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b193d1697c_798b3fe8d22cd968128013"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QPrXR8uinaPQcxtY3RvHWjTB7qs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 04:21:24 -0000

----==_mimepart_5d7b193d1697c_798b3fe8d22cd968128013
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

In the context of deciding what code to use for badly formatted frames:

> I'd use a FRAME_ENCODING_ERROR error here. However, for other invalid frame errors we use PROTOCOL_VIOLATION. Not sure if that's something we want to address at some point.

_Originally posted by @marten-seemann in https://github.com/quicwg/base-drafts/pull/2977_

I tend to agree with this.  Let's go through and try to apply some sort of consistency.  Maybe even try to be principled about 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/3027
----==_mimepart_5d7b193d1697c_798b3fe8d22cd968128013
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>In the context of deciding what code to use for badly formatted frames:</p>
<blockquote>
<p>I'd use a FRAME_ENCODING_ERROR error here. However, for other invalid frame errors we use PROTOCOL_VIOLATION. Not sure if that's something we want to address at some point.</p>
</blockquote>
<p><em>Originally posted by <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> in <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="481842854" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2977" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2977/hovercard" href="https://github.com/quicwg/base-drafts/pull/2977">#2977</a></em></p>
<p>I tend to agree with this.  Let's go through and try to apply some sort of consistency.  Maybe even try to be principled about 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/3027?email_source=notifications&amp;email_token=AFTOJK6Z2OL7P6OOEN6HE7DQJMIL3A5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLERT7A">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK33CPI6XW32A5J4MKLQJMIL3ANCNFSM4IWL4A7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZN4C7C5JBIS46VMHDQJMIL3A5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLERT7A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3027?email_source=notifications\u0026email_token=AFTOJK6Z2OL7P6OOEN6HE7DQJMIL3A5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLERT7A",
"url": "https://github.com/quicwg/base-drafts/issues/3027?email_source=notifications\u0026email_token=AFTOJK6Z2OL7P6OOEN6HE7DQJMIL3A5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLERT7A",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b193d1697c_798b3fe8d22cd968128013--


From nobody Thu Sep 12 21: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 9C0F21200E0 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:22:18 -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 J5nFhc_9EolF for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:22: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 622E2120088 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:22:16 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 896EB6611BF for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:22:15 -0700 (PDT)
Date: Thu, 12 Sep 2019 21:22:15 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/e2a5d7-fba560@github.com>
Subject: [quicwg/base-drafts] fd79b8: Allow connections to share a port by adding restri...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2OKdnSSH1p_RTgiSrAUD0iCLcLk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 04:22:18 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: fd79b81d1b2040440e09e2c49c7f8b8842224c60
      https://github.com/quicwg/base-drafts/commit/fd79b81d1b2040440e09e2c49c7f8b8842224c60
  Author: David Schinazi <dschinazi.ietf@gmail.com>
  Date:   2019-06-26 (Wed, 26 Jun 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Allow connections to share a port by adding restrictions on zero-length connection IDs


  Commit: 93185582222626bad7f217199d35de05f81ced11
      https://github.com/quicwg/base-drafts/commit/93185582222626bad7f217199d35de05f81ced11
  Author: David Schinazi <dschinazi.ietf@gmail.com>
  Date:   2019-07-09 (Tue, 09 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Comments from MT


  Commit: 9616f24592d5d23bb927661917238d9de7f4df42
      https://github.com/quicwg/base-drafts/commit/9616f24592d5d23bb927661917238d9de7f4df42
  Author: David Schinazi <dschinazi.ietf@gmail.com>
  Date:   2019-07-23 (Tue, 23 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Change MUST to SHOULD


  Commit: f659c0d3731fd6d9b332011455857cf342e49b3d
      https://github.com/quicwg/base-drafts/commit/f659c0d3731fd6d9b332011455857cf342e49b3d
  Author: David Schinazi <dschinazi.ietf@gmail.com>
  Date:   2019-07-23 (Tue, 23 Jul 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Add clarification on consequences of violating SHOULD


  Commit: 435f24c67f3d7977316049bb40206c30b9253d11
      https://github.com/quicwg/base-drafts/commit/435f24c67f3d7977316049bb40206c30b9253d11
  Author: David Schinazi <DavidSchinazi@users.noreply.github.com>
  Date:   2019-08-13 (Tue, 13 Aug 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Don't overenthusiastically hyphenate

Co-Authored-By: Mike Bishop <mbishop@evequefou.be>


  Commit: 95d1f8a66b7e9819b57f3b8241ba5cc43f55b102
      https://github.com/quicwg/base-drafts/commit/95d1f8a66b7e9819b57f3b8241ba5cc43f55b102
  Author: David Schinazi <dschinazi.ietf@gmail.com>
  Date:   2019-08-15 (Thu, 15 Aug 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Reduce redunancy


  Commit: 5e388ac7dc9726e2ec60303eafd63d97f682255d
      https://github.com/quicwg/base-drafts/commit/5e388ac7dc9726e2ec60303eafd63d97f682255d
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-08-16 (Fri, 16 Aug 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
    M initial-protection.js

  Log Message:
  -----------
  Merge branch 'master' into zerocid


  Commit: 5f8281ab7c55a74e2bc0fdf9f2d1fdd4d9fbda1a
      https://github.com/quicwg/base-drafts/commit/5f8281ab7c55a74e2bc0fdf9f2d1fdd4d9fbda1a
  Author: David Schinazi <DavidSchinazi@users.noreply.github.com>
  Date:   2019-08-16 (Fri, 16 Aug 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Specify peer connection migration

Co-Authored-By: ianswett <ianswett@users.noreply.github.com>


  Commit: 5e7897e632412e99160678e68be658a153dc8bfc
      https://github.com/quicwg/base-drafts/commit/5e7897e632412e99160678e68be658a153dc8bfc
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-08-19 (Mon, 19 Aug 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  rewrap


  Commit: fba5600db47642451983c52f91ca0d91139a686a
      https://github.com/quicwg/base-drafts/commit/fba5600db47642451983c52f91ca0d91139a686a
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-13 (Fri, 13 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #2851 from DavidSchinazi/zerocid

Allow connections to share a port by adding restrictions on zero-length connection IDs


Compare: https://github.com/quicwg/base-drafts/compare/e2a5d7cebd97...fba5600db476


From nobody Thu Sep 12 21:22: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 7DDEF1200E0 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:22:37 -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 oNoQcQv6hSVj for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:22:34 -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 AB1A6120088 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:22:34 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id 204522C332E for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:22:34 -0700 (PDT)
Date: Thu, 12 Sep 2019 21:22:34 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5YEHUDYCPN6FQ2QHV3RA67VEVBNHHBW7JPKY@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/issue_event/2631162065@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_5d7b198a1115d_60363fe4804cd96c39740"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mZaeUFGg1Lz72SsNzB2U8ck-rfE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 04:22:38 -0000

----==_mimepart_5d7b198a1115d_60363fe4804cd96c39740
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #2851 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/2851#event-2631162065
----==_mimepart_5d7b198a1115d_60363fe4804cd96c39740
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="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> 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/2851?email_source=notifications&amp;email_token=AFTOJKZGR6RQFFKGSUHO2MLQJMIQVA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTKFRUI#event-2631162065">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3TLD2LEJDYQCA2OYTQJMIQVANCNFSM4H3WGHAA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3S2FVA7IBP6RB3XQLQJMIQVA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTKFRUI.gif" height="1" width="1" 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=AFTOJKZGR6RQFFKGSUHO2MLQJMIQVA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTKFRUI#event-2631162065",
"url": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJKZGR6RQFFKGSUHO2MLQJMIQVA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTKFRUI#event-2631162065",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b198a1115d_60363fe4804cd96c39740--


From nobody Thu Sep 12 21:22: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 3C526120088 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:22: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 cgPIf07ezF63 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:22:34 -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 B9BD51200E6 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:22:34 -0700 (PDT)
Date: Thu, 12 Sep 2019 21:22:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568348553; bh=KgDH9XT5WxMJVpUQoHTbsBnBhypzU6xIjRPgzFneYd4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=sEzFp6zvUlqJwBU3JH4f8cgLy+2E8ld+cXlczqDC1ODaodpbBtQVmjeuDzuoBOjKr nHk+7bwOt62lzGSkfA86tjPvRu3T6XBqwpSHnZKe6ZJ5tUKWufelkT8LrRhHgbzpTX KnLy/0MWIIMJVHC89hkXzqLH075b+Iw9UAnp0MdE=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYBYZRKHSTPQ5FXSXN3RA67TEVBNHHBW5BWIY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2844/issue_event/2631162070@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_5d7b1989b8f83_4f3a3fe24c8cd96c904f8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/25e97OP8UT8qATcxSqsIXzCj_Rs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 04:22:38 -0000

----==_mimepart_5d7b1989b8f83_4f3a3fe24c8cd96c904f8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2844 via #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#event-2631162070
----==_mimepart_5d7b1989b8f83_4f3a3fe24c8cd96c904f8
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="460600902" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2844" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2844/hovercard" href="https://github.com/quicwg/base-drafts/issues/2844">#2844</a> via <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=AFTOJKZGC4N25O2MWE7LPZLQJMIQTA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTKFRVQ#event-2631162070">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3E4L75LQ7MM73RITTQJMIQTANCNFSM4H3LQX5A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY3JTHK7M6JPLYOISLQJMIQTA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTKFRVQ.gif" height="1" width="1" 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=AFTOJKZGC4N25O2MWE7LPZLQJMIQTA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTKFRVQ#event-2631162070",
"url": "https://github.com/quicwg/base-drafts/issues/2844?email_source=notifications\u0026email_token=AFTOJKZGC4N25O2MWE7LPZLQJMIQTA5CNFSM4H3LQX5KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTKFRVQ#event-2631162070",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b1989b8f83_4f3a3fe24c8cd96c904f8--


From nobody Thu Sep 12 21: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 292EC1200E6 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:22:45 -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 DN3zOH8--cUF for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:22: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 E507F1200E0 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:22:43 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 53A5E661E69 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:22:43 -0700 (PDT)
Date: Thu, 12 Sep 2019 21:22:43 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7IPWX25XTB6M2I6S53RA7AHEVBNHHBW7JPKY@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/c531092527@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_5d7b1993447d9_22973fb9ea6cd96c49794"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ncheHpdrYotFrdkoslvIgc4gs3E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 04:22:45 -0000

----==_mimepart_5d7b1993447d9_22973fb9ea6cd96c49794
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

That came around sooner than expected :)

-- 
You are receiving this 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-531092527
----==_mimepart_5d7b1993447d9_22973fb9ea6cd96c49794
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>That came around sooner than expected :)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK6KEVY2DP27QP7A7RTQJMIRHA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T5ILY#issuecomment-531092527">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3XMC2QXNYQQERVSPTQJMIRHANCNFSM4H3WGHAA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7I2NFOBUJ3NRFP5ETQJMIRHA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T5ILY.gif" height="1" width="1" 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=AFTOJK6KEVY2DP27QP7A7RTQJMIRHA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T5ILY#issuecomment-531092527",
"url": "https://github.com/quicwg/base-drafts/pull/2851?email_source=notifications\u0026email_token=AFTOJK6KEVY2DP27QP7A7RTQJMIRHA5CNFSM4H3WGHAKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T5ILY#issuecomment-531092527",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b1993447d9_22973fb9ea6cd96c49794--


From nobody Thu Sep 12 21:23: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 AA5E71200E6 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:22: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 cqySO8BCyOmy for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:22:44 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AD6CF120088 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:22:44 -0700 (PDT)
Date: Thu, 12 Sep 2019 21:22:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568348564; bh=5y+d/3ONohzaa5G6iuDDpu7Li10/WuuJuLfpXfJE2Qc=; h=Date:From:To:Subject:From; b=QSnV6HhX1n27ftFxAMX0PNn+Iw4O00cDN+yevJ4xdWXZstieo4w+Od8907REXG7Qn PUZSRs2aKpxDJHXBaVLIYS/FOz/O1O3q3+3NQLXVdNRmQdc48rvMX/k7INH8UEGNCz Np5rFH6HESfymW/CJyutWaZX1D21ptv3PSI/65K8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/fba560-0ac214@github.com>
Subject: [quicwg/base-drafts] d365a6: Prevent linkability from responding to 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/rRP3LziZ-D3yMDmkeMYUl3u4vUY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 04:22:47 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: d365a605731be5a2fce35bb8f545d51f96d241cd
      https://github.com/quicwg/base-drafts/commit/d365a605731be5a2fce35bb8f545d51f96d241cd
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-08-15 (Thu, 15 Aug 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Prevent linkability from responding to migration

This closes the rather serious hole we left when we attempted to limit
the effect of perpetual changing of connection IDs.  This uses a
narrower formulation, that I believe will avoid perpetual changes.  But
it does require reciprocal connection ID changes where endpoints
genuinely do migrate.

It's a design change unfortunately, but I hope non-controversial.

Closes #2778.


  Commit: b7e3fecba2e8c2f72f7376a648db487dc6aec9bb
      https://github.com/quicwg/base-drafts/commit/b7e3fecba2e8c2f72f7376a648db487dc6aec9bb
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-08-16 (Fri, 16 Aug 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Use address change and previously unused CID

Rather than focus on migration, use address change, which is far more
direct and easier to test.

Also, rather than require that the connection ID be previously unused in
a global sense, scope it to those that are active.


  Commit: ac1c0083c50c831ad32b7a16ca4b0386b94ee055
      https://github.com/quicwg/base-drafts/commit/ac1c0083c50c831ad32b7a16ca4b0386b94ee055
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-08-16 (Fri, 16 Aug 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Define active connection ID


  Commit: 96e46271ed3f1649e3c300b920b3d20b22c45a1d
      https://github.com/quicwg/base-drafts/commit/96e46271ed3f1649e3c300b920b3d20b22c45a1d
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-08-16 (Fri, 16 Aug 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Missed a 'migration'


  Commit: b678aa88082cb7092694100097d2d20ce190da5a
      https://github.com/quicwg/base-drafts/commit/b678aa88082cb7092694100097d2d20ce190da5a
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-08-19 (Mon, 19 Aug 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  or probing


  Commit: 6a33e80754da87bd22364a3e8c82dc691e39e149
      https://github.com/quicwg/base-drafts/commit/6a33e80754da87bd22364a3e8c82dc691e39e149
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-08-19 (Mon, 19 Aug 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Recommend including NEW_CONNECTION_ID when migrating


  Commit: f1e5f6909e2cdcb8c1c7017cd82b93832c48f8f4
      https://github.com/quicwg/base-drafts/commit/f1e5f6909e2cdcb8c1c7017cd82b93832c48f8f4
  Author: Martin Thomson <martin.thomson@gmail.com>
  Date:   2019-08-20 (Tue, 20 Aug 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  @erickinnear's editorial tweaks


  Commit: 0ac214eaec0b16513df1d77ee8b1c140e7c0c869
      https://github.com/quicwg/base-drafts/commit/0ac214eaec0b16513df1d77ee8b1c140e7c0c869
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-13 (Fri, 13 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #2969 from quicwg/respond-migration-cid

Prevent linkability from responding to migration


Compare: https://github.com/quicwg/base-drafts/compare/fba5600db476...0ac214eaec0b


From nobody Thu Sep 12 21:23: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 CD679120088 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:22: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 6A-n0r_7kFGw for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:22: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 6E02C1200E0 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:22:45 -0700 (PDT)
Date: Thu, 12 Sep 2019 21:22:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568348564; bh=k0i2TtEejOSaxUm4K64RPUTWPqui8zxayAmRT2uCCTM=; h=Date:From:To:Subject:From; b=TMnFT0cu9vjNgAuVn2hYW+eA+5iaAuZ/uqrtxLUVixWH81Vn8qF4R3p7Od8b8vsYB c9HSXgdef2fq8MvZiL7OWBvEKzl7MnF1VsGEI/geQGb3ph5yHF1T+Gewpns+VIZE0P zxR8NZD8OGXF6v5EBgWpKqHjxzzL4VjxH9wuI3nc=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/respond-migration-cid/f1e5f6-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/X8DuFj4Hf3V7zlQqpFf-3HaGZUQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 04:22:48 -0000

  Branch: refs/heads/respond-migration-cid
  Home:   https://github.com/quicwg/base-drafts


From nobody Thu Sep 12 21: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 9317F1200E6 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:22:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 gm_uyqumIYJ6 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:22:56 -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 4290C1200E0 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:22:56 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id D34A22603B9 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:22:55 -0700 (PDT)
Date: Thu, 12 Sep 2019 21:22:55 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/4e81d0-90bda4@github.com>
Subject: [quicwg/base-drafts] 90bda4: Script updating gh-pages from fba5600d. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1PdsVGMn3D5KEeIQfoyHm3FBJNs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 04:22:58 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 90bda45a53880d8ba113c6703137eaedb5067fc9
      https://github.com/quicwg/base-drafts/commit/90bda45a53880d8ba113c6703137eaedb5067fc9
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-13 (Fri, 13 Sep 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 fba5600d. [ci skip]



From nobody Thu Sep 12 21:23: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 E69051200E0 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:22:58 -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 3bmgzWK_L5Re for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:22: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 2AE01120088 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:22:56 -0700 (PDT)
Received: from github-lowworker-19d82f6.ac4-iad.github.net (github-lowworker-19d82f6.ac4-iad.github.net [10.52.16.75]) by smtp.github.com (Postfix) with ESMTP id ACE9F120110 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:22:55 -0700 (PDT)
Date: Thu, 12 Sep 2019 21:22:55 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3R3BBPCHYKDSDZLL53RA7A7EVBNHHBWDXNEU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2778/issue_event/2631162601@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_5d7b199f65b34_12ce3f850aecd960593f7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/oGYROrFnyPMNniouVUl2kn5txvQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 04:22:59 -0000

----==_mimepart_5d7b199f65b34_12ce3f850aecd960593f7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2778 via #2969.

-- 
You are receiving this 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#event-2631162601
----==_mimepart_5d7b199f65b34_12ce3f850aecd960593f7
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="453963045" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2778" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2778/hovercard" href="https://github.com/quicwg/base-drafts/issues/2778">#2778</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="480969992" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2969" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2969/hovercard" href="https://github.com/quicwg/base-drafts/pull/2969">#2969</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/2778?email_source=notifications&amp;email_token=AFTOJK4FVWH5I2WUF2MV6N3QJMIR7A5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTKFV2I#event-2631162601">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6D3ZGPQ2LIGOIRDH3QJMIR7ANCNFSM4HWPX2ZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK534RHM2OPJCVOFH3LQJMIR7A5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTKFV2I.gif" height="1" width="1" 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=AFTOJK4FVWH5I2WUF2MV6N3QJMIR7A5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTKFV2I#event-2631162601",
"url": "https://github.com/quicwg/base-drafts/issues/2778?email_source=notifications\u0026email_token=AFTOJK4FVWH5I2WUF2MV6N3QJMIR7A5CNFSM4HWPX2Z2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTKFV2I#event-2631162601",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b199f65b34_12ce3f850aecd960593f7--


From nobody Thu Sep 12 21:23: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 9CBEB1200E0 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:23: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 PwHUaSckV1VI for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:23:00 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0F23D120088 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:23:00 -0700 (PDT)
Date: Thu, 12 Sep 2019 21:22:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568348579; bh=/dGudRlhKfzkUpJWkLdBNbdFBbGtOmeB7ow+9gQDn4Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Uo2SDnwc7oKQgqWTPKjmC20HPYpGYxT0DIvZiJBHfPetD/44B5ykYb9SJzaOnlJqU 1dEQK9Uey/gWJvVg8hb7J4iBjR6xi+TEPSvcIpI0WFpywxyeePSRnp6Vkpycl/S/54 vzHxhHVMskNmjobuh1SSUXJiM1F/AUcCFO0JAQpE=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6ZM76763WCIDXIWG53RA7BHEVBNHHBZKYFBA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2969/issue_event/2631162597@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2969@github.com>
References: <quicwg/base-drafts/pull/2969@github.com>
Subject: Re: [quicwg/base-drafts] Prevent linkability from responding to migration (#2969)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b19a358c61_46803ffd742cd95c80294"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/iPQzAU-9x5JKlgN5cZu0kWA7yME>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 04:23:02 -0000

----==_mimepart_5d7b19a358c61_46803ffd742cd95c80294
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #2969 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/2969#event-2631162597
----==_mimepart_5d7b19a358c61_46803ffd742cd95c80294
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="480969992" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2969" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2969/hovercard" href="https://github.com/quicwg/base-drafts/pull/2969">#2969</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/2969?email_source=notifications&amp;email_token=AFTOJK7QLDVFKPKO3ZLO65TQJMISHA5CNFSM4IL2SRI2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTKFVZI#event-2631162597">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK72WZYX7QMVI357R2LQJMISHANCNFSM4IL2SRIQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZKC5SFVAT7DKSUCCDQJMISHA5CNFSM4IL2SRI2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTKFVZI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2969?email_source=notifications\u0026email_token=AFTOJK7QLDVFKPKO3ZLO65TQJMISHA5CNFSM4IL2SRI2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTKFVZI#event-2631162597",
"url": "https://github.com/quicwg/base-drafts/pull/2969?email_source=notifications\u0026email_token=AFTOJK7QLDVFKPKO3ZLO65TQJMISHA5CNFSM4IL2SRI2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTKFVZI#event-2631162597",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b19a358c61_46803ffd742cd95c80294--


From nobody Thu Sep 12 21:23: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 B458A1200E0 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:23:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 0dyKDzRgJ1aQ for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:23: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 43700120088 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:23:24 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id A6A44660477 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:23:23 -0700 (PDT)
Date: Thu, 12 Sep 2019 21:23:23 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/90bda4-da53f8@github.com>
Subject: [quicwg/base-drafts] da53f8: Script updating gh-pages from 0ac214ea. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ESPCtycFaM1F2KAtY_5h8sCUHVE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 04:23:26 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: da53f863b17b94d75fb4a088391f4313b1bd1312
      https://github.com/quicwg/base-drafts/commit/da53f863b17b94d75fb4a088391f4313b1bd1312
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-13 (Fri, 13 Sep 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 0ac214ea. [ci skip]



From nobody Thu Sep 12 21:28: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 317651200E0 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:28:32 -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 uRX8qQDQ_6ch for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 21:28:30 -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 3227D120088 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:28:30 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 843F61C0A87 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 21:28:29 -0700 (PDT)
Date: Thu, 12 Sep 2019 21:28:29 -0700
From: Christian Huitema <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2MEVYDLM33XMS2OPV3RBNX3EVBNHHB2ZES4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3028@github.com>
Subject: [quicwg/base-drafts] Requiring per application data in session ticket seems wrong (#3028)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b1aed75f8f_661e3fb265acd968783af"; 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/nYn1giktk6BWVIsbsBjLkkhWRMM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 04:28:32 -0000

----==_mimepart_5d7b1aed75f8f_661e3fb265acd968783af
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

In the new section 5.4. of the transport draft, "Required Operations on Connections", we see a requirement that _When implementing the server role, applications need to be able to:_

o  ...

o  _if Early Data is supported, retrieve application-controlled data from the client's resumption ticket and enable rejecting Early Data based on that information._

I read the corresponding text in the HTTP draft, and I understand that the idea is to remember the HTTP Settings when resuming an HTTP connection. That's fine, but it seems to assume that tickets are tied to a specific ALPN. Otherwise, if a server supports several applications over the same port, then the clients need to keep track of the ALPN used when the ticket was received.

There is no such requirement in TLS 1.3 proper. In Section 4.6.1. of RFC 8446, "New Session Ticket Message", we can read that _Clients MUST only resume if the new SNI value is valid for the server certificate presented in the original session and SHOULD only resume if the SNI value matches the one used in the original session._ Notice that there is no mention of the ALPN. We can thus expect the ticket store to be indexed by SNI, plus also some consideration about certificate explained later in the text.

There are of course lots of reason for a server to support multiple ALPN over a single port. For example, the server might support H3 and H3.1. Or it might want to provide access over port 443 for DNS over QUIC, IMAP over QUIC or other such applications. With TLS 1.3, they can do that, demux on the ALPN, and 0-RTT will work fine. But if we make the session tickets application specific, that won't work.

Which is why I think the idea of putting HTTP settings in the session ticket is ill conceived.






-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3028
----==_mimepart_5d7b1aed75f8f_661e3fb265acd968783af
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>In the new section 5.4. of the transport draft, "Required Operations on Connections", we see a requirement that <em>When implementing the server role, applications need to be able to:</em></p>
<p>o  ...</p>
<p>o  <em>if Early Data is supported, retrieve application-controlled data from the client's resumption ticket and enable rejecting Early Data based on that information.</em></p>
<p>I read the corresponding text in the HTTP draft, and I understand that the idea is to remember the HTTP Settings when resuming an HTTP connection. That's fine, but it seems to assume that tickets are tied to a specific ALPN. Otherwise, if a server supports several applications over the same port, then the clients need to keep track of the ALPN used when the ticket was received.</p>
<p>There is no such requirement in TLS 1.3 proper. In Section 4.6.1. of RFC 8446, "New Session Ticket Message", we can read that <em>Clients MUST only resume if the new SNI value is valid for the server certificate presented in the original session and SHOULD only resume if the SNI value matches the one used in the original session.</em> Notice that there is no mention of the ALPN. We can thus expect the ticket store to be indexed by SNI, plus also some consideration about certificate explained later in the text.</p>
<p>There are of course lots of reason for a server to support multiple ALPN over a single port. For example, the server might support H3 and H3.1. Or it might want to provide access over port 443 for DNS over QUIC, IMAP over QUIC or other such applications. With TLS 1.3, they can do that, demux on the ALPN, and 0-RTT will work fine. But if we make the session tickets application specific, that won't work.</p>
<p>Which is why I think the idea of putting HTTP settings in the session ticket is ill conceived.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications&amp;email_token=AFTOJK7HIV2TTAJPTH3QL7TQJMJG3A5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLESLRQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2HHXAWHUIBI75O6QDQJMJG3ANCNFSM4IWL5CVA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7S54SQWOABSHJFRUDQJMJG3A5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLESLRQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJK7HIV2TTAJPTH3QL7TQJMJG3A5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLESLRQ",
"url": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJK7HIV2TTAJPTH3QL7TQJMJG3A5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLESLRQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b1aed75f8f_661e3fb265acd968783af--


From nobody Thu Sep 12 22:05: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 34C2D120059 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 22:05:42 -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 jvck5PWGL7n3 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 22:05:40 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4A2E9120019 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 22:05:40 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 297278C0600 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 22:05:39 -0700 (PDT)
Date: Thu, 12 Sep 2019 22:05:39 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6HCZCXN5Q6J5OO5QF3RBLCHEVBNHHB2ZEM7Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3027/531099377@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3027@github.com>
References: <quicwg/base-drafts/issues/3027@github.com>
Subject: Re: [quicwg/base-drafts] Codes for frame encoding errors (#3027)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b23a31a234_37053fea4d8cd9688811b"; 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/zugHk3VUuUIl0JxOcACx2W4eGDA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 05:05:42 -0000

----==_mimepart_5d7b23a31a234_37053fea4d8cd9688811b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

How does this principle sound: If you can detect an error while parsing the frame, and without consulting any connection state, it should be a FRAME_ENCODING_ERROR. For everything that happens after frame parsing, we use the more concrete error types (or PROTOCOL_VIOLATION).



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3027#issuecomment-531099377
----==_mimepart_5d7b23a31a234_37053fea4d8cd9688811b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>How does this principle sound: If you can detect an error while parsing the frame, and without consulting any connection state, it should be a FRAME_ENCODING_ERROR. For everything that happens after frame parsing, we use the more concrete error types (or PROTOCOL_VIOLATION).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3027?email_source=notifications&amp;email_token=AFTOJK5G7KGLP73B3ONXIW3QJMNSHA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T654I#issuecomment-531099377">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK33WAXCYAOSGPSXQR3QJMNSHANCNFSM4IWL4A7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4GU7UYQ32GL2V2HZTQJMNSHA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T654I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3027?email_source=notifications\u0026email_token=AFTOJK5G7KGLP73B3ONXIW3QJMNSHA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T654I#issuecomment-531099377",
"url": "https://github.com/quicwg/base-drafts/issues/3027?email_source=notifications\u0026email_token=AFTOJK5G7KGLP73B3ONXIW3QJMNSHA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T654I#issuecomment-531099377",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b23a31a234_37053fea4d8cd9688811b--


From nobody Thu Sep 12 22: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 2B9FE120801 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 22:12:11 -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 qxQ4ggIPY730 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 22:12: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 ED674120019 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 22:12:08 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 252786A01AC for <quic-issues@ietf.org>; Thu, 12 Sep 2019 22:12:08 -0700 (PDT)
Date: Thu, 12 Sep 2019 22:12:08 -0700
From: Christian Huitema <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZEIWGEEZOAWQG7DKF3RBS3REVBNHHBYXLIMY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2947/c531100443@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2947@github.com>
References: <quicwg/base-drafts/pull/2947@github.com>
Subject: Re: [quicwg/base-drafts] Describe interaction between QUIC and TLS regarding saved 0-RTT state (#2947)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b252815597_10af3fd0360cd960312f3"; 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/hyhs794y2ikS2vwqzE__grvbVNI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 05:12:14 -0000

----==_mimepart_5d7b252815597_10af3fd0360cd960312f3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I opened a related issue -- #3028. The conversation above focuses on the server, but what about ticket handling by the client? Current ticket stores are per SNI. Should they become per-SNI + per-ALPN? 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2947#issuecomment-531100443
----==_mimepart_5d7b252815597_10af3fd0360cd960312f3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I opened a related issue -- <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="493130467" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3028" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3028/hovercard" href="https://github.com/quicwg/base-drafts/issues/3028">#3028</a>. The conversation above focuses on the server, but what about ticket handling by the client? Current ticket stores are per SNI. Should they become per-SNI + per-ALPN?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2947?email_source=notifications&amp;email_token=AFTOJK3BYQDYSSDPAM3U4BTQJMOKRA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T7GGY#issuecomment-531100443">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4IS4JBGQYLEVLUKRTQJMOKRANCNFSM4IIVRW7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7BMBIYTQNEKFN3WULQJMOKRA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T7GGY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2947?email_source=notifications\u0026email_token=AFTOJK3BYQDYSSDPAM3U4BTQJMOKRA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T7GGY#issuecomment-531100443",
"url": "https://github.com/quicwg/base-drafts/pull/2947?email_source=notifications\u0026email_token=AFTOJK3BYQDYSSDPAM3U4BTQJMOKRA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T7GGY#issuecomment-531100443",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b252815597_10af3fd0360cd960312f3--


From nobody Thu Sep 12 22:19: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 C89A412002E for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 22:19:09 -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 FgSnNiNjtElP for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 22:19:06 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0C999120033 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 22:19:06 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id EA9CDC6068D for <quic-issues@ietf.org>; Thu, 12 Sep 2019 22:19:04 -0700 (PDT)
Date: Thu, 12 Sep 2019 22:19:04 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4AOYHIBB2KJKLZBVF3RBMUREVBNHHB2ZES4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3028/531101603@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3028@github.com>
References: <quicwg/base-drafts/issues/3028@github.com>
Subject: Re: [quicwg/base-drafts] Requiring per application data in session ticket seems wrong (#3028)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b26c8dc39c_3e763f909a6cd9681410b2"; 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/jFkS0t_TXC5YNpFAX7bmjmJKmBM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 05:19:10 -0000

----==_mimepart_5d7b26c8dc39c_3e763f909a6cd9681410b2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

IIUC, while it is possible to use a session ticket when the SNI is the same, you can only use early data when ALPN also matches. Quoting from RFC 8446 section 4.2.10:

```
   In order to accept early data, the server MUST have accepted a PSK
   cipher suite and selected the first key offered in the client's
   "pre_shared_key" extension.  In addition, it MUST verify that the
   following values are the same as those associated with the
   selected PSK:

   -  The TLS version number
   -  The selected cipher suite
   -  The selected ALPN [RFC7301] protocol, if any
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3028#issuecomment-531101603
----==_mimepart_5d7b26c8dc39c_3e763f909a6cd9681410b2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>IIUC, while it is possible to use a session ticket when the SNI is the same, you can only use early data when ALPN also matches. Quoting from RFC 8446 section 4.2.10:</p>
<pre><code>   In order to accept early data, the server MUST have accepted a PSK
   cipher suite and selected the first key offered in the client's
   "pre_shared_key" extension.  In addition, it MUST verify that the
   following values are the same as those associated with the
   selected PSK:

   -  The TLS version number
   -  The selected cipher suite
   -  The selected ALPN [RFC7301] protocol, if any
</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/3028?email_source=notifications&amp;email_token=AFTOJK6FCIF2EXHKLT33RT3QJMPERA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T7PIY#issuecomment-531101603">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2XAFBKDZGX3VNBMGTQJMPERANCNFSM4IWL5CVA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYC5VZYYP4MM3MPESLQJMPERA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T7PIY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJK6FCIF2EXHKLT33RT3QJMPERA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T7PIY#issuecomment-531101603",
"url": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJK6FCIF2EXHKLT33RT3QJMPERA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T7PIY#issuecomment-531101603",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b26c8dc39c_3e763f909a6cd9681410b2--


From nobody Thu Sep 12 22:21: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 B201B12002E for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 22:21:45 -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 GJv69lGaq7wN for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 22:21: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 0C92D120019 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 22:21:44 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 042111C0749 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 22:21:43 -0700 (PDT)
Date: Thu, 12 Sep 2019 22:21:42 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY3XGS2K7P4YV5AL4N3RBM6NEVBNHHB2ZEM7Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3027/531102092@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3027@github.com>
References: <quicwg/base-drafts/issues/3027@github.com>
Subject: Re: [quicwg/base-drafts] Codes for frame encoding errors (#3027)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b2766e9bfd_1d2d3fcfbeecd95c1266ef"; 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/sfr7-9qNuq0NSNsuHR7F9Vxw4D8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 05:21:46 -0000

----==_mimepart_5d7b2766e9bfd_1d2d3fcfbeecd95c1266ef
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

+1. To rephrase, as the name suggests, FRAME_ENCODING_ERROR indicates a syntactic (i.e., encoding) error. But nothing 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/issues/3027#issuecomment-531102092
----==_mimepart_5d7b2766e9bfd_1d2d3fcfbeecd95c1266ef
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>+1. To rephrase, as the name suggests, FRAME_ENCODING_ERROR indicates a syntactic (i.e., encoding) error. But nothing 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/issues/3027?email_source=notifications&amp;email_token=AFTOJK3O6A27MAUGU6J4WYDQJMPONA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T7TDA#issuecomment-531102092">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3FOHCQVDXJZXNHEXTQJMPONANCNFSM4IWL4A7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYA2VXQHFI5IMXVVIDQJMPONA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T7TDA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3027?email_source=notifications\u0026email_token=AFTOJK3O6A27MAUGU6J4WYDQJMPONA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T7TDA#issuecomment-531102092",
"url": "https://github.com/quicwg/base-drafts/issues/3027?email_source=notifications\u0026email_token=AFTOJK3O6A27MAUGU6J4WYDQJMPONA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6T7TDA#issuecomment-531102092",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b2766e9bfd_1d2d3fcfbeecd95c1266ef--


From nobody Thu Sep 12 22:47: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 CB0AE120086 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 22:47:23 -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 0NOPcqf3JMQi for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 22:47: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 E805F120024 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 22:47:21 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 453BCA03B2 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 22:47:21 -0700 (PDT)
Date: Thu, 12 Sep 2019 22:47:21 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK32HMDJIV7PUJQH43N3RBI5TEVBNHHB2ZES4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3028/531106915@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3028@github.com>
References: <quicwg/base-drafts/issues/3028@github.com>
Subject: Re: [quicwg/base-drafts] Requiring per application data in session ticket seems wrong (#3028)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b2d693578e_30d3fac6b4cd9647435b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/aPFXpII6BurSAVEOLmrHsvRHPrQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 05:47:24 -0000

----==_mimepart_5d7b2d693578e_30d3fac6b4cd9647435b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think that we can address this by saying that clients need to remember this state alongside any ticket.  (And we should make it clear that the server needs to remember this also.  It doesn't have to put things in the ticket, though that might make it easier for it to correctly remember.)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3028#issuecomment-531106915
----==_mimepart_5d7b2d693578e_30d3fac6b4cd9647435b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I think that we can address this by saying that clients need to remember this state alongside any ticket.  (And we should make it clear that the server needs to remember this also.  It doesn't have to put things in the ticket, though that might make it easier for it to correctly remember.)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications&amp;email_token=AFTOJK53AMMQHLDMENJMYG3QJMSOTA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UAYYY#issuecomment-531106915">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK27UT6DQFAH3HFFCVDQJMSOTANCNFSM4IWL5CVA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK63YVICEJ4NSDS6IHLQJMSOTA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UAYYY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJK53AMMQHLDMENJMYG3QJMSOTA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UAYYY#issuecomment-531106915",
"url": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJK53AMMQHLDMENJMYG3QJMSOTA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UAYYY#issuecomment-531106915",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b2d693578e_30d3fac6b4cd9647435b--


From nobody Thu Sep 12 22:49: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 67CB1120088 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 22:49:19 -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 Ja9bbZ6L1-FD for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 22:49: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 D8B34120086 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 22:49:17 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 20951660167 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 22:49:17 -0700 (PDT)
Date: Thu, 12 Sep 2019 22:49:17 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYVUYXU3KPJZGP4RTN3RBXG3EVBNHHB2ZES4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3028/531107331@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3028@github.com>
References: <quicwg/base-drafts/issues/3028@github.com>
Subject: Re: [quicwg/base-drafts] Requiring per application data in session ticket seems wrong (#3028)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b2ddd1185f_d3f3fd9028cd960832b9"; 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/sDeHXshhUhamk4F78-Mnj0WYzrw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 05:49:20 -0000

----==_mimepart_5d7b2ddd1185f_d3f3fd9028cd960832b9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I believe a comment is needed in 5.4 to at least remind the reader that other ALPN's might receive the ticket and would not be able to make use of the settings data which therefore need coordination across token consumers.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3028#issuecomment-531107331
----==_mimepart_5d7b2ddd1185f_d3f3fd9028cd960832b9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I believe a comment is needed in 5.4 to at least remind the reader that other ALPN's might receive the ticket and would not be able to make use of the settings data which therefore need coordination across token consumers.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications&amp;email_token=AFTOJKYLEGPDS3X4EJNPTS3QJMSV3A5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UA4AY#issuecomment-531107331">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6KSUSEJ6HRP5SNSGDQJMSV3ANCNFSM4IWL5CVA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZJVDUKNUS4BKJ2AK3QJMSV3A5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UA4AY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJKYLEGPDS3X4EJNPTS3QJMSV3A5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UA4AY#issuecomment-531107331",
"url": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJKYLEGPDS3X4EJNPTS3QJMSV3A5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UA4AY#issuecomment-531107331",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b2ddd1185f_d3f3fd9028cd960832b9--


From nobody Thu Sep 12 22:55: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 66BA9120086 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 22:55: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 S9xLSMmwElJa for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 22:55: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 DDFE1120024 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 22:55:45 -0700 (PDT)
Date: Thu, 12 Sep 2019 22:55:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568354145; bh=xnVy8AKoUzYGARVDUPhGqRBH2SWVnbJk67x/CjkvtaQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=y717YDA1wuszxcquObag18t2IDlZnKLbJKKtItWYnF529L5Di+runm4Nzt6cRnPPx yO5y3rQgPCdUkahT9I789oWLQwPkAoKMABp6LxOM6KYz81DqmQsibFDVGSWElBSu1H Z+hGGQAC8nt+mxf6z9tPrCb6Aqm9Irxm+0jgu6QI=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3J5ZWZJYMJTTXF2UF3RBX7BEVBNHHBYXLIMY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2947/c531108737@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2947@github.com>
References: <quicwg/base-drafts/pull/2947@github.com>
Subject: Re: [quicwg/base-drafts] Describe interaction between QUIC and TLS regarding saved 0-RTT state (#2947)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b2f60eec0b_20d73ff05e0cd968117562"; 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/XSysoOlBu3KlJ8kuGHGpXFGQ3DE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 05:55:48 -0000

----==_mimepart_5d7b2f60eec0b_20d73ff05e0cd968117562
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> Should they become per-SNI + per-ALPN?

Does it even make sense to assume ALPN is always present in multiplexing protocols? An endpoint could have multiple active protocols on the same connection even if that is not supported by any protocol we currently know 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/2947#issuecomment-531108737
----==_mimepart_5d7b2f60eec0b_20d73ff05e0cd968117562
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>Should they become per-SNI + per-ALPN?</p>
</blockquote>
<p>Does it even make sense to assume ALPN is always present in multiplexing protocols? An endpoint could have multiple active protocols on the same connection even if that is not supported by any protocol we currently know 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/2947?email_source=notifications&amp;email_token=AFTOJK64HNP5CPIN3UVYDJ3QJMTOBA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UBHAI#issuecomment-531108737">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYOFOBWNPQLMNRDJFTQJMTOBANCNFSM4IIVRW7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZAKY3HJ2RURGCXXC3QJMTOBA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UBHAI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2947?email_source=notifications\u0026email_token=AFTOJK64HNP5CPIN3UVYDJ3QJMTOBA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UBHAI#issuecomment-531108737",
"url": "https://github.com/quicwg/base-drafts/pull/2947?email_source=notifications\u0026email_token=AFTOJK64HNP5CPIN3UVYDJ3QJMTOBA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UBHAI#issuecomment-531108737",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b2f60eec0b_20d73ff05e0cd968117562--


From nobody Thu Sep 12 22: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 BA9D0120088 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 22:58:47 -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 6shneUw6DLMi for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 22:58:46 -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 80184120024 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 22:58:46 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 0E0652603B7 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 22:58:46 -0700 (PDT)
Date: Thu, 12 Sep 2019 22:58:45 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4XSNSZJKBVJV4ZKHN3RBKILEVBNHHBYXLIMY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2947/c531109335@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2947@github.com>
References: <quicwg/base-drafts/pull/2947@github.com>
Subject: Re: [quicwg/base-drafts] Describe interaction between QUIC and TLS regarding saved 0-RTT state (#2947)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b3015bb765_4f6c3fe2ed0cd9642035b9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OcAXtTFeivg6YE3Uamjb_wFuZLA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 05:58:48 -0000

----==_mimepart_5d7b3015bb765_4f6c3fe2ed0cd9642035b9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ALPN is required by 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/2947#issuecomment-531109335
----==_mimepart_5d7b3015bb765_4f6c3fe2ed0cd9642035b9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>ALPN is required by QUIC.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2947?email_source=notifications&amp;email_token=AFTOJK4NY23ZT2RIWSW6AQDQJMTZLA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UBLVY#issuecomment-531109335">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY4GGJMMZAZEKYLUDDQJMTZLANCNFSM4IIVRW7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZVU6ZHXRRNUPN4LJDQJMTZLA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UBLVY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2947?email_source=notifications\u0026email_token=AFTOJK4NY23ZT2RIWSW6AQDQJMTZLA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UBLVY#issuecomment-531109335",
"url": "https://github.com/quicwg/base-drafts/pull/2947?email_source=notifications\u0026email_token=AFTOJK4NY23ZT2RIWSW6AQDQJMTZLA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UBLVY#issuecomment-531109335",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b3015bb765_4f6c3fe2ed0cd9642035b9--


From nobody Thu Sep 12 23:02: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 C73C9120088 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 23:02:02 -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 tOGbSViHsUOz for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 23:02:00 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BA29B120024 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 23:02:00 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id B5F9EA11AB for <quic-issues@ietf.org>; Thu, 12 Sep 2019 23:01:59 -0700 (PDT)
Date: Thu, 12 Sep 2019 23:01:59 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7KMEEXZU4LGEJ25M53RBYWPEVBNHHBYXLIMY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2947/c531109984@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2947@github.com>
References: <quicwg/base-drafts/pull/2947@github.com>
Subject: Re: [quicwg/base-drafts] Describe interaction between QUIC and TLS regarding saved 0-RTT state (#2947)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b30d7a727e_2ba03ff6e98cd9609791b"; 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/cMA95KGRB823LUyGybSwK_pGJw0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 06:02:03 -0000

----==_mimepart_5d7b30d7a727e_2ba03ff6e98cd9609791b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This is borderline off topic - but if ALPN is visible and firewalls use this to block traffic, endpoints might want to hide the ALPN. I suppose there is some ongoing work on ALPN encryption?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2947#issuecomment-531109984
----==_mimepart_5d7b30d7a727e_2ba03ff6e98cd9609791b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This is borderline off topic - but if ALPN is visible and firewalls use this to block traffic, endpoints might want to hide the ALPN. I suppose there is some ongoing work on ALPN encryption?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2947?email_source=notifications&amp;email_token=AFTOJK5LKPJNEDILJX25FATQJMUFPA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UBQYA#issuecomment-531109984">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYEF576MTLZWMREEU3QJMUFPANCNFSM4IIVRW7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZWDRQOXKF3RLZB4WDQJMUFPA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UBQYA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2947?email_source=notifications\u0026email_token=AFTOJK5LKPJNEDILJX25FATQJMUFPA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UBQYA#issuecomment-531109984",
"url": "https://github.com/quicwg/base-drafts/pull/2947?email_source=notifications\u0026email_token=AFTOJK5LKPJNEDILJX25FATQJMUFPA5CNFSM4IIVRW72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UBQYA#issuecomment-531109984",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b30d7a727e_2ba03ff6e98cd9609791b--


From nobody Thu Sep 12 23:11: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 6099D120090 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 23:11:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 Fvadr6s2z2Io for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 23:11: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 DC7B912004D for <quic-issues@ietf.org>; Thu, 12 Sep 2019 23:11:48 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 1E40C2C1A42 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 23:11:48 -0700 (PDT)
Date: Thu, 12 Sep 2019 23:11:48 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6R5XYKJBNRREAFJJF3RBS2JEVBNHHB2ZES4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3028/531111887@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3028@github.com>
References: <quicwg/base-drafts/issues/3028@github.com>
Subject: Re: [quicwg/base-drafts] Requiring per application data in session ticket seems wrong (#3028)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b33243bc3_5eeb3fb71e8cd95c555c6"; 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/OeTL3zimvguZ7idDcW5siXE5zt4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 06:11:50 -0000

----==_mimepart_5d7b33243bc3_5eeb3fb71e8cd95c555c6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mikkelfj As I stated in https://github.com/quicwg/base-drafts/issues/3028#issuecomment-531101603, it is my understanding that early-data can be used only when the ALPN matches, and therefore a QUIC stack is required to consult the application-specific data in the ticket only when the ALPN matches. Therefore I do not see any need for cross-application-protocol coordination. Am I missing 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/3028#issuecomment-531111887
----==_mimepart_5d7b33243bc3_5eeb3fb71e8cd95c555c6
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=3D193335" data-octo-click=3D"hovercard-link-cl=
ick" data-octo-dimensions=3D"link_type:self" href=3D"https://github.com/m=
ikkelfj">@mikkelfj</a> As I stated in <a class=3D"issue-link js-issue-lin=
k" data-error-text=3D"Failed to load issue title" data-id=3D"493130467" d=
ata-permission-text=3D"Issue title is private" data-url=3D"https://github=
.com/quicwg/base-drafts/issues/3028" data-hovercard-type=3D"issue" data-h=
overcard-url=3D"/quicwg/base-drafts/issues/3028/hovercard?comment_id=3D53=
1101603&amp;comment_type=3Dissue_comment" href=3D"https://github.com/quic=
wg/base-drafts/issues/3028#issuecomment-531101603">#3028 (comment)</a>, i=
t is my understanding that early-data can be used only when the ALPN matc=
hes, and therefore a QUIC stack is required to consult the application-sp=
ecific data in the ticket only when the ALPN matches. Therefore I do not =
see any need for cross-application-protocol coordination. Am I missing so=
mething?</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/3028?email_source=3Dnotifications&amp;email_token=3D=
AFTOJKYORDQTLM57GD2B5E3QJMVKJA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UB7TY#issuecomment-531111887">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJK7GSDIO5QSWPY4YYQ3QJMVKJANCNFSM4IWL5CVA">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJKYSODR7AHP4AZCI7N3Q=
JMVKJA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD6UB7TY.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/3028?email_source=
=3Dnotifications\u0026email_token=3DAFTOJKYORDQTLM57GD2B5E3QJMVKJA5CNFSM4=
IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UB7T=
Y#issuecomment-531111887",
"url": "https://github.com/quicwg/base-drafts/issues/3028?email_source=3D=
notifications\u0026email_token=3DAFTOJKYORDQTLM57GD2B5E3QJMVKJA5CNFSM4IWL=
5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UB7TY#i=
ssuecomment-531111887",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>=

----==_mimepart_5d7b33243bc3_5eeb3fb71e8cd95c555c6--


From nobody Thu Sep 12 23:15: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 8B771120090 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 23:15: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 xmtR4KUJm5V6 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 23:15:41 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A3F1712004D for <quic-issues@ietf.org>; Thu, 12 Sep 2019 23:15:41 -0700 (PDT)
Date: Thu, 12 Sep 2019 23:15:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568355340; bh=0Gm1OmaDA6Y1BTIPFc01HOudVKl75MSrbSjceN/2Frg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=n6GYHNQmfAnCiVpN3hnrfB9/okU8YiPYVfE6ZqTrVHunqwSaZHUXYY4D59A3bdOFZ btonjkZLT3wroN5O/ROW34YeXCP/yZLLKfEpM/q8TL9n80k/SJZF+wvdFGCETAQ3m1 W4t+H1bFA4tsv8hkheeQUBamv/qWIOtHn/FygyrY=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK33ANHEXTQ7VLDTQQN3RB2JZEVBNHHB2ZES4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3028/531112689@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3028@github.com>
References: <quicwg/base-drafts/issues/3028@github.com>
Subject: Re: [quicwg/base-drafts] Requiring per application data in session ticket seems wrong (#3028)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b340c86c42_139f3f97cfccd96c491ab"; 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/cbse7DmoH9lTyVPdpWe2m8RmWV0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 06:15:44 -0000

----==_mimepart_5d7b340c86c42_139f3f97cfccd96c491ab
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho Assuming things work as you say and a client receives a token from ALPN-X, and assuming the client does not remember tokens per ALPN, then you can have another ALPN named ALPN-Y in another session receiving the token generated for ALPN-X. If the ALPN-Y endpoint does not understand how to at least ignore ALPN-X data in the token, you can get undefined behaviour.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3028#issuecomment-531112689
----==_mimepart_5d7b340c86c42_139f3f97cfccd96c491ab
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> Assuming things work as you say and a client receives a token from ALPN-X, and assuming the client does not remember tokens per ALPN, then you can have another ALPN named ALPN-Y in another session receiving the token generated for ALPN-X. If the ALPN-Y endpoint does not understand how to at least ignore ALPN-X data in the token, you can get undefined behaviour.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications&amp;email_token=AFTOJKZ27PJ5IOK5SK7SAZDQJMVYZA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UCF4I#issuecomment-531112689">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK65QQG5RTUJNLMZYUDQJMVYZANCNFSM4IWL5CVA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY46H4IZDNUXBPDTQ3QJMVYZA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UCF4I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJKZ27PJ5IOK5SK7SAZDQJMVYZA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UCF4I#issuecomment-531112689",
"url": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJKZ27PJ5IOK5SK7SAZDQJMVYZA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UCF4I#issuecomment-531112689",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b340c86c42_139f3f97cfccd96c491ab--


From nobody Thu Sep 12 23: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 D7E371200C7 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 23:31:22 -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 Jxhs6SIBvl_m for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 23:31: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 69BAF120090 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 23:31:21 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 8D2D0661249 for <quic-issues@ietf.org>; Thu, 12 Sep 2019 23:31:20 -0700 (PDT)
Date: Thu, 12 Sep 2019 23:31:20 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7TULXHLH23RCBZESF3RBVDREVBNHHB2ZES4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3028/531116192@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3028@github.com>
References: <quicwg/base-drafts/issues/3028@github.com>
Subject: Re: [quicwg/base-drafts] Requiring per application data in session ticket seems wrong (#3028)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b37b87ec9d_5eed3fb71e8cd95c1996e6"; 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/yki4YWSJjzZ2yyaLEYSBTcaGK4c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 06:31:23 -0000

----==_mimepart_5d7b37b87ec9d_5eed3fb71e8cd95c1996e6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mikkelfj 
> If the ALPN-Y endpoint does not understand how to at least ignore ALPN-X data in the token, you can get undefined behaviour.

I do not think so. In the case you describe, the TLS stack will not indicate to the QUIC stack that 0-RTT is acceptable because the ALPN is different. Therefore, the QUIC stack handling ALPN-Y would not use the application-protocol-specific data in the session ticket (as it is expected to be used only when early data is acceptable  - that's what section 5.4 of the transport draft says). Hence no confusion.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3028#issuecomment-531116192
----==_mimepart_5d7b37b87ec9d_5eed3fb71e8cd95c1996e6
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></p>
<blockquote>
<p>If the ALPN-Y endpoint does not understand how to at least ignore ALPN-X data in the token, you can get undefined behaviour.</p>
</blockquote>
<p>I do not think so. In the case you describe, the TLS stack will not indicate to the QUIC stack that 0-RTT is acceptable because the ALPN is different. Therefore, the QUIC stack handling ALPN-Y would not use the application-protocol-specific data in the session ticket (as it is expected to be used only when early data is acceptable  - that's what section 5.4 of the transport draft says). Hence no confusion.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications&amp;email_token=AFTOJK4JJZBOWFYINUQFRFTQJMXTRA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UDBIA#issuecomment-531116192">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ7MVJZUP6T7ZK56NLQJMXTRANCNFSM4IWL5CVA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZZRUP7ABDUMTXRVPDQJMXTRA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UDBIA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJK4JJZBOWFYINUQFRFTQJMXTRA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UDBIA#issuecomment-531116192",
"url": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJK4JJZBOWFYINUQFRFTQJMXTRA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UDBIA#issuecomment-531116192",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b37b87ec9d_5eed3fb71e8cd95c1996e6--


From nobody Thu Sep 12 23:36: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 D19E412013F for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 23:36: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 i0RQGAYngq_7 for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 23:35:59 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9721D1200BA for <quic-issues@ietf.org>; Thu, 12 Sep 2019 23:35:59 -0700 (PDT)
Date: Thu, 12 Sep 2019 23:35:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568356558; bh=nWlKuTn1tBzyB5iTezlpU8EFjMzTsK/QOutQjL+VKtY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=F4AhWm2Lxa9nIGmKqi0A93aBQpv65m5cDzVcBp04F/K20nysgw2cVN0g2Kcg88aa7 U0ZKHmvZ/RTndofseS0vKIjrVCy5GuOn6JfirbFa6pMK+WaePXMR0uj01or9d30DXW LIMtUIALafGw85L4FKncY1Ke23SjBdoV12Vk9+Fw=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK64STHYO6TVK6OYQNV3RB4V5EVBNHHB2ZES4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3028/531117247@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3028@github.com>
References: <quicwg/base-drafts/issues/3028@github.com>
Subject: Re: [quicwg/base-drafts] Requiring per application data in session ticket seems wrong (#3028)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b38cea9a1c_77fd3fd5e1ccd96c50238"; 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/hLlvlwPbG6skgCunhQJNn7t4rtM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 06:36:01 -0000

----==_mimepart_5d7b38cea9a1c_77fd3fd5e1ccd96c50238
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

OK - I don't know enough about how TLS validates tokens - but if it does embed the ALPN in token validation, then the coordination I am asking for is already happening.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3028#issuecomment-531117247
----==_mimepart_5d7b38cea9a1c_77fd3fd5e1ccd96c50238
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>OK - I don't know enough about how TLS validates tokens - but if it does embed the ALPN in token validation, then the coordination I am asking for is already happening.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications&amp;email_token=AFTOJKZ3PZRCIEY2DB7BPZLQJMYE5A5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UDJPY#issuecomment-531117247">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4FFZNDYYOWEWB57ALQJMYE5ANCNFSM4IWL5CVA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5J6PR4SXCKFVKKIQ3QJMYE5A5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UDJPY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJKZ3PZRCIEY2DB7BPZLQJMYE5A5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UDJPY#issuecomment-531117247",
"url": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJKZ3PZRCIEY2DB7BPZLQJMYE5A5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UDJPY#issuecomment-531117247",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b38cea9a1c_77fd3fd5e1ccd96c50238--


From nobody Thu Sep 12 23:38: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 2A4671201EA for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 23:38: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 aGRKfhZBmqCN for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 23:38: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 86B261200BA for <quic-issues@ietf.org>; Thu, 12 Sep 2019 23:38:27 -0700 (PDT)
Date: Thu, 12 Sep 2019 23:38:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568356706; bh=WGQkLYce0mvRgWyNLYa9hTpYd30NrcxmaPufdJe9Gp4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TkWRBWzUVzfPkR5kZRKla5h//SqG2iKe6zlCvd41yg9WF6HFHosXuYkTdvNuULEAt e2KbBKR5O7AFruyB9xJRCj6gtuFQDifoNwqr5BYW2lIt4Ac0h+E00dE0ypWr3YOLJS Nd/tODbNchl2fQI2qSmAijEqvBObUVSpgvOditXo=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2XUDDVNAJ4WORZH5F3RB47FEVBNHHB2ZES4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3028/531117858@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3028@github.com>
References: <quicwg/base-drafts/issues/3028@github.com>
Subject: Re: [quicwg/base-drafts] Requiring per application data in session ticket seems wrong (#3028)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b3962a14d2_16f03f8fbeccd96c29677"; 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/gyFdYIf3-QQrys6OcVIHsBzt7wA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 06:38:29 -0000

----==_mimepart_5d7b3962a14d2_16f03f8fbeccd96c29677
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

So this means that 0-RTT does not work across protocols? This is unfortunate because if a client connects for HTTP and then connects for WebRTC data, it cannot use 0-RTT for WebRTC.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3028#issuecomment-531117858
----==_mimepart_5d7b3962a14d2_16f03f8fbeccd96c29677
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>So this means that 0-RTT does not work across protocols? This is unfortunate because if a client connects for HTTP and then connects for WebRTC data, it cannot use 0-RTT for WebRTC.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications&amp;email_token=AFTOJKYUXCPHUUQHZRO3TCTQJMYOFA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UDOIQ#issuecomment-531117858">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5MXDZ4AKDIMDZPEBLQJMYOFANCNFSM4IWL5CVA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZJMPIF3OI6OMNZERTQJMYOFA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UDOIQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJKYUXCPHUUQHZRO3TCTQJMYOFA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UDOIQ#issuecomment-531117858",
"url": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJKYUXCPHUUQHZRO3TCTQJMYOFA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UDOIQ#issuecomment-531117858",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b3962a14d2_16f03f8fbeccd96c29677--


From nobody Thu Sep 12 23:41: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 A2BB31201EA for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 23:41: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 izn0HlM9PNoo for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 23:41:01 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 59CF91200BA for <quic-issues@ietf.org>; Thu, 12 Sep 2019 23:41:01 -0700 (PDT)
Date: Thu, 12 Sep 2019 23:41:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568356860; bh=oSAFDFxQvo8ugX76w7Z6IfjTlw5g4dHykZ49Rp/ZsQQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=n+4WZ7mcPF8ePAQQf8/OVtFkR/X+KDX/rNMcijtpV13tMgSj+IXPFNceqyHb3dC8k cwjHXk6XKzvpZkX142zAdq1Vs09bAYB1FjeLj4YcrVlxb4rZtNeaUPz3xFBr1oqdAV LLUx0atQX31VjYrdR3ixV62AYFgeWvol1kr+UbJQ=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY27GGBIBSVV465FFF3RBWHZEVBNHHB2ZES4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3028/531118450@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3028@github.com>
References: <quicwg/base-drafts/issues/3028@github.com>
Subject: Re: [quicwg/base-drafts] Requiring per application data in session ticket seems wrong (#3028)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b39fc617cc_61bd3f87a4ecd9649877"; 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/kKIwBTyE14kS75slMhqqOC8FgRg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 06:41:03 -0000

----==_mimepart_5d7b39fc617cc_61bd3f87a4ecd9649877
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> So this means that 0-RTT does not work across protocols?

Correct. That is the restriction of TLS 1.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/3028#issuecomment-531118450
----==_mimepart_5d7b39fc617cc_61bd3f87a4ecd9649877
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>So this means that 0-RTT does not work across protocols?</p>
</blockquote>
<p>Correct. That is the restriction of TLS 1.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/3028?email_source=notifications&amp;email_token=AFTOJK6SMOYYQBYG22O5EOTQJMYXZA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UDS4Q#issuecomment-531118450">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3XKW3BOD2DHC4FTX3QJMYXZANCNFSM4IWL5CVA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4HA23BRQRNTAZJ5MLQJMYXZA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UDS4Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJK6SMOYYQBYG22O5EOTQJMYXZA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UDS4Q#issuecomment-531118450",
"url": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJK6SMOYYQBYG22O5EOTQJMYXZA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UDS4Q#issuecomment-531118450",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b39fc617cc_61bd3f87a4ecd9649877--


From nobody Thu Sep 12 23:45: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 C7A7F1200BA for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 23:45:39 -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 snGPx7uQym1h for <quic-issues@ietfa.amsl.com>; Thu, 12 Sep 2019 23:45:38 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2CA5B12004D for <quic-issues@ietf.org>; Thu, 12 Sep 2019 23:45:38 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 8A17DA002A for <quic-issues@ietf.org>; Thu, 12 Sep 2019 23:45:37 -0700 (PDT)
Date: Thu, 12 Sep 2019 23:45:37 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK76Z2GIVMPD4WZLZAF3RBWZDEVBNHHB2ZES4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3028/531119532@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3028@github.com>
References: <quicwg/base-drafts/issues/3028@github.com>
Subject: Re: [quicwg/base-drafts] Requiring per application data in session ticket seems wrong (#3028)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b3b117b526_3a373ff7926cd968155375"; 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/IBdsYonxpgAvr4WWljiQrGpZeFk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 06:45:40 -0000

----==_mimepart_5d7b3b117b526_3a373ff7926cd968155375
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

So spec-wise, I think we might want to change:=0D
=0D
"if Early Data is supported, retrieve application-controlled data from th=
e client=E2=80=99s resumption ticket and enable rejecting Early Data base=
d on that information."=0D
=0D
to =0D
=0D
"if Early Data is supported, and when the TLS protocol stack indicates th=
at Early Data can be accepted, retrieve application-controlled data from =
the client=E2=80=99s resumption ticket and enable rejecting Early Data ba=
sed on that information."=0D
=0D
as well as suggesting that the application protocol-specific information =
is to be associated rather than stored, as pointed out by @martinthomson =
in https://github.com/quicwg/base-drafts/issues/3028#issuecomment-5311069=
15.=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/3028#issuecomment-531119532=

----==_mimepart_5d7b3b117b526_3a373ff7926cd968155375
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>So spec-wise, I think we might want to change:</p>=0D
<p>"if Early Data is supported, retrieve application-controlled data from=
 the client=E2=80=99s resumption ticket and enable rejecting Early Data b=
ased on that information."</p>=0D
<p>to</p>=0D
<p>"if Early Data is supported, and when the TLS protocol stack indicates=
 that Early Data can be accepted, retrieve application-controlled data fr=
om the client=E2=80=99s resumption ticket and enable rejecting Early Data=
 based on that information."</p>=0D
<p>as well as suggesting that the application protocol-specific informati=
on is to be associated rather than stored, as pointed out by <a class=3D"=
user-mention" data-hovercard-type=3D"user" data-hovercard-url=3D"/hoverca=
rds?user_id=3D67641" data-octo-click=3D"hovercard-link-click" data-octo-d=
imensions=3D"link_type:self" href=3D"https://github.com/martinthomson">@m=
artinthomson</a> in <a class=3D"issue-link js-issue-link" data-error-text=
=3D"Failed to load issue title" data-id=3D"493130467" data-permission-tex=
t=3D"Issue title is private" data-url=3D"https://github.com/quicwg/base-d=
rafts/issues/3028" data-hovercard-type=3D"issue" data-hovercard-url=3D"/q=
uicwg/base-drafts/issues/3028/hovercard?comment_id=3D531106915&amp;commen=
t_type=3Dissue_comment" href=3D"https://github.com/quicwg/base-drafts/iss=
ues/3028#issuecomment-531106915">#3028 (comment)</a>.</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/3028?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK3T73W5G3EU3FDLEUTQJMZJDA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UD3LA#issuecomment-531119532">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJKZPYKEEXPPQVPBSBEDQJMZJDANCNFSM4IWL5CVA">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJK5C4M3CLVS7VIPDZ5LQ=
JMZJDA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD6UD3LA.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/3028?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK3T73W5G3EU3FDLEUTQJMZJDA5CNFSM4=
IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UD3L=
A#issuecomment-531119532",=0D
"url": "https://github.com/quicwg/base-drafts/issues/3028?email_source=3D=
notifications\u0026email_token=3DAFTOJK3T73W5G3EU3FDLEUTQJMZJDA5CNFSM4IWL=
5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UD3LA#i=
ssuecomment-531119532",=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_5d7b3b117b526_3a373ff7926cd968155375--


From nobody Fri Sep 13 00:44: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 D30FA12022A for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 00:44: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 SLiygzbC8c6P for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 00:44: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 07E541201EA for <quic-issues@ietf.org>; Fri, 13 Sep 2019 00:44:35 -0700 (PDT)
Date: Fri, 13 Sep 2019 00:44:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568360674; bh=jDcK3GvDgHxXx2uaXjNv/RzlVxZ/WTwyzfk2NJYnf0g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=n54TfSAS8p3h6qN4Id0FxS1CtitIzff7+TSFkUQLjw9L6AHhB14/cqZ18wlCpO7HC 9N4C7G/X//gptgEbF6s93FiHsy464OO4bGDIBvkuJLRB0afn7SODk+D8V2sJcChqck pnpCMuoHmMqnV6fOJYHAGNIdKNwNDijpy8KijkyM=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZSV7OJVTGIX5T2BDV3RBWVFEVBNHHBZ6ZBM4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2995/531135802@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2995@github.com>
References: <quicwg/base-drafts/issues/2995@github.com>
Subject: Re: [quicwg/base-drafts] Confused about Fixed Bit in Version Negotiation Packet (#2995)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b48e226697_4dcb3fd7232cd960155096"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/WYmm7eYsuYSgAEnWxSDgIQfT5wE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 07:44:37 -0000

----==_mimepart_5d7b48e226697_4dcb3fd7232cd960155096
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

>  If Client must ignore the value(including Fixed Bit), why server should set Fixed Bit?

Because this might allow us - in future - to depend on that behaviour.  We might assign semantics to a non-zero value.  A client that doesn't understand that bit will continue to consume the packet and ignore the semantic difference.  If servers set the value any way they please, then we can't.  (It's a SHOULD, so we won't be able to rely on it exclusively, but we might still be able to do something with it.  That said, I consider it a write-off, but this is a general protocol design hygiene matter.)

My proposal for this issue is to do nothing.  This is a little complex, but I don't think that the required behaviour is unclear 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/2995#issuecomment-531135802
----==_mimepart_5d7b48e226697_4dcb3fd7232cd960155096
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>If Client must ignore the value(including Fixed Bit), why server should set Fixed Bit?</p>
</blockquote>
<p>Because this might allow us - in future - to depend on that behaviour.  We might assign semantics to a non-zero value.  A client that doesn't understand that bit will continue to consume the packet and ignore the semantic difference.  If servers set the value any way they please, then we can't.  (It's a SHOULD, so we won't be able to rely on it exclusively, but we might still be able to do something with it.  That said, I consider it a write-off, but this is a general protocol design hygiene matter.)</p>
<p>My proposal for this issue is to do nothing.  This is a little complex, but I don't think that the required behaviour is unclear 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/2995?email_source=notifications&amp;email_token=AFTOJK7W4FMR6QMQKECTQ6TQJNAGFA5CNFSM4IQ6MWNKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UH2OQ#issuecomment-531135802">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ6LZUZ3Y46KJWIODTQJNAGFANCNFSM4IQ6MWNA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK47ARU6TBPKKKZ7ZX3QJNAGFA5CNFSM4IQ6MWNKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UH2OQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/2995?email_source=notifications\u0026email_token=AFTOJK7W4FMR6QMQKECTQ6TQJNAGFA5CNFSM4IQ6MWNKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UH2OQ#issuecomment-531135802",
"url": "https://github.com/quicwg/base-drafts/issues/2995?email_source=notifications\u0026email_token=AFTOJK7W4FMR6QMQKECTQ6TQJNAGFA5CNFSM4IQ6MWNKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6UH2OQ#issuecomment-531135802",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b48e226697_4dcb3fd7232cd960155096--


From nobody Fri Sep 13 06:38: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 0A8EE12004F for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 06:38: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 hd8aUk40MjEa for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 06:37: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 3A5BF120047 for <quic-issues@ietf.org>; Fri, 13 Sep 2019 06:37:58 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id 10FD96A0767 for <quic-issues@ietf.org>; Fri, 13 Sep 2019 06:37:57 -0700 (PDT)
Date: Fri, 13 Sep 2019 06:37:57 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZS7LNGUL4ABNLCVTV3RDOEJEVBNHHB2ZEM7Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3027/531240209@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3027@github.com>
References: <quicwg/base-drafts/issues/3027@github.com>
Subject: Re: [quicwg/base-drafts] Codes for frame encoding errors (#3027)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7b9bb5db2_ea03fcbfc6cd95c3406d4"; 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/cQb7PxPZnaOFms4s4S17n2wCPu4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 13:38:00 -0000

----==_mimepart_5d7b9bb5db2_ea03fcbfc6cd95c3406d4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'd like to see a PR, but that seems like a good principle.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3027#issuecomment-531240209
----==_mimepart_5d7b9bb5db2_ea03fcbfc6cd95c3406d4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'd like to see a PR, but that seems like a good principle.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3027?email_source=notifications&amp;email_token=AFTOJK4RDM3IWT5OXEE36IDQJOJTLA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VBKEI#issuecomment-531240209">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5BPC4G5LXBIZKR3XTQJOJTLANCNFSM4IWL4A7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYNPLGVJJNOZWZ6C4TQJOJTLA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VBKEI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3027?email_source=notifications\u0026email_token=AFTOJK4RDM3IWT5OXEE36IDQJOJTLA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VBKEI#issuecomment-531240209",
"url": "https://github.com/quicwg/base-drafts/issues/3027?email_source=notifications\u0026email_token=AFTOJK4RDM3IWT5OXEE36IDQJOJTLA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VBKEI#issuecomment-531240209",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7b9bb5db2_ea03fcbfc6cd95c3406d4--


From nobody Fri Sep 13 07:07: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 CBC9A120043 for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 07:07:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.28
X-Spam-Level: 
X-Spam-Status: No, score=-6.28 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, 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 TApAWwL1muhb for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 07:07: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 7666F12002F for <quic-issues@ietf.org>; Fri, 13 Sep 2019 07:07:07 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 9FBED6E113E for <quic-issues@ietf.org>; Fri, 13 Sep 2019 07:07:06 -0700 (PDT)
Date: Fri, 13 Sep 2019 07:07:06 -0700
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2OXYOIYHA4UUKS3LV3RDRRVEVBNHHB2Z62PY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3029@github.com>
Subject: [quicwg/base-drafts] Packet header fields cannot be omitted (#3029)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7ba28a8f8cb_17533fc9e52cd96067683"; 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/1G3SaJc5rslVmKnTGyqf9yCqeNA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 14:07:10 -0000

----==_mimepart_5d7ba28a8f8cb_17533fc9e52cd96067683
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

At the top of page 66 of the [transport draft](https://tools.ietf.org/html/draft-ietf-quic-transport-23), we read:

```
   Every QUIC packet that is coalesced into a single UDP datagram is
   separate and complete.  Though the values of some fields in the
   packet header might be redundant, no fields are omitted.  The
   receiver of coalesced QUIC packets MUST individually process each
   QUIC packet and separately acknowledge them, as if they were received
   as the payload of different UDP datagrams.  For example, if
   decryption fails (because the keys are not available or any other
   reason), the receiver MAY either discard or buffer the packet for
   later processing and MUST attempt to process the remaining packets.
```

The second sentence seems to imply that a field *could* be omitted.

Does this sentence sound odd to anyone 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/issues/3029
----==_mimepart_5d7ba28a8f8cb_17533fc9e52cd96067683
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>At the top of page 66 of the <a href="https://tools.ietf.org/html/draft-ietf-quic-transport-23" rel="nofollow">transport draft</a>, we read:</p>
<pre><code>   Every QUIC packet that is coalesced into a single UDP datagram is
   separate and complete.  Though the values of some fields in the
   packet header might be redundant, no fields are omitted.  The
   receiver of coalesced QUIC packets MUST individually process each
   QUIC packet and separately acknowledge them, as if they were received
   as the payload of different UDP datagrams.  For example, if
   decryption fails (because the keys are not available or any other
   reason), the receiver MAY either discard or buffer the packet for
   later processing and MUST attempt to process the remaining packets.
</code></pre>
<p>The second sentence seems to imply that a field <em>could</em> be omitted.</p>
<p>Does this sentence sound odd to anyone 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/issues/3029?email_source=notifications&amp;email_token=AFTOJK4BHOCL22PMVAM2H4DQJONAVA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLH3J7A">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3J5UV55HRLUDHWAMDQJONAVANCNFSM4IWQL7NA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZPHRMKQCTZYGVNKMLQJONAVA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLH3J7A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3029?email_source=notifications\u0026email_token=AFTOJK4BHOCL22PMVAM2H4DQJONAVA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLH3J7A",
"url": "https://github.com/quicwg/base-drafts/issues/3029?email_source=notifications\u0026email_token=AFTOJK4BHOCL22PMVAM2H4DQJONAVA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLH3J7A",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7ba28a8f8cb_17533fc9e52cd96067683--


From nobody Fri Sep 13 07:30: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 33A9C12002F for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 07:30:41 -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 oe5ZQRDU1yVl for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 07:30:39 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 98785120047 for <quic-issues@ietf.org>; Fri, 13 Sep 2019 07:30:39 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id CE5A28C0031 for <quic-issues@ietf.org>; Fri, 13 Sep 2019 07:30:38 -0700 (PDT)
Date: Fri, 13 Sep 2019 07:30:38 -0700
From: Ryan Hamilton <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6RVCEE4INAPQ5PVMF3RDUJ5EVBNHHB2Z62PY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3029/531259692@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3029@github.com>
References: <quicwg/base-drafts/issues/3029@github.com>
Subject: Re: [quicwg/base-drafts] Packet header fields cannot be omitted (#3029)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7ba80ebfa5b_5ea93fb8d9ecd96c75445"; 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/NcHXVtLzKp-3EeFrnYf_ErHsKBo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 14:30:41 -0000

----==_mimepart_5d7ba80ebfa5b_5ea93fb8d9ecd96c75445
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

While it is perhaps technically redundant, I think it is actually quite helpful. The first sentence says, "complete" but that might be open to interpretation. The second sentence makes it clear what that means. I like it.

YMMV :)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3029#issuecomment-531259692
----==_mimepart_5d7ba80ebfa5b_5ea93fb8d9ecd96c75445
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>While it is perhaps technically redundant, I think it is actually quite helpful. The first sentence says, "complete" but that might be open to interpretation. The second sentence makes it clear what that means. I like it.</p>
<p>YMMV :)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3029?email_source=notifications&amp;email_token=AFTOJK5Z5VCQII62GJKSVZ3QJOPY5A5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VGCLA#issuecomment-531259692">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7NSTMAVLEWTPPLRSTQJOPY5ANCNFSM4IWQL7NA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5WOEJGYEO4HABW5UDQJOPY5A5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VGCLA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3029?email_source=notifications\u0026email_token=AFTOJK5Z5VCQII62GJKSVZ3QJOPY5A5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VGCLA#issuecomment-531259692",
"url": "https://github.com/quicwg/base-drafts/issues/3029?email_source=notifications\u0026email_token=AFTOJK5Z5VCQII62GJKSVZ3QJOPY5A5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VGCLA#issuecomment-531259692",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7ba80ebfa5b_5ea93fb8d9ecd96c75445--


From nobody Fri Sep 13 07:41: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 A95B612087E for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 07:41:56 -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 45ebV0hXiSF9 for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 07:41: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 1B085120888 for <quic-issues@ietf.org>; Fri, 13 Sep 2019 07:41:54 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 518616A0062 for <quic-issues@ietf.org>; Fri, 13 Sep 2019 07:41:53 -0700 (PDT)
Date: Fri, 13 Sep 2019 07:41:53 -0700
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZQO4PWZFMHUV5MUHF3RDVUDEVBNHHB2Z62PY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3029/531264217@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3029@github.com>
References: <quicwg/base-drafts/issues/3029@github.com>
Subject: Re: [quicwg/base-drafts] Packet header fields cannot be omitted (#3029)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7baab143446_200c3ff62e8cd96c55346"; 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/nHpf2ZGJd1S1p60-BZzW3IS4Mgw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 14:41:56 -0000

----==_mimepart_5d7baab143446_200c3ff62e8cd96c55346
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

My issue is not with the redundancy of the second senteance, but rather with its meaning.  The specification that "no fields be omitted" implies that fields *could be* omitted -- but they can't be:  There are no optional fields in packet 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/3029#issuecomment-531264217
----==_mimepart_5d7baab143446_200c3ff62e8cd96c55346
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>My issue is not with the redundancy of the second senteance, but rather with its meaning.  The specification that "no fields be omitted" implies that fields <em>could be</em> omitted -- but they can't be:  There are no optional fields in packet headers.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3029?email_source=notifications&amp;email_token=AFTOJKYX3VYG3WMP4PIHDZTQJORDDA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VHFWI#issuecomment-531264217">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4MTFL5LWD33PZ4OUTQJORDDANCNFSM4IWQL7NA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK55WM2SBTVZIJQXLYLQJORDDA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VHFWI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3029?email_source=notifications\u0026email_token=AFTOJKYX3VYG3WMP4PIHDZTQJORDDA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VHFWI#issuecomment-531264217",
"url": "https://github.com/quicwg/base-drafts/issues/3029?email_source=notifications\u0026email_token=AFTOJKYX3VYG3WMP4PIHDZTQJORDDA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VHFWI#issuecomment-531264217",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7baab143446_200c3ff62e8cd96c55346--


From nobody Fri Sep 13 07:47: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 50880120858 for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 07:47:29 -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 OWqSLzOylD8Z for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 07:47: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 9F13612081F for <quic-issues@ietf.org>; Fri, 13 Sep 2019 07:47:27 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id E02F7661DE1 for <quic-issues@ietf.org>; Fri, 13 Sep 2019 07:47:26 -0700 (PDT)
Date: Fri, 13 Sep 2019 07:47:26 -0700
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5JZC4YBKS3TZMBOJN3RDWI5EVBNHHB2Z62PY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3029/531266787@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3029@github.com>
References: <quicwg/base-drafts/issues/3029@github.com>
Subject: Re: [quicwg/base-drafts] Packet header fields cannot be omitted (#3029)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7babfed0b2d_1a503fd63a2cd9681618f9"; 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/SqwM1Q5bZlZKQEsKnSP7FP_t9ag>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 14:47:29 -0000

----==_mimepart_5d7babfed0b2d_1a503fd63a2cd9681618f9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Maybe change the second sentence to something like:
```
Though the values of some fields in the header might be redundant, it is
not possible to omit any fields.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3029#issuecomment-531266787
----==_mimepart_5d7babfed0b2d_1a503fd63a2cd9681618f9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Maybe change the second sentence to something like:</p>
<pre><code>Though the values of some fields in the header might be redundant, it is
not possible to omit any fields.
</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/3029?email_source=notifications&amp;email_token=AFTOJKYRH6R46XWC4H6TOULQJORX5A5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VHZYY#issuecomment-531266787">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZWBZEXQMQIRTXRELDQJORX5ANCNFSM4IWQL7NA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2IS5FWN2YXTHEBCJTQJORX5A5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VHZYY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3029?email_source=notifications\u0026email_token=AFTOJKYRH6R46XWC4H6TOULQJORX5A5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VHZYY#issuecomment-531266787",
"url": "https://github.com/quicwg/base-drafts/issues/3029?email_source=notifications\u0026email_token=AFTOJKYRH6R46XWC4H6TOULQJORX5A5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VHZYY#issuecomment-531266787",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7babfed0b2d_1a503fd63a2cd9681618f9--


From nobody Fri Sep 13 07:52: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 F2693120071 for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 07:52:40 -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 eDBhcBbLJtEm for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 07:52: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 CF2D4120047 for <quic-issues@ietf.org>; Fri, 13 Sep 2019 07:52:38 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id B2B811C04AC for <quic-issues@ietf.org>; Fri, 13 Sep 2019 07:52:37 -0700 (PDT)
Date: Fri, 13 Sep 2019 07:52:37 -0700
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3Z3SPATPNGUZ4TKA53RDW4LEVBNHHB2Z62PY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3029/531268914@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3029@github.com>
References: <quicwg/base-drafts/issues/3029@github.com>
Subject: Re: [quicwg/base-drafts] Packet header fields cannot be omitted (#3029)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7bad35a3c13_177f3f9ae18cd96013329f"; 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/kpz3tP09bxSrmDNPQB5xgM2S_WY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 14:52:41 -0000

----==_mimepart_5d7bad35a3c13_177f3f9ae18cd96013329f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@RyanAtGoogle writes:
> The first sentence says, "complete" but that might be open to interpretation. The second sentence makes it clear what that means. I like it.

The third sentence clarifies the first sentence well, too.

I would just drop the second sentence altogether.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3029#issuecomment-531268914
----==_mimepart_5d7bad35a3c13_177f3f9ae18cd96013329f
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=19561162" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/RyanAtGoogle">@RyanAtGoogle</a> writes:</p>
<blockquote>
<p>The first sentence says, "complete" but that might be open to interpretation. The second sentence makes it clear what that means. I like it.</p>
</blockquote>
<p>The third sentence clarifies the first sentence well, too.</p>
<p>I would just drop the second sentence altogether.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3029?email_source=notifications&amp;email_token=AFTOJKZC5MTEPELITG3SGKTQJOSLLA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VIKMQ#issuecomment-531268914">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4DCVKEWTULYXFK7HTQJOSLLANCNFSM4IWQL7NA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZFGD5UYAAD5WNORJLQJOSLLA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VIKMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3029?email_source=notifications\u0026email_token=AFTOJKZC5MTEPELITG3SGKTQJOSLLA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VIKMQ#issuecomment-531268914",
"url": "https://github.com/quicwg/base-drafts/issues/3029?email_source=notifications\u0026email_token=AFTOJKZC5MTEPELITG3SGKTQJOSLLA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VIKMQ#issuecomment-531268914",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7bad35a3c13_177f3f9ae18cd96013329f--


From nobody Fri Sep 13 08:19: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 ED617120864 for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 08:19: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 C5HX2DGJGoMt for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 08:19:47 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 56F721200F9 for <quic-issues@ietf.org>; Fri, 13 Sep 2019 08:19:47 -0700 (PDT)
Date: Fri, 13 Sep 2019 08:19:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568387986; bh=N9j8ybCzH8ZNybMw5L52xysJgNu0BcHKfmjcZhupqLg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=2BdCjCYxy9IlZGSO7Xs+7nquQCcybZb8zkSdwulnOD6VhcxwBN5PA0HZxVErUSQtF 1XLwkuDaggtMgxu0cmPA1tlKlrg9ex8v5DEd1MgIRwZa9b8SrP1bZldnS+a/nn4FFv p/NMAX5nnnEYIoJfcD1gNwghJXgu87nOhy5u7EBA=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK77ZL3ILLEBNGKGT6N3RD2CFEVBNHHBYY33OM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2952/c531279851@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2952@github.com>
References: <quicwg/base-drafts/pull/2952@github.com>
Subject: Re: [quicwg/base-drafts] Skip a packet number when sending one PTO packet (#2952)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7bb39269d50_77453fb8050cd9686507d"; 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/U6RlHb5Aq7kAXiPL6fSK8vGdMho>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 15:19:49 -0000

----==_mimepart_5d7bb39269d50_77453fb8050cd9686507d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm going to run an experiment comparing 1 PTO packet, 2 PTO packets, and 1 with skipping a packet number and report back the results.  If the results are good enough with 1PTO + gap, we can consider whether this is an optimization worth mentioning.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2952#issuecomment-531279851
----==_mimepart_5d7bb39269d50_77453fb8050cd9686507d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'm going to run an experiment comparing 1 PTO packet, 2 PTO packets, and 1 with skipping a packet number and report back the results.  If the results are good enough with 1PTO + gap, we can consider whether this is an optimization worth mentioning.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications&amp;email_token=AFTOJK55XFP2SMYTKNL64T3QJOVRFA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VK72Y#issuecomment-531279851">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7UQFSYT3DNNQFKLUDQJOVRFANCNFSM4II7ULMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4TRCWQGOEQH7D5JM3QJOVRFA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VK72Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications\u0026email_token=AFTOJK55XFP2SMYTKNL64T3QJOVRFA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VK72Y#issuecomment-531279851",
"url": "https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications\u0026email_token=AFTOJK55XFP2SMYTKNL64T3QJOVRFA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VK72Y#issuecomment-531279851",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7bb39269d50_77453fb8050cd9686507d--


From nobody Fri Sep 13 08: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 68A23120884 for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 08:19: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 QRLKl6qbHo7D for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 08:19:48 -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 B4A25120862 for <quic-issues@ietf.org>; Fri, 13 Sep 2019 08:19:48 -0700 (PDT)
Date: Fri, 13 Sep 2019 08:19:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568387987; bh=1nfpeFWCTz2P5nOE5GveRf2Xm8ZE6gj44XvRry9+jeE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=v08HwrwafQnA/3ltxVlUrsCbfsRDo9NbD5MtJArDllAc4qS9F2n5OtyI4soxHiyD0 19c4+1DbqkVYT+vt8ZpxDPpg4qL/GX96IUKRu+/4RQMHMO1euHWJ1rfnjv0zfPEw5U utOWIaGgnsVEWr6DKdxs5xTsDvT8OiZSrl3m4sxE=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZYN4DPXYDONOWWS553RD2CHEVBNHHBYY33OM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2952/issue_event/2632699273@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2952@github.com>
References: <quicwg/base-drafts/pull/2952@github.com>
Subject: Re: [quicwg/base-drafts] Skip a packet number when sending one PTO packet (#2952)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7bb393c5592_79ad3ffa0d0cd964563eb"; 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/8RWNVvUD4Hg6RhPXGFK1xnbOBXo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 15:19:52 -0000

----==_mimepart_5d7bb393c5592_79ad3ffa0d0cd964563eb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2952.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2952#event-2632699273
----==_mimepart_5d7bb393c5592_79ad3ffa0d0cd964563eb
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="476281715" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2952" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2952/hovercard" href="https://github.com/quicwg/base-drafts/pull/2952">#2952</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/2952?email_source=notifications&amp;email_token=AFTOJK5KBEBL57G2MYDTSDLQJOVRHA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTV43CI#event-2632699273">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3HCOBUKA37YSSI3Q3QJOVRHANCNFSM4II7ULMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZVLIRTQ2ISRD5AV5LQJOVRHA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTV43CI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications\u0026email_token=AFTOJK5KBEBL57G2MYDTSDLQJOVRHA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTV43CI#event-2632699273",
"url": "https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications\u0026email_token=AFTOJK5KBEBL57G2MYDTSDLQJOVRHA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTTV43CI#event-2632699273",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7bb393c5592_79ad3ffa0d0cd964563eb--


From nobody Fri Sep 13 08:59: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 0EADE120073 for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 08:59:06 -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 bIHHRqky-_Zo for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 08:59: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 E506F12001E for <quic-issues@ietf.org>; Fri, 13 Sep 2019 08:59:04 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 0A707960E56 for <quic-issues@ietf.org>; Fri, 13 Sep 2019 08:59:04 -0700 (PDT)
Date: Fri, 13 Sep 2019 08:59:03 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2WFVO3PUXVVM5ITDF3RD6VPEVBNHHBYY33OM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2952/c531294213@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2952@github.com>
References: <quicwg/base-drafts/pull/2952@github.com>
Subject: Re: [quicwg/base-drafts] Skip a packet number when sending one PTO packet (#2952)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7bbcc7eb29f_7593f7fc18cd9646298d"; 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/5Nk4cPxgcSGuZ4w7iaviss9VD2k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 15:59:06 -0000

----==_mimepart_5d7bbcc7eb29f_7593f7fc18cd9646298d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Can also test this both sides at the same time? I'm still concerned this might run away in ACK floods.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2952#issuecomment-531294213
----==_mimepart_5d7bbcc7eb29f_7593f7fc18cd9646298d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Can also test this both sides at the same time? I'm still concerned this might run away in ACK floods.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications&amp;email_token=AFTOJK25RHLE5WLEW2U5F33QJO2EPA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VOQBI#issuecomment-531294213">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4KCJATRUEKRZ3EEZ3QJO2EPANCNFSM4II7ULMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYOGDV2MYBHOU6QCMDQJO2EPA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VOQBI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications\u0026email_token=AFTOJK25RHLE5WLEW2U5F33QJO2EPA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VOQBI#issuecomment-531294213",
"url": "https://github.com/quicwg/base-drafts/pull/2952?email_source=notifications\u0026email_token=AFTOJK25RHLE5WLEW2U5F33QJO2EPA5CNFSM4II7ULMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VOQBI#issuecomment-531294213",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7bbcc7eb29f_7593f7fc18cd9646298d--


From nobody Fri Sep 13 09:31: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 BA355120073 for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 09:31:09 -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 wJjDVAIKezuD for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 09:31: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 456CB120041 for <quic-issues@ietf.org>; Fri, 13 Sep 2019 09:31:08 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 6FBA76A039D for <quic-issues@ietf.org>; Fri, 13 Sep 2019 09:31:07 -0700 (PDT)
Date: Fri, 13 Sep 2019 09:31:07 -0700
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4KHJWS2OFP7KLAX5F3RECNXEVBNHHB22HNKU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3030@github.com>
Subject: [quicwg/base-drafts] Remove Requirement of an Acknowledgement per Round Trip (#3030)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7bc44b60411_24be3fd571acd95c171577"; 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/fdKRoTbqplVCqovUiw8l_T13Szk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 16:31:10 -0000

----==_mimepart_5d7bc44b60411_24be3fd571acd95c171577
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The spec gives no reason (that I can see) as to why an ACK frame must be sent at least once per round trip (assuming there are ack-eliciting packets to acknowledge), effectively overwriting the ACK delay logic when the RTT is very small. If the RTT is smaller than the platform's timer granularity, this isn't really even possible.

I propose to remove this requirement. If the WG instead feels that we should keep this requirement, then there should be a reasoning for it; and probably an update to the PTO calculation 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/3030
----==_mimepart_5d7bc44b60411_24be3fd571acd95c171577
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The spec gives no reason (that I can see) as to why an ACK frame must be sent at least once per round trip (assuming there are ack-eliciting packets to acknowledge), effectively overwriting the ACK delay logic when the RTT is very small. If the RTT is smaller than the platform's timer granularity, this isn't really even possible.</p>
<p>I propose to remove this requirement. If the WG instead feels that we should keep this requirement, then there should be a reasoning for it; and probably an update to the PTO calculation 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/3030?email_source=notifications&amp;email_token=AFTOJK42TNHBDEQCYQULUJLQJO54XA5CNFSM4IWR4NR2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLI5VKQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5AL47DX3BZCAMI7F3QJO54XANCNFSM4IWR4NRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7C3N2GNCLUR6CRJDLQJO54XA5CNFSM4IWR4NR2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLI5VKQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3030?email_source=notifications\u0026email_token=AFTOJK42TNHBDEQCYQULUJLQJO54XA5CNFSM4IWR4NR2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLI5VKQ",
"url": "https://github.com/quicwg/base-drafts/issues/3030?email_source=notifications\u0026email_token=AFTOJK42TNHBDEQCYQULUJLQJO54XA5CNFSM4IWR4NR2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLI5VKQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7bc44b60411_24be3fd571acd95c171577--


From nobody Fri Sep 13 09:36: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 877B9120041 for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 09:36: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 ZszcpNSDjaZB for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 09:36: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 8F0C112010F for <quic-issues@ietf.org>; Fri, 13 Sep 2019 09:35:58 -0700 (PDT)
Date: Fri, 13 Sep 2019 09:35:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568392557; bh=geMrXqhhfdilMZxyfZ38kT9xUFT6Axv9fg1x6CdIyyI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=I3DLAUh/UFvWTi6HQq/ls54nLb1FUytpyQkvnJ6HfgL2FGqPgP2mmt5twvInCjot+ IEvshbmuhcEgBFclyuVvL0cmFEtOenR0rWvAw2HQmg1X5dzOlT9gUatGEo+RWjGF4S ZUXtGvCuAdPfrz+XsHSnFUEpf6UYaF2bws6vHlu8=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZLF6FB7GNGHQTJFYV3REC73EVBNHHB22HNKU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3030/531306962@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3030@github.com>
References: <quicwg/base-drafts/issues/3030@github.com>
Subject: Re: [quicwg/base-drafts] Remove Requirement of an Acknowledgement per Round Trip (#3030)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7bc56dd1fe8_37a73fe6ec8cd9683225ac"; 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/CWxyaoDebzEI312hBkn2Ij6hIwo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 16:36:07 -0000

----==_mimepart_5d7bc56dd1fe8_37a73fe6ec8cd9683225ac
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

As I commented on the PR that this came up in, given we have an explicit max_ack_delay that's now communicated, removing the 1 ACK per RTT requirement seems wide.

TCP has no such recommendation and I'm unaware of any indications or proposals that it should have such a property.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3030#issuecomment-531306962
----==_mimepart_5d7bc56dd1fe8_37a73fe6ec8cd9683225ac
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>As I commented on the PR that this came up in, given we have an explicit max_ack_delay that's now communicated, removing the 1 ACK per RTT requirement seems wide.</p>
<p>TCP has no such recommendation and I'm unaware of any indications or proposals that it should have such a property.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3030?email_source=notifications&amp;email_token=AFTOJKZWFZCP4LEF3GK5OOLQJO6O3A5CNFSM4IWR4NR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VRTUQ#issuecomment-531306962">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZPS7KXPWIZFY4NKR3QJO6O3ANCNFSM4IWR4NRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4P34RMJOTQ4JHHFRTQJO6O3A5CNFSM4IWR4NR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VRTUQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3030?email_source=notifications\u0026email_token=AFTOJKZWFZCP4LEF3GK5OOLQJO6O3A5CNFSM4IWR4NR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VRTUQ#issuecomment-531306962",
"url": "https://github.com/quicwg/base-drafts/issues/3030?email_source=notifications\u0026email_token=AFTOJKZWFZCP4LEF3GK5OOLQJO6O3A5CNFSM4IWR4NR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VRTUQ#issuecomment-531306962",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7bc56dd1fe8_37a73fe6ec8cd9683225ac--


From nobody Fri Sep 13 10:47: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 1D973120110 for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 10:47:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 rQfPY_LoATgv for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 10:47:36 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 777811200F9 for <quic-issues@ietf.org>; Fri, 13 Sep 2019 10:47:36 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 7CC871C0A7A for <quic-issues@ietf.org>; Fri, 13 Sep 2019 10:47:35 -0700 (PDT)
Date: Fri, 13 Sep 2019 10:47:35 -0700
From: Christian Huitema <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK22M4DSIB57QD5LEGN3RELMPEVBNHHB2ZES4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3028/531330092@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3028@github.com>
References: <quicwg/base-drafts/issues/3028@github.com>
Subject: Re: [quicwg/base-drafts] Requiring per application data in session ticket seems wrong (#3028)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7bd6376e3bd_7a083fca3c2cd96884013"; 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/1Xo9N2ZNHE9BVmx4ZoeyIN0Rn8w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 17:47:38 -0000

----==_mimepart_5d7bd6376e3bd_7a083fca3c2cd96884013
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I am not too worried about the server side. Servers that support multiple applications can put adequate information in the token, such as for example a server release number that points to the initial condition for multiple protocols. But I am concerned about clearly spelling out the client-side requirements, and I would rather see two parallel requirements: remember the initial conditions per ALPN+SNI, and remember the ticket per SNI.

Note that we want fast rotation of tickets for privacy reasons -- use tickets at most once if possible. That works better if we don't add rigidity, such as "only reuse tickets per SNI+ALPN". 

I think that resuming across multiple ALPN is a valid scenario. Kazuho points out that it may not be well supported in TLS 1.3, but we don't want to further ossify the lack of support.

Of course, none of that matters if we run all application protocols over HTTP.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3028#issuecomment-531330092
----==_mimepart_5d7bd6376e3bd_7a083fca3c2cd96884013
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I am not too worried about the server side. Servers that support multiple applications can put adequate information in the token, such as for example a server release number that points to the initial condition for multiple protocols. But I am concerned about clearly spelling out the client-side requirements, and I would rather see two parallel requirements: remember the initial conditions per ALPN+SNI, and remember the ticket per SNI.</p>
<p>Note that we want fast rotation of tickets for privacy reasons -- use tickets at most once if possible. That works better if we don't add rigidity, such as "only reuse tickets per SNI+ALPN".</p>
<p>I think that resuming across multiple ALPN is a valid scenario. Kazuho points out that it may not be well supported in TLS 1.3, but we don't want to further ossify the lack of support.</p>
<p>Of course, none of that matters if we run all application protocols over HTTP.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications&amp;email_token=AFTOJKZBEF44SJ7RX3HR2PLQJPG3PA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VXILA#issuecomment-531330092">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2TGUQEOLKQ7BASTUDQJPG3PANCNFSM4IWL5CVA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7BQ7OMOIOTWPYTOVTQJPG3PA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VXILA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJKZBEF44SJ7RX3HR2PLQJPG3PA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VXILA#issuecomment-531330092",
"url": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJKZBEF44SJ7RX3HR2PLQJPG3PA5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VXILA#issuecomment-531330092",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7bd6376e3bd_7a083fca3c2cd96884013--


From nobody Fri Sep 13 11:25: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 B6034120110 for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 11:25:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.454
X-Spam-Level: 
X-Spam-Status: No, score=-1.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_NONE=-0.0001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nK27NJQfOOnG for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 11:25:20 -0700 (PDT)
Received: from o6.sgmail.github.com (o6.sgmail.github.com [192.254.113.101]) (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 07503120105 for <quic-issues@ietf.org>; Fri, 13 Sep 2019 11:25:19 -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=SXh6z0JjNVam1soaqIbzPz/U/oM=; b=ehgJRoW4o/U3JU+M BfgFyt50qx8evS07u30/cJ1TF53pco8lLTTYQM1iwSs5919A3lLHGGgkU2WiZEVf CNILksz6Wi2HDS0LxLDU5WbzfJfJWFgBkgMtEyexm9kd18pEQdpYab2WGFKrZBiM mqRrPVifqCoZaag/A3sVR1dx45g=
Received: by filter1579p1mdw1.sendgrid.net with SMTP id filter1579p1mdw1-423-5D7BDF0F-12 2019-09-13 18:25:19.212461088 +0000 UTC m=+68177.050105599
Received: from github-lowworker-19d82f6.ac4-iad.github.net (unknown [140.82.115.2]) by ismtpd0029p1iad2.sendgrid.net (SG) with ESMTP id lGyQmhUJS-CCPxeopVGzTw for <quic-issues@ietf.org>; Fri, 13 Sep 2019 18:25:19.182 +0000 (UTC)
Received: from github.com (localhost [127.0.0.1]) by github-lowworker-19d82f6.ac4-iad.github.net (Postfix) with ESMTP id 1C29D4E80E2E for <quic-issues@ietf.org>; Fri, 13 Sep 2019 11:25:19 -0700 (PDT)
Date: Fri, 13 Sep 2019 18:25:19 +0000 (UTC)
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK34NIESTFDJE4V2A7F3REPZ7EVBNHHB2WTA7U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3020/531342518@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3020@github.com>
References: <quicwg/base-drafts/issues/3020@github.com>
Subject: Re: [quicwg/base-drafts] Transport parameter registry is too constraining for innovation (#3020)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7bdf0f1aebf_7f4c3f81b46cd96c113846"; 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: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak3Mqpil5pbPbLJVabxB+b8n2f7Qo3Cje8vsix YgBr0+lSd/yFewR0yRFTtzyoV/WwmB4i46uKk/1mvpR3uUaZtzck86Qe9967cOPTXeqGTS7Mmd7aXe 8R7VIsh/jjhRdIoK1F/yQbhn8hQceOPj6+IKFl9vmTyZ1H3rlsTf2QkTpQ==
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/MzW3Mk25IYcCI60lUhmqSKTLyCY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 18:25:22 -0000

----==_mimepart_5d7bdf0f1aebf_7f4c3f81b46cd96c113846
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

We should definitely do something to increase the number of experimentation codepoints from 256.  Changing to a varint sounds good.  If not, then we should allocate more of the space(ie: [0xf000 - 0xffff]) to experiments.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3020#issuecomment-531342518
----==_mimepart_5d7bdf0f1aebf_7f4c3f81b46cd96c113846
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>We should definitely do something to increase the number of experimentation codepoints from 256.  Changing to a varint sounds good.  If not, then we should allocate more of the space(ie: [0xf000 - 0xffff]) to experiments.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications&amp;email_token=AFTOJK3AL3QOZBE457F26ODQJPLI7A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6V2JNQ#issuecomment-531342518">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ6UHOXITJFPM3PNNTQJPLI7ANCNFSM4IVYZAZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZQN5SGXLVPQL6OWL3QJPLI7A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6V2JNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJK3AL3QOZBE457F26ODQJPLI7A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6V2JNQ#issuecomment-531342518",
"url": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJK3AL3QOZBE457F26ODQJPLI7A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6V2JNQ#issuecomment-531342518",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7bdf0f1aebf_7f4c3f81b46cd96c113846--


From nobody Fri Sep 13 14:25: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 C063C1200FE for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 14:25: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 lStoKIkv4TxQ for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 14:25:30 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7661312006E for <quic-issues@ietf.org>; Fri, 13 Sep 2019 14:25:30 -0700 (PDT)
Date: Fri, 13 Sep 2019 14:25:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568409929; bh=ftJzh8L+1htg9fSe9vkWLEBmj76gjsUItMfr7g+FFdI=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Vbju4s1nFX+scxQzBlGGAP5/okfztq4iZieCetd6PV54GQ2uR8zy/2ZyOwLlE872W ueg6P8Kfu2WLRe9+OExHcdlu3x7ApWiiQNVv+JmbyAI6esQWlrFFZ3RDmKYwXe3jFm nJIL6306N1+a/BH5DzQiiQ0GUojsbWMi0zIZ2EmU=
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYKWAH7JBNBQRG5LFN3RFE5TEVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031@github.com>
Subject: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7c094997be1_160e3fd5596cd96484224"; 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/crdkEF9w7yoakYqaDyhH2b0-4tE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 21:25:33 -0000

----==_mimepart_5d7c094997be1_160e3fd5596cd96484224
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This paper studies several &quot;nonce hiding&quot; transformations, of which the QUIC
header protection algorithm is one. This change replaces the old analysis
text with something a bit more crisp.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3031

-- Commit Summary --

  * Reference &quot;Nonces are Noticed&quot; in the header protection analysis section.

-- File Changes --

    M draft-ietf-quic-tls.md (42)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3031.patch
https://github.com/quicwg/base-drafts/pull/3031.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/3031

----==_mimepart_5d7c094997be1_160e3fd5596cd96484224
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This paper studies several "nonce hiding" transformations, of which the QUIC<br>
header protection algorithm is one. This change replaces the old analysis<br>
text with something a bit more crisp.</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/3031'>https://github.com/quicwg/base-drafts/pull/3031</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Reference &quot;Nonces are Noticed&quot; in the header protection analysis section.</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3031/files#diff-0">draft-ietf-quic-tls.md</a>
    (42)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3031.patch'>https://github.com/quicwg/base-drafts/pull/3031.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3031.diff'>https://github.com/quicwg/base-drafts/pull/3031.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/3031?email_source=notifications&amp;email_token=AFTOJK2NSIA6TR63LAKIFK3QJQAMTA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLKR6RQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3P6GRY7F72UZIHOFDQJQAMTANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYDSWE3VJZGG5TKRATQJQAMTA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLKR6RQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK2NSIA6TR63LAKIFK3QJQAMTA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLKR6RQ",
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK2NSIA6TR63LAKIFK3QJQAMTA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLKR6RQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d7c094997be1_160e3fd5596cd96484224--


From nobody Fri Sep 13 14:27: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 8BB46120846 for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 14:26:59 -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 h8RoF5ZezoPl for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 14:26: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 7B2C41201DB for <quic-issues@ietf.org>; Fri, 13 Sep 2019 14:26:57 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id 9E78A2C0E3C for <quic-issues@ietf.org>; Fri, 13 Sep 2019 14:26:56 -0700 (PDT)
Date: Fri, 13 Sep 2019 14:26:56 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2HKQSCHMZVGIZ5I4F3RFFDBEVBNHHB22URPQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3032@github.com>
Subject: [quicwg/base-drafts] Detectable Stateless Resets (#3032)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7c09a090e45_9493fd63cacd968201f5"; 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/Ncf_W19kbKeCwwFbnOoYOySzmXk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 21:27:04 -0000

----==_mimepart_5d7c09a090e45_9493fd63cacd968201f5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

What are the implications of some stateless resets being detectable? The new language explicitly allows a situation where a host chooses not to pad out all its packets to include the length of its own connection ID. In this situation, a small packet could trigger a stateless reset from the peer that is too small to be anything other than a stateless reset.

I don't believe this will happen "all the time", as in general Server CIDL > Client CIDL and in general servers are the ones sending resets. Those are somewhat weak assumptions for reasons we can bracket for now, but I feel confident that the detectable reset will happen in the internet, at least occasionally. What is the threat model we feared when we put in the original rules to block reset detection, and do the concerns apply 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/3032
----==_mimepart_5d7c09a090e45_9493fd63cacd968201f5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>What are the implications of some stateless resets being detectable? The new language explicitly allows a situation where a host chooses not to pad out all its packets to include the length of its own connection ID. In this situation, a small packet could trigger a stateless reset from the peer that is too small to be anything other than a stateless reset.</p>
<p>I don't believe this will happen "all the time", as in general Server CIDL &gt; Client CIDL and in general servers are the ones sending resets. Those are somewhat weak assumptions for reasons we can bracket for now, but I feel confident that the detectable reset will happen in the internet, at least occasionally. What is the threat model we feared when we put in the original rules to block reset detection, and do the concerns apply 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/3032?email_source=notifications&amp;email_token=AFTOJKZTLBHAYXBCAANLGZDQJQASBA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLKSF6A">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYXKDT7ZH4KWO46F7DQJQASBANCNFSM4IWUGA6Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4NMCBMLOHO3ROQQJTQJQASBA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLKSF6A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications\u0026email_token=AFTOJKZTLBHAYXBCAANLGZDQJQASBA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLKSF6A",
"url": "https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications\u0026email_token=AFTOJKZTLBHAYXBCAANLGZDQJQASBA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLKSF6A",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7c09a090e45_9493fd63cacd968201f5--


From nobody Fri Sep 13 15:51: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 292C2120116 for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 15:51: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 fU-u82AuRlVa for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 15:51: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 64ABF120096 for <quic-issues@ietf.org>; Fri, 13 Sep 2019 15:51:14 -0700 (PDT)
Date: Fri, 13 Sep 2019 15:51:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568415073; bh=+plAzqQq/hyWULKygRdN+hCy2gzi5J+yvfkCKNqoMsw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xJlS98asndTaf+PV+sDU7Klti0WoI6GpAFBfVHOq9aIvVgTfXFMdbiUa6phFzkX5w 7aG0Zs6yteOjXdD4EpjWuEiMO8KaT8h+iNGP80e9gxiA+M2yrtRRcbYH088xd0zFef 5e/IO0gqKMM16+cFEl2xbyRW5rHCr3jnciNiWo5Y=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYO6XSEMO7IQNM3AE53RFH6DEVBNHHB22URPQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3032/531414605@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3032@github.com>
References: <quicwg/base-drafts/issues/3032@github.com>
Subject: Re: [quicwg/base-drafts] Detectable Stateless Resets (#3032)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7c1d617842d_58083fb071ecd964832c3"; 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/kp7yYMeO7cRasvCuy0Y_79mqJsc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 13 Sep 2019 22:51:16 -0000

----==_mimepart_5d7c1d617842d_58083fb071ecd964832c3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

My understanding is that we want stateless resets to be hard to detect to avoid someone implementing a NAT that detects stateless resets and upon seeing them removes the NAT port mapping. As long as stateless resets are almost-always undetectable, we've removed the incentive for anyone to write that bad NAT code.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3032#issuecomment-531414605
----==_mimepart_5d7c1d617842d_58083fb071ecd964832c3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>My understanding is that we want stateless resets to be hard to detect to avoid someone implementing a NAT that detects stateless resets and upon seeing them removes the NAT port mapping. As long as stateless resets are almost-always undetectable, we've removed the incentive for anyone to write that bad NAT 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/3032?email_source=notifications&amp;email_token=AFTOJKYZT2E6CO4G3LVJLNTQJQKODA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6WL4TI#issuecomment-531414605">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYYYYX73K64TVMQFJ3QJQKODANCNFSM4IWUGA6Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3SLB3OHWEXQQNDS3TQJQKODA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6WL4TI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications\u0026email_token=AFTOJKYZT2E6CO4G3LVJLNTQJQKODA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6WL4TI#issuecomment-531414605",
"url": "https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications\u0026email_token=AFTOJKYZT2E6CO4G3LVJLNTQJQKODA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6WL4TI#issuecomment-531414605",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7c1d617842d_58083fb071ecd964832c3--


From nobody Fri Sep 13 22:45: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 7DA401200A1 for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 22:45:15 -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 yCApAj0iEJt6 for <quic-issues@ietfa.amsl.com>; Fri, 13 Sep 2019 22:45:11 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 32AC012003F for <quic-issues@ietf.org>; Fri, 13 Sep 2019 22:45:11 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 8110E1204E7 for <quic-issues@ietf.org>; Fri, 13 Sep 2019 22:45:10 -0700 (PDT)
Date: Fri, 13 Sep 2019 22:45:10 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK64FKRIYGZS3XI2XUF3RG7PNEVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/review/288308613@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7c7e6623480_71f53fa1336cd96492952"; 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/k6eaMFCA4pRY-N0tiGQJtwPsNHc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 14 Sep 2019 05:45:16 -0000

----==_mimepart_5d7c7e6623480_71f53fa1336cd96492952
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mikkelfj commented on this pull request.



>  
 ~~~
 protected_field = field XOR PRF(hp_key, sample)
 ~~~
 
-This construction is secure against chosen plaintext attacks (IND-CPA) {{IMC}}.
+Assuming hp_key is distinct from the packet protection key, this construction
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`, the

AE2 security is not an easily digestible term on its own. What is the objective, where is it defined?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3031#pullrequestreview-288308613
----==_mimepart_5d7c7e6623480_71f53fa1336cd96492952
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/3031#discussion_r324413434">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;  
 ~~~
 protected_field = field XOR PRF(hp_key, sample)
 ~~~
 
-This construction is secure against chosen plaintext attacks (IND-CPA) {{IMC}}.
+Assuming hp_key is distinct from the packet protection key, this construction
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`, the
</pre>
<p>AE2 security is not an easily digestible term on its own. What is the objective, where is it defined?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications&amp;email_token=AFTOJK6VTH5OB3XNKYZNNF3QJR26NA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEXT3BI#pullrequestreview-288308613">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3BYJOADRXEEHICWRDQJR26NANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZJGA7VFQNC4BB5DM3QJR26NA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEXT3BI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK6VTH5OB3XNKYZNNF3QJR26NA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEXT3BI#pullrequestreview-288308613",
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK6VTH5OB3XNKYZNNF3QJR26NA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEXT3BI#pullrequestreview-288308613",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7c7e6623480_71f53fa1336cd96492952--


From nobody Sat Sep 14 06:21: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 03DFC12080C for <quic-issues@ietfa.amsl.com>; Sat, 14 Sep 2019 06:21: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 hDtDNDVZcIfU for <quic-issues@ietfa.amsl.com>; Sat, 14 Sep 2019 06:21: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 200FA12022D for <quic-issues@ietf.org>; Sat, 14 Sep 2019 06:21:12 -0700 (PDT)
Date: Sat, 14 Sep 2019 06:21:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568467271; bh=i+SBWnxSVpCfrnwzItVBy9SWVaH//3j1naOvpMvDuss=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Z66fx5a8o32n0EabfVofblN0Um7idkqQrDea4uf+JwnSm/7W9zBl8Cp4CCdkIhCta a/ERr4/rvkGvZSU/wcAci67xl+jsvdZZKFgKFI/iIRhWsf/+CfFO9FbeYaP+V+0cmA QmY93jco1w+B+2l9oxoU57a0Kb7KK96ZLUl3TLL4=
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYID4TDCKSAAH3D7XV3RIU5PEVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/review/288320997@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7ce947a84b_341b3feb5e8cd960387a4"; 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/rcn_NIGmi98AN5UM0i7JO8yKrR0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 14 Sep 2019 13:21:14 -0000

----==_mimepart_5d7ce947a84b_341b3feb5e8cd960387a4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

chris-wood commented on this pull request.=0D
=0D
=0D
=0D
>  =0D
 ~~~=0D
 protected_field =3D field XOR PRF(hp_key, sample)=0D
 ~~~=0D
 =0D
-This construction is secure against chosen plaintext attacks (IND-CPA) {=
{IMC}}.=0D
+Assuming hp_key is distinct from the packet protection key, this constru=
ction=0D
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`,=
 the=0D
=0D
It=E2=80=99s defined in the referenced paper. I thought it best to simply=
 point readers in that direction if they want the details, rather try and=
 pull it out here. (We didn=E2=80=99t previously define IND-CPA security,=
 for example.)=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/3031#discussion_r324424299=

----==_mimepart_5d7ce947a84b_341b3feb5e8cd960387a4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><b>@chris-wood</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3031#discussi=
on_r324424299">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
 ~~~=0D
 protected_field =3D field XOR PRF(hp_key, sample)=0D
 ~~~=0D
 =0D
-This construction is secure against chosen plaintext attacks (IND-CPA) {=
{IMC}}.=0D
+Assuming hp_key is distinct from the packet protection key, this constru=
ction=0D
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`,=
 the=0D
</pre>=0D
<p>It=E2=80=99s defined in the referenced paper. I thought it best to sim=
ply point readers in that direction if they want the details, rather try =
and pull it out here. (We didn=E2=80=99t previously define IND-CPA securi=
ty, for example.)</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/3031?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK4JF4FWSLRL6O6KJ6DQJTQMPA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEXW3ZI#discussion_r324424299">view=
 it on GitHub</a>, or <a href=3D"https://github.com/notifications/unsubsc=
ribe-auth/AFTOJKYGCTZJSNTZO5D36RTQJTQMPANCNFSM4IWUFWXQ">mute the thread</=
a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK6NQUIMVAG43S=
XE3PDQJTQMPA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFS=
XPKTDN5WW2ZLOORPWSZGOCEXW3ZI.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/3031?email_source=3D=
notifications\u0026email_token=3DAFTOJK4JF4FWSLRL6O6KJ6DQJTQMPA5CNFSM4IWU=
FWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
EXW3ZI#discussion_r324424299",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK4JF4FWSLRL6O6KJ6DQJTQMPA5CNFSM4IWUFW=
X2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEX=
W3ZI#discussion_r324424299",=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_5d7ce947a84b_341b3feb5e8cd960387a4--


From nobody Sat Sep 14 12: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 C43B7120043 for <quic-issues@ietfa.amsl.com>; Sat, 14 Sep 2019 12:19: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 WBjxNq2jUfZN for <quic-issues@ietfa.amsl.com>; Sat, 14 Sep 2019 12:19:11 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 767F912001E for <quic-issues@ietf.org>; Sat, 14 Sep 2019 12:19:11 -0700 (PDT)
Date: Sat, 14 Sep 2019 12:19:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568488750; bh=S4JZyaYcFfKqXLXkEcIaEfkRjuA0XHVIhMtQ3AyjxTM=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=zzZZpT9tbu7o0ZEpNXuos7pOTg5OkRqjaLfmcyB1p8c1TjUgFIusycJzozGnz1Pjg IR758AiYGNbuenib9tWfkWrgpd5Oy8B/Hmobk5TBVTp+km4tO+UEPui7CJL43tiRRa hQ25UNC5TiVAU2ss0+SA4aUASFzF+Wcqzw2vkwuI=
From: Alessandro Ghedini <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5TSHVNWX6R2NO7R7F3RJ635EVBNHHB23E46Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3033@github.com>
Subject: [quicwg/base-drafts] Suggest sending empty CRYPTO frames in Initial/Handshake packets (#3033)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7d3d2e6ce34_40293ff15c0cd964209760"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ghedo
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Cw_cWT-AzYi24iV0TbXdIiU1f7c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 14 Sep 2019 19:19:13 -0000

----==_mimepart_5d7d3d2e6ce34_40293ff15c0cd964209760
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

As per @tatsuhiro-t, since PING frames are not allowed in
Initial/Handshake packets, one can use an empty CRYPTO frame when
sending a probe when there is no other ack-eliciting frame to send.

It seems to me like this is something that is fairly easy to miss, so
worth expanding the existing suggestion I think.

The alternative would be to allow PING frames in Initial/Handshake, but
I figured we are maybe too late in the process for that kind of design
change.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3033

-- Commit Summary --

  * Suggest sending empty CRYPTO frames in Initial/Handshake packets

-- File Changes --

    M draft-ietf-quic-recovery.md (6)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3033.patch
https://github.com/quicwg/base-drafts/pull/3033.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/3033

----==_mimepart_5d7d3d2e6ce34_40293ff15c0cd964209760
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>As per <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>, since PING frames are not allowed in<br>
Initial/Handshake packets, one can use an empty CRYPTO frame when<br>
sending a probe when there is no other ack-eliciting frame to send.</p>
<p>It seems to me like this is something that is fairly easy to miss, so<br>
worth expanding the existing suggestion I think.</p>
<p>The alternative would be to allow PING frames in Initial/Handshake, but<br>
I figured we are maybe too late in the process for that kind of design<br>
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/3033'>https://github.com/quicwg/base-drafts/pull/3033</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Suggest sending empty CRYPTO frames in Initial/Handshake packets</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3033/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/3033.patch'>https://github.com/quicwg/base-drafts/pull/3033.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3033.diff'>https://github.com/quicwg/base-drafts/pull/3033.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/3033?email_source=notifications&amp;email_token=AFTOJK6TE5MQTRLDSQLRYPDQJU2K5A5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLMTT2A">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7DA5GQIYMUJ4AERPDQJU2K5ANCNFSM4IWYAGQQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5AUAM7FDVDWHI3JY3QJU2K5A5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLMTT2A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3033?email_source=notifications\u0026email_token=AFTOJK6TE5MQTRLDSQLRYPDQJU2K5A5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLMTT2A",
"url": "https://github.com/quicwg/base-drafts/pull/3033?email_source=notifications\u0026email_token=AFTOJK6TE5MQTRLDSQLRYPDQJU2K5A5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLMTT2A",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d7d3d2e6ce34_40293ff15c0cd964209760--


From nobody Sat Sep 14 22:39: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 4CEF112001A for <quic-issues@ietfa.amsl.com>; Sat, 14 Sep 2019 22:39: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 nMapP6V4KYcx for <quic-issues@ietfa.amsl.com>; Sat, 14 Sep 2019 22:39: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 670E2120013 for <quic-issues@ietf.org>; Sat, 14 Sep 2019 22:39:27 -0700 (PDT)
Date: Sat, 14 Sep 2019 22:39:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568525966; bh=6CKy9yWA4laelEpHqD2/XDN2ZdC1O7nNMl3iAyTK+Yk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wAU7Tenr5GnYlhMgRXtxD6o2VAPmpBj5JwfEvYbtu8XLWte57OZCzNJE2Zlf5kvGn Jhf20fByBFxrS6WEgGFS2bn7f4SkKLjrHjboF8gV3fkvtsnGsQMJHezM38TVjfiHcd PG+CodptJJRqt/W0WhfHiLJuhkNBwPzs7aZnXgaY=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2RM3LRFK3M2ZUKR753RMAQ5EVBNHHB23E46Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3033/c531536478@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3033@github.com>
References: <quicwg/base-drafts/pull/3033@github.com>
Subject: Re: [quicwg/base-drafts] Suggest sending empty CRYPTO frames in Initial/Handshake packets (#3033)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7dce8e5889f_723a3fac52ccd95c881119"; 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/caKtmUpj2uaCOCv9ZtQa9fOvFEs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 15 Sep 2019 05:39:29 -0000

----==_mimepart_5d7dce8e5889f_723a3fac52ccd95c881119
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'd prefer to just allow PING in all packet types. Sending empty CRYPTO frames seems kind of hacky 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/3033#issuecomment-531536478
----==_mimepart_5d7dce8e5889f_723a3fac52ccd95c881119
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'd prefer to just allow PING in all packet types. Sending empty CRYPTO frames seems kind of hacky 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/3033?email_source=notifications&amp;email_token=AFTOJKYZHUBCWASMHX23ICTQJXDA5A5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6XJUXQ#issuecomment-531536478">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7EENVMS5LTXV57JFTQJXDA5ANCNFSM4IWYAGQQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5BGX33JNA7ZS3KHVTQJXDA5A5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6XJUXQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3033?email_source=notifications\u0026email_token=AFTOJKYZHUBCWASMHX23ICTQJXDA5A5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6XJUXQ#issuecomment-531536478",
"url": "https://github.com/quicwg/base-drafts/pull/3033?email_source=notifications\u0026email_token=AFTOJKYZHUBCWASMHX23ICTQJXDA5A5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6XJUXQ#issuecomment-531536478",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7dce8e5889f_723a3fac52ccd95c881119--


From nobody Sat Sep 14 23:52: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 ACC831200EF for <quic-issues@ietfa.amsl.com>; Sat, 14 Sep 2019 23:52:44 -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 3sUAOm_lncx7 for <quic-issues@ietfa.amsl.com>; Sat, 14 Sep 2019 23:52:43 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1AB3C120013 for <quic-issues@ietf.org>; Sat, 14 Sep 2019 23:52:42 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 003C2A0C49 for <quic-issues@ietf.org>; Sat, 14 Sep 2019 23:52:41 -0700 (PDT)
Date: Sat, 14 Sep 2019 23:52:41 -0700
From: Tatsuhiro Tsujikawa <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZZU7M54CKVIDDT27V3RMJDTEVBNHHB23E46Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3033/c531540032@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3033@github.com>
References: <quicwg/base-drafts/pull/3033@github.com>
Subject: Re: [quicwg/base-drafts] Suggest sending empty CRYPTO frames in Initial/Handshake packets (#3033)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7ddfb9e510f_6b913fa0814cd9644207a3"; 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/bGS-EHdwyCvhyCkZTI3QfIUa1lw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 15 Sep 2019 06:52:45 -0000

----==_mimepart_5d7ddfb9e510f_6b913fa0814cd9644207a3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

If don't know the reasoning why PING has been prohibited in Initial or Handshake, but if there is no hard rule to exclude it from handshake packets, I think that just allowing PING in Initial/Handshake is simpler.
I just chose empty CRYPTO so that it works with draft-23 compliant implementations; literally there is no ACK eliciting frame other than 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/3033#issuecomment-531540032
----==_mimepart_5d7ddfb9e510f_6b913fa0814cd9644207a3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>If don't know the reasoning why PING has been prohibited in Initial or Handshake, but if there is no hard rule to exclude it from handshake packets, I think that just allowing PING in Initial/Handshake is simpler.<br>
I just chose empty CRYPTO so that it works with draft-23 compliant implementations; literally there is no ACK eliciting frame other than 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/3033?email_source=notifications&amp;email_token=AFTOJK3P4XVA4TB7N66JHADQJXLTTA5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6XKQQA#issuecomment-531540032">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7AKM5TE5BN2OQFUFDQJXLTTANCNFSM4IWYAGQQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6TO7B2G4R5VPNNWIDQJXLTTA5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6XKQQA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3033?email_source=notifications\u0026email_token=AFTOJK3P4XVA4TB7N66JHADQJXLTTA5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6XKQQA#issuecomment-531540032",
"url": "https://github.com/quicwg/base-drafts/pull/3033?email_source=notifications\u0026email_token=AFTOJK3P4XVA4TB7N66JHADQJXLTTA5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6XKQQA#issuecomment-531540032",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7ddfb9e510f_6b913fa0814cd9644207a3--


From nobody Sun Sep 15 00: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 44984120019 for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 00:39:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 UI8O8IM5l8vI for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 00:39: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 55317120013 for <quic-issues@ietf.org>; Sun, 15 Sep 2019 00:39:20 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 101296609F0 for <quic-issues@ietf.org>; Sun, 15 Sep 2019 00:39:19 -0700 (PDT)
Date: Sun, 15 Sep 2019 00:39:19 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZZOSOAUI46BEQR6J53RMOSNEVBNHHB23E46Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3033/c531542643@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3033@github.com>
References: <quicwg/base-drafts/pull/3033@github.com>
Subject: Re: [quicwg/base-drafts] Suggest sending empty CRYPTO frames in Initial/Handshake packets (#3033)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7deaa711bc_564e3fae356cd964319b9"; 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/vP7h8EjCx_7sYnsRZBZ4ShELCPE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 15 Sep 2019 07:39:22 -0000

----==_mimepart_5d7deaa711bc_564e3fae356cd964319b9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I brought this up a long time ago in #2307. Apparently, this issue was closed by #2355. I'm wondering 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/3033#issuecomment-531542643
----==_mimepart_5d7deaa711bc_564e3fae356cd964319b9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I brought this up a long time ago in <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="396341249" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2307" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2307/hovercard" href="https://github.com/quicwg/base-drafts/pull/2307">#2307</a>. Apparently, this issue was closed by <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="401195460" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2355" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2355/hovercard" href="https://github.com/quicwg/base-drafts/pull/2355">#2355</a>. I'm wondering why.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3033?email_source=notifications&amp;email_token=AFTOJK3QQ3RMZ4GUMAHTANTQJXRCPA5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6XLE4Y#issuecomment-531542643">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYB2LUAJF7CCCXGEQTQJXRCPANCNFSM4IWYAGQQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ5PIACLAZ45BO54D3QJXRCPA5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6XLE4Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3033?email_source=notifications\u0026email_token=AFTOJK3QQ3RMZ4GUMAHTANTQJXRCPA5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6XLE4Y#issuecomment-531542643",
"url": "https://github.com/quicwg/base-drafts/pull/3033?email_source=notifications\u0026email_token=AFTOJK3QQ3RMZ4GUMAHTANTQJXRCPA5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6XLE4Y#issuecomment-531542643",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7deaa711bc_564e3fae356cd964319b9--


From nobody Sun Sep 15 04:06: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 E6ED7120026 for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 04:06:43 -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 YSC4c2leUXrU for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 04:06:42 -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 E900312000F for <quic-issues@ietf.org>; Sun, 15 Sep 2019 04:06:41 -0700 (PDT)
Date: Sun, 15 Sep 2019 04:06:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568545601; bh=nKX8cWeYCjiNevCYBEEa/BAiGr8kCgl6Tx92pKF1Pj4=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=RE2zQ+f91TkBp7aYn3LQrE617Q89uo4itLQ0Nqm0iOizZXOd6UWKsDHvtfS9uG70f ICQsRi+w1TpKmlEAQaaF9TV4nO+oaFOMdB4hgNj01jD3Nnphd2phbbSkLEjhansCMG yKwKPXezQemsDb0zPFLSLyFrJo/XbQgXD65sseX8=
From: Alessandro Ghedini <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4PSABWR2OBCH5XMDV3RNN5DEVBNHHB23NCOM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3034@github.com>
Subject: [quicwg/base-drafts] Allow PING in Initial/Handshake? (#3034)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7e1b4112e26_16763ff189ecd9601172093"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ghedo
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yWS_OsWt8NtAhspEXzTrhxj36yc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 15 Sep 2019 11:06:44 -0000

----==_mimepart_5d7e1b4112e26_16763ff189ecd9601172093
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

So, currently PING frames can only be sent in 0/1-RTT as per the TLS mapping draft
https://quicwg.org/base-drafts/draft-ietf-quic-tls.html#rfc.section.4

AFAICT the issue of allowing PING frames in Initial/Handshake packets was discussed in https://github.com/quicwg/base-drafts/issues/2640 which was in turn fixed by https://github.com/quicwg/base-drafts/pull/2642 by saying to only send PADDING frames in probe packets. But then https://github.com/quicwg/base-drafts/pull/2912 came along which changed the same text by saying that probes need to be ACK-eliciting.

Notably it says:

> To allow the client to improve its RTT estimate, the new packet that it sends MUST be ack-eliciting.  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.

In the case where no other frame needs to be sent, but 1-RTT keys are not available, an implementation can send an empty CRYPTO frame to achieve the above as suggested by @tatsuhiro-t, so I proposed an editorial change in https://github.com/quicwg/base-drafts/pull/3033 to expand the suggestion in -recovery to mention that, since I think it's something that would be easy to miss (and indeed, I don't think my implementation is the only one that got this wrong).

However some people seem to prefer allowing PING frames in Initial/Handshake in the first place (which is a design change), so maybe we should discuss this more. That anyone knows, is there any reason why PING frames are not allowed in Initial/Handshake?

(I'll make a PR shortly to help discussion)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3034
----==_mimepart_5d7e1b4112e26_16763ff189ecd9601172093
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>So, currently PING frames can only be sent in 0/1-RTT as per the TLS m=
apping draft<br>
<a href=3D"https://quicwg.org/base-drafts/draft-ietf-quic-tls.html#rfc.se=
ction.4" rel=3D"nofollow">https://quicwg.org/base-drafts/draft-ietf-quic-=
tls.html#rfc.section.4</a></p>
<p>AFAICT the issue of allowing PING frames in Initial/Handshake packets =
was discussed in <a class=3D"issue-link js-issue-link" data-error-text=3D=
"Failed to load issue title" data-id=3D"435997114" data-permission-text=3D=
"Issue title is private" data-url=3D"https://github.com/quicwg/base-draft=
s/issues/2640" data-hovercard-type=3D"issue" data-hovercard-url=3D"/quicw=
g/base-drafts/issues/2640/hovercard" href=3D"https://github.com/quicwg/ba=
se-drafts/issues/2640">#2640</a> which was in turn fixed by <a class=3D"i=
ssue-link js-issue-link" data-error-text=3D"Failed to load issue title" d=
ata-id=3D"436230681" data-permission-text=3D"Issue title is private" data=
-url=3D"https://github.com/quicwg/base-drafts/issues/2642" data-hovercard=
-type=3D"pull_request" data-hovercard-url=3D"/quicwg/base-drafts/pull/264=
2/hovercard" href=3D"https://github.com/quicwg/base-drafts/pull/2642">#26=
42</a> by saying to only send PADDING frames in probe packets. But then <=
a class=3D"issue-link js-issue-link" data-error-text=3D"Failed to load is=
sue title" data-id=3D"470775955" data-permission-text=3D"Issue title is p=
rivate" data-url=3D"https://github.com/quicwg/base-drafts/issues/2912" da=
ta-hovercard-type=3D"pull_request" data-hovercard-url=3D"/quicwg/base-dra=
fts/pull/2912/hovercard" href=3D"https://github.com/quicwg/base-drafts/pu=
ll/2912">#2912</a> came along which changed the same text by saying that =
probes need to be ACK-eliciting.</p>
<p>Notably it says:</p>
<blockquote>
<p>To allow the client to improve its RTT estimate, the new packet that i=
t sends MUST be ack-eliciting.  If Handshake keys are available to the cl=
ient, it MUST send a Handshake packet, and otherwise it MUST send an Init=
ial packet in a UDP datagram of at least 1200 bytes.</p>
</blockquote>
<p>In the case where no other frame needs to be sent, but 1-RTT keys are =
not available, an implementation can send an empty CRYPTO frame to achiev=
e the above as suggested by <a class=3D"user-mention" data-hovercard-type=
=3D"user" data-hovercard-url=3D"/hovercards?user_id=3D404610" data-octo-c=
lick=3D"hovercard-link-click" data-octo-dimensions=3D"link_type:self" hre=
f=3D"https://github.com/tatsuhiro-t">@tatsuhiro-t</a>, so I proposed an e=
ditorial change in <a class=3D"issue-link js-issue-link" data-error-text=3D=
"Failed to load issue title" data-id=3D"493657332" data-permission-text=3D=
"Issue title is private" data-url=3D"https://github.com/quicwg/base-draft=
s/issues/3033" data-hovercard-type=3D"pull_request" data-hovercard-url=3D=
"/quicwg/base-drafts/pull/3033/hovercard" href=3D"https://github.com/quic=
wg/base-drafts/pull/3033">#3033</a> to expand the suggestion in -recovery=
 to mention that, since I think it's something that would be easy to miss=
 (and indeed, I don't think my implementation is the only one that got th=
is wrong).</p>
<p>However some people seem to prefer allowing PING frames in Initial/Han=
dshake in the first place (which is a design change), so maybe we should =
discuss this more. That anyone knows, is there any reason why PING frames=
 are not allowed in Initial/Handshake?</p>
<p>(I'll make a PR shortly to help discussion)</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/3034?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK5K5KAD4J6H7C2H3KLQJYJMDA5CNFSM4IW2F2U2YY3PNVWWK3TUL52HS4DFUVEXG43VM=
WVGG33NNVSW45C7NFSM4HLNUJZQ">view it on GitHub</a>, or <a href=3D"https:/=
/github.com/notifications/unsubscribe-auth/AFTOJKZ4D3MINKSLNDYTH6DQJYJMDA=
NCNFSM4IW2F2UQ">mute the thread</a>.<img src=3D"https://github.com/notifi=
cations/beacon/AFTOJKZTDNL22T2EWSV3HV3QJYJMDA5CNFSM4IW2F2U2YY3PNVWWK3TUL5=
2HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLNUJZQ.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/3034?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK5K5KAD4J6H7C2H3KLQJYJMDA5CNFSM4=
IW2F2U2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLNUJZQ",
"url": "https://github.com/quicwg/base-drafts/issues/3034?email_source=3D=
notifications\u0026email_token=3DAFTOJK5K5KAD4J6H7C2H3KLQJYJMDA5CNFSM4IW2=
F2U2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLNUJZQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>=

----==_mimepart_5d7e1b4112e26_16763ff189ecd9601172093--


From nobody Sun Sep 15 04: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 4B0C712004E for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 04:07:21 -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, 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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7QKAbKJuPxDQ for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 04:07:19 -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 AAB5912000F for <quic-issues@ietf.org>; Sun, 15 Sep 2019 04:07:19 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id AB5FF6E0049 for <quic-issues@ietf.org>; Sun, 15 Sep 2019 04:07:18 -0700 (PDT)
Date: Sun, 15 Sep 2019 04:07:18 -0700
From: Alessandro Ghedini <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZRQJIRR6LFQWMAJ4V3RNN7NEVBNHHB23NCUU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3035@github.com>
Subject: [quicwg/base-drafts] Allow PING at every encryption level (#3035)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7e1b669b815_628d3fbcd86cd96c5636f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ghedo
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vRkgk16946tRBvoRj5wYTTUWQFo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 15 Sep 2019 11:07:21 -0000

----==_mimepart_5d7e1b669b815_628d3fbcd86cd96c5636f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Fixes #3034
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3035

-- Commit Summary --

  * Allow PING at every encryption level

-- File Changes --

    M draft-ietf-quic-tls.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3035.patch
https://github.com/quicwg/base-drafts/pull/3035.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/3035

----==_mimepart_5d7e1b669b815_628d3fbcd86cd96c5636f
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 #3034.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="493724275" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3034" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3034/hovercard" href="https://github.com/quicwg/base-drafts/issues/3034">#3034</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/3035'>https://github.com/quicwg/base-drafts/pull/3035</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Allow PING at every encryption level</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3035/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/3035.patch'>https://github.com/quicwg/base-drafts/pull/3035.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3035.diff'>https://github.com/quicwg/base-drafts/pull/3035.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/3035?email_source=notifications&amp;email_token=AFTOJK6UI5D7EPDWASQXFN3QJYJONA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLNUKSQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK365Z6IVDW4QTU7WTLQJYJONANCNFSM4IW2F4YA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZYB2MPFNE2FWGOG5LQJYJONA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLNUKSQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3035?email_source=notifications\u0026email_token=AFTOJK6UI5D7EPDWASQXFN3QJYJONA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLNUKSQ",
"url": "https://github.com/quicwg/base-drafts/pull/3035?email_source=notifications\u0026email_token=AFTOJK6UI5D7EPDWASQXFN3QJYJONA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLNUKSQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d7e1b669b815_628d3fbcd86cd96c5636f--


From nobody Sun Sep 15 04: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 2047112000F for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 04:10:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 MouDz4DTCtMk for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 04:10:29 -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 06E8B120026 for <quic-issues@ietf.org>; Sun, 15 Sep 2019 04:10:29 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 7BC6A121099 for <quic-issues@ietf.org>; Sun, 15 Sep 2019 04:10:28 -0700 (PDT)
Date: Sun, 15 Sep 2019 04:10:28 -0700
From: Alessandro Ghedini <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7TSH4HRFSG7Z2U7HF3RNOLJEVBNHHB23E46Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3033/c531556390@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3033@github.com>
References: <quicwg/base-drafts/pull/3033@github.com>
Subject: Re: [quicwg/base-drafts] Suggest sending empty CRYPTO frames in Initial/Handshake packets (#3033)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7e1c24350f0_68c3fce57acd9641153c5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ghedo
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zAhZWYpy5OdjtGE1-WRPPYQDmF4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 15 Sep 2019 11:10:30 -0000

----==_mimepart_5d7e1c24350f0_68c3fce57acd9641153c5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Ok, thanks.

I made https://github.com/quicwg/base-drafts/issues/3034 to discuss allowing PING in Initial/Handshake packets again and made a PR (https://github.com/quicwg/base-drafts/pull/3035). The WG can then decide if we want the editorial-only change in this PR, or the design one in the other PR.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3033#issuecomment-531556390
----==_mimepart_5d7e1c24350f0_68c3fce57acd9641153c5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Ok, thanks.</p>
<p>I made <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="493724275" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3034" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3034/hovercard" href="https://github.com/quicwg/base-drafts/issues/3034">#3034</a> to discuss allowing PING in Initial/Handshake packets again and made a PR (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="493724325" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3035" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3035/hovercard" href="https://github.com/quicwg/base-drafts/pull/3035">#3035</a>). The WG can then decide if we want the editorial-only change in this PR, or the design one in the other PR.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3033?email_source=notifications&amp;email_token=AFTOJK7VPES5W7O7BVUWSSLQJYJ2JA5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6XOQJQ#issuecomment-531556390">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK56C5RS5CHPN7WFAHDQJYJ2JANCNFSM4IWYAGQQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3TV63LPKVW5DJF36LQJYJ2JA5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6XOQJQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3033?email_source=notifications\u0026email_token=AFTOJK7VPES5W7O7BVUWSSLQJYJ2JA5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6XOQJQ#issuecomment-531556390",
"url": "https://github.com/quicwg/base-drafts/pull/3033?email_source=notifications\u0026email_token=AFTOJK7VPES5W7O7BVUWSSLQJYJ2JA5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6XOQJQ#issuecomment-531556390",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7e1c24350f0_68c3fce57acd9641153c5--


From nobody Sun Sep 15 10:01: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 92FC8120089 for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 10:01:57 -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 8M1BXCT1Mj0t for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 10:01:56 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 456DC12004A for <quic-issues@ietf.org>; Sun, 15 Sep 2019 10:01:56 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 40E0C6E1164 for <quic-issues@ietf.org>; Sun, 15 Sep 2019 10:01:55 -0700 (PDT)
Date: Sun, 15 Sep 2019 10:01:55 -0700
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5PPEM2JTEBWDFRRHF3ROXRHEVBNHHB23NCUU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3035/review/288372538@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3035@github.com>
References: <quicwg/base-drafts/pull/3035@github.com>
Subject: Re: [quicwg/base-drafts] Allow PING at every encryption level (#3035)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7e6e8332116_1ea43ffc540cd95c111786"; 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/wRjbgvGAKzLGSrbgIZcx158Xoqs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 15 Sep 2019 17:01:58 -0000

----==_mimepart_5d7e6e8332116_1ea43ffc540cd95c111786
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

nibanks approved this pull request.

Looks good to me. I think PING should be allowed everywhere.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3035#pullrequestreview-288372538
----==_mimepart_5d7e6e8332116_1ea43ffc540cd95c111786
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@nibanks</b> approved this pull request.</p>

<p>Looks good to me. I think PING should be allowed everywhere.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3035?email_source=notifications&amp;email_token=AFTOJK2T4N74GINQD243VSLQJZTAHA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYDOOQ#pullrequestreview-288372538">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7UXVPAQTSW2TS7WELQJZTAHANCNFSM4IW2F4YA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6VXLXTVFP3KUZES4DQJZTAHA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYDOOQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3035?email_source=notifications\u0026email_token=AFTOJK2T4N74GINQD243VSLQJZTAHA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYDOOQ#pullrequestreview-288372538",
"url": "https://github.com/quicwg/base-drafts/pull/3035?email_source=notifications\u0026email_token=AFTOJK2T4N74GINQD243VSLQJZTAHA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYDOOQ#pullrequestreview-288372538",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7e6e8332116_1ea43ffc540cd95c111786--


From nobody Sun Sep 15 17:28: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 969E01200D7 for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 17:28: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 fc--QvNjbrsa for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 17:28:00 -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 0B620120098 for <quic-issues@ietf.org>; Sun, 15 Sep 2019 17:28:00 -0700 (PDT)
Date: Sun, 15 Sep 2019 17:27:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568593679; bh=WAUEoClx5wTM+xSxgqDNSEXZeei1PuNToxJlLOSPSEg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JI3r3HLiTYTK/2idOmU7H9BXIAhqxBKZyquskcu4/eA9/AFwLKC+c9RXZ1oC6uPCv QnR0PfHJPt7T2ZbiLoz6Kc1kzcZIvyfJ3roZDNKJ0+CITgR4O4tT3vmav64l5LG1zY bmJtnCI7pJfrvj4UiVeRb6T5Bb3IHeJCT9IQ89jk=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZPKNYSY56RPGFIKZV3RQEY7EVBNHHB23NCUU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3035/review/288390735@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3035@github.com>
References: <quicwg/base-drafts/pull/3035@github.com>
Subject: Re: [quicwg/base-drafts] Allow PING at every encryption level (#3035)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7ed70fd8b2_16553ff189ecd96011906aa"; 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/v6_0ebgbH4admiYOGWfPt4a8AeQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 00:28:02 -0000

----==_mimepart_5d7ed70fd8b2_16553ff189ecd96011906aa
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/3035#pullrequestreview-288390735
----==_mimepart_5d7ed70fd8b2_16553ff189ecd96011906aa
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/3035?email_source=notifications&amp;email_token=AFTOJK3RQ7PD4MVDGOY3EUTQJ3HI7A5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYH4TY#pullrequestreview-288390735">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYQGCLT3JLJAI2WEO3QJ3HI7ANCNFSM4IW2F4YA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3NK4YYLHCAMP5B44TQJ3HI7A5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYH4TY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3035?email_source=notifications\u0026email_token=AFTOJK3RQ7PD4MVDGOY3EUTQJ3HI7A5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYH4TY#pullrequestreview-288390735",
"url": "https://github.com/quicwg/base-drafts/pull/3035?email_source=notifications\u0026email_token=AFTOJK3RQ7PD4MVDGOY3EUTQJ3HI7A5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYH4TY#pullrequestreview-288390735",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7ed70fd8b2_16553ff189ecd96011906aa--


From nobody Sun Sep 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 87D17120073 for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 18:08:46 -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 rwp5992-IDQt for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 18:08:45 -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 E5D3A120018 for <quic-issues@ietf.org>; Sun, 15 Sep 2019 18:08:44 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 3C8B012121F for <quic-issues@ietf.org>; Sun, 15 Sep 2019 18:08:44 -0700 (PDT)
Date: Sun, 15 Sep 2019 18:08:43 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6FB2IXF2ZV3X32ZA53RQJRXEVBNHHB23NCUU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3035/review/288393306@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3035@github.com>
References: <quicwg/base-drafts/pull/3035@github.com>
Subject: Re: [quicwg/base-drafts] Allow PING at every encryption level (#3035)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7ee09be9567_1c8c3fb5b50cd96049555"; 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/ab_1KtLlgwaEqvsvjhUU2ugPOt4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 01:08:47 -0000

----==_mimepart_5d7ee09be9567_1c8c3fb5b50cd96049555
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/3035#pullrequestreview-288393306
----==_mimepart_5d7ee09be9567_1c8c3fb5b50cd96049555
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/3035?email_source=notifications&amp;email_token=AFTOJK7C6RU7EDJVANFBTVTQJ3MBXA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYIQWQ#pullrequestreview-288393306">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6J3TJPF4WR4F3IY6DQJ3MBXANCNFSM4IW2F4YA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7VFOZLATWU6R53CGTQJ3MBXA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYIQWQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3035?email_source=notifications\u0026email_token=AFTOJK7C6RU7EDJVANFBTVTQJ3MBXA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYIQWQ#pullrequestreview-288393306",
"url": "https://github.com/quicwg/base-drafts/pull/3035?email_source=notifications\u0026email_token=AFTOJK7C6RU7EDJVANFBTVTQJ3MBXA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYIQWQ#pullrequestreview-288393306",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7ee09be9567_1c8c3fb5b50cd96049555--


From nobody Sun Sep 15 19:35: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 8B25C120814 for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 19:35:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.807
X-Spam-Level: 
X-Spam-Status: No, score=-6.807 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ijEzL14o_yPb for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 19:35: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 D8E8E120100 for <quic-issues@ietf.org>; Sun, 15 Sep 2019 19:35:25 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id D25699600A9 for <quic-issues@ietf.org>; Sun, 15 Sep 2019 19:35:24 -0700 (PDT)
Date: Sun, 15 Sep 2019 19:35:24 -0700
From: Ainiroad <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZDEPT3KNF6A4PU6N53RQTWZEVBNHHBZ6ZBM4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2995/531625100@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2995@github.com>
References: <quicwg/base-drafts/issues/2995@github.com>
Subject: Re: [quicwg/base-drafts] Confused about Fixed Bit in Version Negotiation Packet (#2995)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7ef4ecc3766_19073f9c716cd96c38663"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: Ainiroad
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tUoJzbGaelcDFGENI0go36OnxaM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 02:35:28 -0000

----==_mimepart_5d7ef4ecc3766_19073f9c716cd96c38663
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thanks

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/2995#issuecomment-531625100
----==_mimepart_5d7ef4ecc3766_19073f9c716cd96c38663
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Thanks</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/2995?email_source=notifications&amp;email_token=AFTOJK2J224OCNPCBODC6QDQJ3WGZA5CNFSM4IQ6MWNKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6X7JDA#issuecomment-531625100">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7GQEL5WWTJA7QCGQDQJ3WGZANCNFSM4IQ6MWNA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4ALKGGEDPRKQ3RBSTQJ3WGZA5CNFSM4IQ6MWNKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6X7JDA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/2995?email_source=notifications\u0026email_token=AFTOJK2J224OCNPCBODC6QDQJ3WGZA5CNFSM4IQ6MWNKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6X7JDA#issuecomment-531625100",
"url": "https://github.com/quicwg/base-drafts/issues/2995?email_source=notifications\u0026email_token=AFTOJK2J224OCNPCBODC6QDQJ3WGZA5CNFSM4IQ6MWNKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6X7JDA#issuecomment-531625100",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7ef4ecc3766_19073f9c716cd96c38663--


From nobody Sun Sep 15 19:35: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 73454120100 for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 19:35:28 -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 ra5sXb5glh0W for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 19:35:26 -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 9932A12080D for <quic-issues@ietf.org>; Sun, 15 Sep 2019 19:35:26 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id B534D2C157B for <quic-issues@ietf.org>; Sun, 15 Sep 2019 19:35:25 -0700 (PDT)
Date: Sun, 15 Sep 2019 19:35:25 -0700
From: Ainiroad <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2PNSVG7KFPVFRPEHF3RQTW3EVBNHHBZ6ZBM4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2995/issue_event/2635055923@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2995@github.com>
References: <quicwg/base-drafts/issues/2995@github.com>
Subject: Re: [quicwg/base-drafts] Confused about Fixed Bit in Version Negotiation Packet (#2995)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7ef4eda2de8_596e3f9dba4cd9606771b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: Ainiroad
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/L70fVHjXhgEr_mPureQTKgI_2dc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 02:35:28 -0000

----==_mimepart_5d7ef4eda2de8_596e3f9dba4cd9606771b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2995.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/2995#event-2635055923
----==_mimepart_5d7ef4eda2de8_596e3f9dba4cd9606771b
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="486220135" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2995" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2995/hovercard" href="https://github.com/quicwg/base-drafts/issues/2995">#2995</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/2995?email_source=notifications&amp;email_token=AFTOJK44EKJEVSHLQL526JLQJ3WG3A5CNFSM4IQ6MWNKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTUH4GMY#event-2635055923">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4OHYBEBSF6BUDADIDQJ3WG3ANCNFSM4IQ6MWNA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYNXWGO2XR5VXMM4HDQJ3WG3A5CNFSM4IQ6MWNKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTUH4GMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/2995?email_source=notifications\u0026email_token=AFTOJK44EKJEVSHLQL526JLQJ3WG3A5CNFSM4IQ6MWNKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTUH4GMY#event-2635055923",
"url": "https://github.com/quicwg/base-drafts/issues/2995?email_source=notifications\u0026email_token=AFTOJK44EKJEVSHLQL526JLQJ3WG3A5CNFSM4IQ6MWNKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTUH4GMY#event-2635055923",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7ef4eda2de8_596e3f9dba4cd9606771b--


From nobody Sun Sep 15 22: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 02E2C1200FB for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 22:23:55 -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 1ImJPI_IGRPX for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 22:23: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 5B04F12008C for <quic-issues@ietf.org>; Sun, 15 Sep 2019 22:23:52 -0700 (PDT)
Date: Sun, 15 Sep 2019 22:23:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568611431; bh=Rwckjkmka9DZCTXSkzz3CNQhy+dmD9NzDqCutRpwAWA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=upfgar3HolgZ9kDtzyq4AF53/UajlZzb7sA4nTGexSfibzCmttAsQibUggvO56R7h yUMxXwfdAsakECYYQv6+zGCjjaNWvyo9Uj2NQvT75LKGDicFKB+Ai2npwQgUBjfK9I SoRSkxnyAbEROWCI3rPd0YiXYE8LZF5oEUGrkqJM=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYW6DK6FUOL4AUG3LV3RRANPEVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/review/288407951@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7f1c675e445_49233facf44cd96c70517"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tsWxyo9dm052zWy4y2zfGcryl68>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 05:23:55 -0000

----==_mimepart_5d7f1c675e445_49233facf44cd96c70517
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

martinthomson commented on this pull request.=0D
=0D
I like the Nonces paper.  That validates a lot of what we have previously=
 only theorized.=0D
=0D
> -    date: 2014-11-06=0D
-    seriesinfo:=0D
-      ISBN: 978-1466570269=0D
+      - ins: P. Rogaway=0D
+    date: 2002-09-20=0D
+    target: "https://web.cs.ucdavis.edu/~rogaway/papers/ad.pdf"=0D
+=0D
+  NAN:=0D
+    title: "Nonces are Noticed: AEAD Revisited"=0D
+    author:=0D
+      - ins: M. Bellare=0D
+      - ins: R. Ng=0D
+      - ins: B. Tackmann=0D
+    date: 2019-06-01=0D
+    target: https://eprint.iacr.org/2019/624=0D
+    seriesinfo: Advances in Cryptology =E2=80=93 CRYPTO 2019, pages 235-=
265=0D
=0D
So this is not the same paper (the link references a full paper of which =
the CRYPTO 2019 piece was just a preview).  Not sure how to thread that.=0D=

=0D
Will the CRYPTO version have a DOI that we can use?=0D
=0D
>      author:=0D
-      - ins: J. Katz=0D
-      - ins: Y. Lindell=0D
-    date: 2014-11-06=0D
-    seriesinfo:=0D
-      ISBN: 978-1466570269=0D
+      - ins: P. Rogaway=0D
+    date: 2002-09-20=0D
+    target: "https://web.cs.ucdavis.edu/~rogaway/papers/ad.pdf"=0D
=0D
This has the same property as the one below, except that you don't cite t=
he proceedings:=0D
=0D
> [21] P. Rogaway. Authenticated-encryption with associated-data.Ninth AC=
M Conference onComputer and Communications Security(CCS-9). ACM Press, 20=
02. Proceedings version of this paper=0D
=0D
>  =0D
 ~~~=0D
 protected_field =3D field XOR PRF(hp_key, sample)=0D
 ~~~=0D
 =0D
-This construction is secure against chosen plaintext attacks (IND-CPA) {=
{IMC}}.=0D
+Assuming hp_key is distinct from the packet protection key, this constru=
ction=0D
=0D
This isn't an assumption, it's a property we provide.=0D
=0D
```suggestion=0D
As `hp_key` is distinct from the packet protection key, this construction=
=0D
```=0D
=0D
>  =0D
 ~~~=0D
 protected_field =3D field XOR PRF(hp_key, sample)=0D
 ~~~=0D
 =0D
-This construction is secure against chosen plaintext attacks (IND-CPA) {=
{IMC}}.=0D
+Assuming hp_key is distinct from the packet protection key, this constru=
ction=0D
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`,=
 the=0D
=0D
I would expand this to cite {{NAN}} again.=0D
=0D
```suggestion=0D
(HN1) achieves AE2 security as defined in {{NAN}} and therefore guarantee=
s privacy of `field`, the=0D
```=0D
=0D
>  =0D
 ~~~=0D
 protected_field =3D field XOR PRF(hp_key, sample)=0D
 ~~~=0D
 =0D
-This construction is secure against chosen plaintext attacks (IND-CPA) {=
{IMC}}.=0D
+Assuming hp_key is distinct from the packet protection key, this constru=
ction=0D
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`,=
 the=0D
+protected packet header. One important distinction between HN1 and the h=
eader=0D
+protection construction in this document is that the latter uses an AEAD=
=0D
+algorithm as the PRF. However, since the encrypted output of an AEAD is=0D=

=0D
I'm not sure that the distinction this middle sentence makes is relevant.=
  The definition of HN1 only depends on F being a PRF.  The existing head=
er protection functions use a PRF.  We should probably say something abou=
t what it takes to define a new header protection scheme somewhere though=
.=0D
=0D
>  =0D
 ~~~=0D
 protected_field =3D field XOR PRF(hp_key, sample)=0D
 ~~~=0D
 =0D
-This construction is secure against chosen plaintext attacks (IND-CPA) {=
{IMC}}.=0D
+Assuming hp_key is distinct from the packet protection key, this constru=
ction=0D
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`,=
 the=0D
+protected packet header. One important distinction between HN1 and the h=
eader=0D
+protection construction in this document is that the latter uses an AEAD=
=0D
+algorithm as the PRF. However, since the encrypted output of an AEAD is=0D=

+pseudorandom {{DefnAEAD}}, this achieves the properties desired from a P=
RF.=0D
=0D
I don't think that you need to cite Rogaway's paper here.  We're not rely=
ing on the properties of an AEAD (the HN1 construction was, so it might b=
e a little misleading to skew that direction).=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/3031#pullrequestreview-2884079=
51=

----==_mimepart_5d7f1c675e445_49233facf44cd96c70517
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 like the Nonces paper.  That validates a lot of what we have previou=
sly only theorized.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3031#discussi=
on_r324503581">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -    date: 2014-11-06=0D
-    seriesinfo:=0D
-      ISBN: 978-1466570269=0D
+      - ins: P. Rogaway=0D
+    date: 2002-09-20=0D
+    target: &quot;https://web.cs.ucdavis.edu/~rogaway/papers/ad.pdf&quot=
;=0D
+=0D
+  NAN:=0D
+    title: &quot;Nonces are Noticed: AEAD Revisited&quot;=0D
+    author:=0D
+      - ins: M. Bellare=0D
+      - ins: R. Ng=0D
+      - ins: B. Tackmann=0D
+    date: 2019-06-01=0D
+    target: https://eprint.iacr.org/2019/624=0D
+    seriesinfo: Advances in Cryptology =E2=80=93 CRYPTO 2019, pages 235-=
265=0D
</pre>=0D
<p>So this is not the same paper (the link references a full paper of whi=
ch the CRYPTO 2019 piece was just a preview).  Not sure how to thread tha=
t.</p>=0D
<p>Will the CRYPTO version have a DOI that we can use?</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3031#discussi=
on_r324503700">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;      author:=0D
-      - ins: J. Katz=0D
-      - ins: Y. Lindell=0D
-    date: 2014-11-06=0D
-    seriesinfo:=0D
-      ISBN: 978-1466570269=0D
+      - ins: P. Rogaway=0D
+    date: 2002-09-20=0D
+    target: &quot;https://web.cs.ucdavis.edu/~rogaway/papers/ad.pdf&quot=
;=0D
</pre>=0D
<p>This has the same property as the one below, except that you don't cit=
e the proceedings:</p>=0D
<blockquote>=0D
<p>[21] P. Rogaway. Authenticated-encryption with associated-data.Ninth A=
CM Conference onComputer and Communications Security(CCS-9). ACM Press, 2=
002. Proceedings version of this paper</p>=0D
</blockquote>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3031#discussi=
on_r324506660">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
 ~~~=0D
 protected_field =3D field XOR PRF(hp_key, sample)=0D
 ~~~=0D
 =0D
-This construction is secure against chosen plaintext attacks (IND-CPA) {=
{IMC}}.=0D
+Assuming hp_key is distinct from the packet protection key, this constru=
ction=0D
</pre>=0D
<p>This isn't an assumption, it's a property we provide.</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-Assuming hp_key is distinct from the packet p=
rotection key, this construction=0D
+As `hp_key` is distinct from the packet protection key, this constructio=
n=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3031#discussi=
on_r324506731">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
 ~~~=0D
 protected_field =3D field XOR PRF(hp_key, sample)=0D
 ~~~=0D
 =0D
-This construction is secure against chosen plaintext attacks (IND-CPA) {=
{IMC}}.=0D
+Assuming hp_key is distinct from the packet protection key, this constru=
ction=0D
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`,=
 the=0D
</pre>=0D
<p>I would expand this to cite {{NAN}} again.</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-(HN1) achieves AE2 security and therefore gua=
rantees privacy of `field`, the=0D
+(HN1) achieves AE2 security as defined in {{NAN}} and therefore guarante=
es privacy of `field`, the=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3031#discussi=
on_r324506781">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
 ~~~=0D
 protected_field =3D field XOR PRF(hp_key, sample)=0D
 ~~~=0D
 =0D
-This construction is secure against chosen plaintext attacks (IND-CPA) {=
{IMC}}.=0D
+Assuming hp_key is distinct from the packet protection key, this constru=
ction=0D
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`,=
 the=0D
+protected packet header. One important distinction between HN1 and the h=
eader=0D
+protection construction in this document is that the latter uses an AEAD=
=0D
+algorithm as the PRF. However, since the encrypted output of an AEAD is=0D=

</pre>=0D
<p>I'm not sure that the distinction this middle sentence makes is releva=
nt.  The definition of HN1 only depends on F being a PRF.  The existing h=
eader protection functions use a PRF.  We should probably say something a=
bout what it takes to define a new header protection scheme somewhere tho=
ugh.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3031#discussi=
on_r324507123">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
 ~~~=0D
 protected_field =3D field XOR PRF(hp_key, sample)=0D
 ~~~=0D
 =0D
-This construction is secure against chosen plaintext attacks (IND-CPA) {=
{IMC}}.=0D
+Assuming hp_key is distinct from the packet protection key, this constru=
ction=0D
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`,=
 the=0D
+protected packet header. One important distinction between HN1 and the h=
eader=0D
+protection construction in this document is that the latter uses an AEAD=
=0D
+algorithm as the PRF. However, since the encrypted output of an AEAD is=0D=

+pseudorandom {{DefnAEAD}}, this achieves the properties desired from a P=
RF.=0D
</pre>=0D
<p>I don't think that you need to cite Rogaway's paper here.  We're not r=
elying on the properties of an AEAD (the HN1 construction was, so it migh=
t be a little misleading to skew that direction).</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/3031?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK4XPLCJ53P5WTEIMITQJ4J6PA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYMDDY#pullrequestreview-288407951=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK4EJEE3VTUJ37SITM3QJ4J6PANCNFSM4IWUFWXQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJKZPB2JN=
CUVLRNPP3PLQJ4J6PA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYMDDY.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/3031?email_source=3D=
notifications\u0026email_token=3DAFTOJK4XPLCJ53P5WTEIMITQJ4J6PA5CNFSM4IWU=
FWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
EYMDDY#pullrequestreview-288407951",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK4XPLCJ53P5WTEIMITQJ4J6PA5CNFSM4IWUFW=
X2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEY=
MDDY#pullrequestreview-288407951",=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_5d7f1c675e445_49233facf44cd96c70517--


From nobody Sun Sep 15 22: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 901F01200FB for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 22:24:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 XIzfGmHvh2BQ for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 22:24: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 9795812008C for <quic-issues@ietf.org>; Sun, 15 Sep 2019 22:24:09 -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 E8572660BBA for <quic-issues@ietf.org>; Sun, 15 Sep 2019 22:24:08 -0700 (PDT)
Date: Sun, 15 Sep 2019 22:24:08 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7FSN3R5AX2PYACISN3RRHPREVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/review/288420290@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7f1c78d9242_6de73f8535ccd96412243b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FrxhYmEXiy_7TKlEhvWZViQK26M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 05:24:12 -0000

----==_mimepart_5d7f1c78d9242_6de73f8535ccd96412243b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

martinthomson commented on this pull request.=0D
=0D
=0D
=0D
> -    date: 2014-11-06=0D
-    seriesinfo:=0D
-      ISBN: 978-1466570269=0D
+      - ins: P. Rogaway=0D
+    date: 2002-09-20=0D
+    target: "https://web.cs.ucdavis.edu/~rogaway/papers/ad.pdf"=0D
+=0D
+  NAN:=0D
+    title: "Nonces are Noticed: AEAD Revisited"=0D
+    author:=0D
+      - ins: M. Bellare=0D
+      - ins: R. Ng=0D
+      - ins: B. Tackmann=0D
+    date: 2019-06-01=0D
+    target: https://eprint.iacr.org/2019/624=0D
+    seriesinfo: Advances in Cryptology =E2=80=93 CRYPTO 2019, pages 235-=
265=0D
=0D
I'll answer my own question: http://dx.doi.org/10.1007/978-3-030-26948-7_=
9=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/3031#discussion_r324513043=

----==_mimepart_5d7f1c78d9242_6de73f8535ccd96412243b
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/3031#discussi=
on_r324513043">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -    date: 2014-11-06=0D
-    seriesinfo:=0D
-      ISBN: 978-1466570269=0D
+      - ins: P. Rogaway=0D
+    date: 2002-09-20=0D
+    target: &quot;https://web.cs.ucdavis.edu/~rogaway/papers/ad.pdf&quot=
;=0D
+=0D
+  NAN:=0D
+    title: &quot;Nonces are Noticed: AEAD Revisited&quot;=0D
+    author:=0D
+      - ins: M. Bellare=0D
+      - ins: R. Ng=0D
+      - ins: B. Tackmann=0D
+    date: 2019-06-01=0D
+    target: https://eprint.iacr.org/2019/624=0D
+    seriesinfo: Advances in Cryptology =E2=80=93 CRYPTO 2019, pages 235-=
265=0D
</pre>=0D
<p>I'll answer my own question: <a href=3D"http://dx.doi.org/10.1007/978-=
3-030-26948-7_9" rel=3D"nofollow">http://dx.doi.org/10.1007/978-3-030-269=
48-7_9</a></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/3031?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK5EGDEUXU72UI7H27DQJ4J7RA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYPDQQ#discussion_r324513043">view=
 it on GitHub</a>, or <a href=3D"https://github.com/notifications/unsubsc=
ribe-auth/AFTOJK34KKYOQOC5CPAYED3QJ4J7RANCNFSM4IWUFWXQ">mute the thread</=
a>.<img src=3D"https://github.com/notifications/beacon/AFTOJKZ3G7JZI7KJ2D=
C7QY3QJ4J7RA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFS=
XPKTDN5WW2ZLOORPWSZGOCEYPDQQ.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/3031?email_source=3D=
notifications\u0026email_token=3DAFTOJK5EGDEUXU72UI7H27DQJ4J7RA5CNFSM4IWU=
FWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
EYPDQQ#discussion_r324513043",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK5EGDEUXU72UI7H27DQJ4J7RA5CNFSM4IWUFW=
X2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEY=
PDQQ#discussion_r324513043",=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_5d7f1c78d9242_6de73f8535ccd96412243b--


From nobody Sun Sep 15 22:31: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 0017512008C for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 22:31: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 HeOkyOXlZItT for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 22:31:46 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4D3D1120058 for <quic-issues@ietf.org>; Sun, 15 Sep 2019 22:31:46 -0700 (PDT)
Date: Sun, 15 Sep 2019 22:31:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568611905; bh=9axLUut6lQckg95opmokzhmCZOV7yM2bukqz9eM6Ywo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NvzVsFSuoMARCZqKDivXu4ayXKUQW0p7PbCPNn5TBe6O92rfMuboOboucEmi5kLAN PDQB+qkHjyr85tTivUuBGhgBjuL4PC508GxFXpbQgeohOE16YdcJaTBN8K1TYFqVta L4pZvD56/ZdVDxhlBL1jxGHIfAHjZBG2z2xeu9wI=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3DNQZHAKSX2VTGARF3RRPNDEVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/review/288421590@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7f1e41907d9_7c4a3f8e072cd95c921a7"; 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/QS3ug7WdYbHJfDmmLaWmTpYE7gY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 05:31:48 -0000

----==_mimepart_5d7f1e41907d9_7c4a3f8e072cd95c921a7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mikkelfj commented on this pull request.



>  
 ~~~
 protected_field = field XOR PRF(hp_key, sample)
 ~~~
 
-This construction is secure against chosen plaintext attacks (IND-CPA) {{IMC}}.
+Assuming hp_key is distinct from the packet protection key, this construction
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`, the

Even with citing, AE2 is not searchable. It is probably AE-scheme II, but I have only skimmed the paper.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3031#discussion_r324514087
----==_mimepart_5d7f1e41907d9_7c4a3f8e072cd95c921a7
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/3031#discussion_r324514087">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;  
 ~~~
 protected_field = field XOR PRF(hp_key, sample)
 ~~~
 
-This construction is secure against chosen plaintext attacks (IND-CPA) {{IMC}}.
+Assuming hp_key is distinct from the packet protection key, this construction
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`, the
</pre>
<p>Even with citing, AE2 is not searchable. It is probably AE-scheme II, but I have only skimmed the paper.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications&amp;email_token=AFTOJK7ZQR4Y47UOSWSPC5TQJ4K4DA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYPNVQ#discussion_r324514087">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK43T4TEYURQEHG35CDQJ4K4DANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZE5YDWKEAFIXPN5ZDQJ4K4DA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYPNVQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK7ZQR4Y47UOSWSPC5TQJ4K4DA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYPNVQ#discussion_r324514087",
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK7ZQR4Y47UOSWSPC5TQJ4K4DA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYPNVQ#discussion_r324514087",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7f1e41907d9_7c4a3f8e072cd95c921a7--


From nobody Sun Sep 15 22:50: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 98EF31202A0 for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 22:50:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 byumBrIP-aMD for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 22:50: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 7F8DA1200FB for <quic-issues@ietf.org>; Sun, 15 Sep 2019 22:50:47 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 839176A0E47 for <quic-issues@ietf.org>; Sun, 15 Sep 2019 22:50:46 -0700 (PDT)
Date: Sun, 15 Sep 2019 22:50:46 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6MGOKOEQ2G42F22OF3RRKTNEVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/review/288424422@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7f22b674d76_43e93fa25f6cd9645416e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Pm0JOzdwuoZGaTUbeIfHxt-HXIM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 05:50:50 -0000

----==_mimepart_5d7f22b674d76_43e93fa25f6cd9645416e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.



>  
 ~~~
 protected_field = field XOR PRF(hp_key, sample)
 ~~~
 
-This construction is secure against chosen plaintext attacks (IND-CPA) {{IMC}}.
+Assuming hp_key is distinct from the packet protection key, this construction
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`, the

> We  give  a  modified  syntax  for  nonce-based encryption, called NBE2, in which decryption does not get the nonce, a corresponding framework of security definitions called AE2 that guarantee nonce privacy in addition to authenticity and message privacy, and simple ways to turn NBE1 AE1-secure schemes into NBE2 AE2-secure schemes.

This is in the introduction of the paper, under "Contributions in brief."

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3031#discussion_r324516322
----==_mimepart_5d7f22b674d76_43e93fa25f6cd9645416e
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/3031#discussion_r324516322">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;  
 ~~~
 protected_field = field XOR PRF(hp_key, sample)
 ~~~
 
-This construction is secure against chosen plaintext attacks (IND-CPA) {{IMC}}.
+Assuming hp_key is distinct from the packet protection key, this construction
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`, the
</pre>
<blockquote>
<p>We  give  a  modified  syntax  for  nonce-based encryption, called NBE2, in which decryption does not get the nonce, a corresponding framework of security definitions called AE2 that guarantee nonce privacy in addition to authenticity and message privacy, and simple ways to turn NBE1 AE1-secure schemes into NBE2 AE2-secure schemes.</p>
</blockquote>
<p>This is in the introduction of the paper, under "Contributions in brief."</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications&amp;email_token=AFTOJK23TXHJXAHHXYVJEGDQJ4NDNA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYQDZQ#discussion_r324516322">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4TAY3QP375T5HBI2LQJ4NDNANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYLPFRT3UVXD6ZKSYTQJ4NDNA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYQDZQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK23TXHJXAHHXYVJEGDQJ4NDNA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYQDZQ#discussion_r324516322",
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK23TXHJXAHHXYVJEGDQJ4NDNA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYQDZQ#discussion_r324516322",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7f22b674d76_43e93fa25f6cd9645416e--


From nobody Sun Sep 15 22:54: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 547821200FB for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 22:54: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 6NsgBPxhKKyu for <quic-issues@ietfa.amsl.com>; Sun, 15 Sep 2019 22:54: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 8AE5F1200B8 for <quic-issues@ietf.org>; Sun, 15 Sep 2019 22:54:46 -0700 (PDT)
Date: Sun, 15 Sep 2019 22:54:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568613285; bh=/R1ThETwgHlfO7eO8ubb62iIlp9JfqeDgXlNa3Eefq8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DMft0gsS5GmsRdSGksA00gMXfp7d+/c8NnYaoJv8zNgiMLlMyxmNad9DH3/DqIZTO b6a2eJV3hpazNEpWBtu3MVfrKyHfCs8hunPCSLwnRl+QC4bBXY2nGQHP0dH0meXbxn yzfrlWybvyZBqRlL+7x8Ov1u5+Em3uf5wzJ6kkB8=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2SZ7CIKKUEVNHXWQV3RRSDLEVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/review/288425134@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7f23a57d27f_7f0f3fa2e0acd95c2315c2"; 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/AuZtkUQfHqKqMbJLAWs_PXHj_Ng>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 05:54:49 -0000

----==_mimepart_5d7f23a57d27f_7f0f3fa2e0acd95c2315c2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mikkelfj commented on this pull request.



>  
 ~~~
 protected_field = field XOR PRF(hp_key, sample)
 ~~~
 
-This construction is secure against chosen plaintext attacks (IND-CPA) {{IMC}}.
+Assuming hp_key is distinct from the packet protection key, this construction
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`, the

Uh sorry, I was locked on to Rogaway's paper.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3031#discussion_r324516877
----==_mimepart_5d7f23a57d27f_7f0f3fa2e0acd95c2315c2
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/3031#discussion_r324516877">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;  
 ~~~
 protected_field = field XOR PRF(hp_key, sample)
 ~~~
 
-This construction is secure against chosen plaintext attacks (IND-CPA) {{IMC}}.
+Assuming hp_key is distinct from the packet protection key, this construction
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`, the
</pre>
<p>Uh sorry, I was locked on to Rogaway's paper.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications&amp;email_token=AFTOJK27RB2FTVOSCWNS3Y3QJ4NSLA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYQJLQ#discussion_r324516877">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7W3EVHTQWCP5SK5K3QJ4NSLANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK63XMUOKGPTVBAI4C3QJ4NSLA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYQJLQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK27RB2FTVOSCWNS3Y3QJ4NSLA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYQJLQ#discussion_r324516877",
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK27RB2FTVOSCWNS3Y3QJ4NSLA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCEYQJLQ#discussion_r324516877",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7f23a57d27f_7f0f3fa2e0acd95c2315c2--


From nobody Mon Sep 16 04:24: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 0819D120836 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 04:24: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 avpIiMuWVzv0 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 04:24:35 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8CE5B120834 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 04:24:35 -0700 (PDT)
Date: Mon, 16 Sep 2019 04:24:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568633074; bh=uCzREmtp/7FIKQOfHLvk3AFjrYRrJzduSoJdFZOsOlM=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=mgc+ySmE7CHRGr2SRRdvJhiHOE4X0V2UMOTRfUu2YFLtCJZ77pUR+Y+AKfy+fnuZ0 0JUoUobPw1IsUnChLh03AgrynkEE6FC40SVoaeB/k+RfIdWLG2oxTbCqHk30zFL6c0 5n2hAXaxZuC7YebwMNXtO10ib4HWBCbmlyH76ifo=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYSKKA74OQDZ43ZD7N3RSRXFEVBNHHB24NSYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3036@github.com>
Subject: [quicwg/base-drafts] require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3036)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7f70f28a410_2fc53fba758cd95c6225c"; 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/9ZyVq1LRXB_6AyvJNe2VTRYMkEU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 11:24:37 -0000

----==_mimepart_5d7f70f28a410_2fc53fba758cd95c6225c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

When it comes to error checks for protocol violations, our principle is that easy to implement error checks are REQUIRED. Only error checks that might require a lot of state to perform are optional.

The check that the sequence number retired in a RETIRE_CONNECTION_ID frame is smaller than the highest issued connection ID is a single trivial uint64 comparison. Furthermore, every implementation needs to track the highest issued sequence number anyway, since connection IDs are issued in order.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3036

-- Commit Summary --

  * require peers to check if RETIRE_CONNECTION_ID sequence number is valid

-- File Changes --

    M draft-ietf-quic-transport.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3036.patch
https://github.com/quicwg/base-drafts/pull/3036.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/3036

----==_mimepart_5d7f70f28a410_2fc53fba758cd95c6225c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>When it comes to error checks for protocol violations, our principle is that easy to implement error checks are REQUIRED. Only error checks that might require a lot of state to perform are optional.</p>
<p>The check that the sequence number retired in a RETIRE_CONNECTION_ID frame is smaller than the highest issued connection ID is a single trivial uint64 comparison. Furthermore, every implementation needs to track the highest issued sequence number anyway, since connection IDs are issued in order.</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/3036'>https://github.com/quicwg/base-drafts/pull/3036</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>require peers to check if RETIRE_CONNECTION_ID sequence number is valid</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3036/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/3036.patch'>https://github.com/quicwg/base-drafts/pull/3036.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3036.diff'>https://github.com/quicwg/base-drafts/pull/3036.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/3036?email_source=notifications&amp;email_token=AFTOJKZX7WNPKFRAYYX2VX3QJ5UHFA5CNFSM4IXA5PZKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLRWLBA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYOOFSG3NBFKT5AV63QJ5UHFANCNFSM4IXA5PZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK36JPJ2TBUND6LZNQDQJ5UHFA5CNFSM4IXA5PZKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLRWLBA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3036?email_source=notifications\u0026email_token=AFTOJKZX7WNPKFRAYYX2VX3QJ5UHFA5CNFSM4IXA5PZKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLRWLBA",
"url": "https://github.com/quicwg/base-drafts/pull/3036?email_source=notifications\u0026email_token=AFTOJKZX7WNPKFRAYYX2VX3QJ5UHFA5CNFSM4IXA5PZKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLRWLBA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d7f70f28a410_2fc53fba758cd95c6225c--


From nobody Mon Sep 16 04:30: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 449CF120839 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 04:30:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 69NIlRw46UCL for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 04:30: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 CDE06120836 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 04:30:41 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 021566A0C4B for <quic-issues@ietf.org>; Mon, 16 Sep 2019 04:30:41 -0700 (PDT)
Date: Mon, 16 Sep 2019 04:30:40 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6FIWLXNQDM6KZNCZV3RSSOBEVBNHHBZOCWUY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2977/c531738744@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2977@github.com>
References: <quicwg/base-drafts/pull/2977@github.com>
Subject: Re: [quicwg/base-drafts] forbid empty NEW_TOKEN frames (#2977)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7f7260e50ef_76a83f9d670cd96c128984"; 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/VhgjUGJimwiqljgaW92Fa3a7wYU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 11:30:43 -0000

----==_mimepart_5d7f7260e50ef_76a83f9d670cd96c128984
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Consensus was declared on this PR a couple of days ago. Can we get this merged, and deal with the error code requested by @ianswett and @martinduke as part of #3027?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2977#issuecomment-531738744
----==_mimepart_5d7f7260e50ef_76a83f9d670cd96c128984
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Consensus was declared on this PR a couple of days ago. Can we get this merged, and deal with the error code requested by <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> and <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> as part of <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="493128958" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3027" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3027/hovercard" href="https://github.com/quicwg/base-drafts/issues/3027">#3027</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/2977?email_source=notifications&amp;email_token=AFTOJK5IHYQQQNEMXWWDZZTQJ5U6BA5CNFSM4IMODKOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6Y3A6A#issuecomment-531738744">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYD7BM5IAEFE7OPSRTQJ5U6BANCNFSM4IMODKOA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7U7FXI5LIRX7GYKILQJ5U6BA5CNFSM4IMODKOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6Y3A6A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2977?email_source=notifications\u0026email_token=AFTOJK5IHYQQQNEMXWWDZZTQJ5U6BA5CNFSM4IMODKOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6Y3A6A#issuecomment-531738744",
"url": "https://github.com/quicwg/base-drafts/pull/2977?email_source=notifications\u0026email_token=AFTOJK5IHYQQQNEMXWWDZZTQJ5U6BA5CNFSM4IMODKOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6Y3A6A#issuecomment-531738744",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7f7260e50ef_76a83f9d670cd96c128984--


From nobody Mon Sep 16 04:36: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 DFE41120088 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 04:36:24 -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 MPTJW6Iny9uE for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 04:36: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 1B3E1120019 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 04:36:23 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 2C4631C0690 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 04:36:22 -0700 (PDT)
Date: Mon, 16 Sep 2019 04:36:22 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2X63PZTISKKAPVAVF3RSTDNEVBNHHB2ZEM7Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3027/531740310@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3027@github.com>
References: <quicwg/base-drafts/issues/3027@github.com>
Subject: Re: [quicwg/base-drafts] Codes for frame encoding errors (#3027)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7f73b61d9f1_45623fc3892cd9688724d"; 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/nYEvrT6p9nvq8L8lxHNz9rS9itQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 11:36:25 -0000

----==_mimepart_5d7f73b61d9f1_45623fc3892cd9688724d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett I prepared a PR, just waiting for #2977 to get merged to apply the principle there.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3027#issuecomment-531740310
----==_mimepart_5d7f73b61d9f1_45623fc3892cd9688724d
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> I prepared a PR, just waiting for <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="481842854" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2977" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2977/hovercard" href="https://github.com/quicwg/base-drafts/pull/2977">#2977</a> to get merged to apply the principle there.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3027?email_source=notifications&amp;email_token=AFTOJK3JQAOULXHDUVW36G3QJ5VTNA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6Y3NFQ#issuecomment-531740310">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7AK7BI4YRCCFCGP3DQJ5VTNANCNFSM4IWL4A7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3L23HRRVK3SRRC7KLQJ5VTNA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6Y3NFQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3027?email_source=notifications\u0026email_token=AFTOJK3JQAOULXHDUVW36G3QJ5VTNA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6Y3NFQ#issuecomment-531740310",
"url": "https://github.com/quicwg/base-drafts/issues/3027?email_source=notifications\u0026email_token=AFTOJK3JQAOULXHDUVW36G3QJ5VTNA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6Y3NFQ#issuecomment-531740310",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7f73b61d9f1_45623fc3892cd9688724d--


From nobody Mon Sep 16 06: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 6EA641200E6 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 06:34: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 RfS7k67h23OH for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 06:34: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 C4A8F120046 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 06:34:03 -0700 (PDT)
Date: Mon, 16 Sep 2019 06:34:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568640843; bh=ThjDp/arGbrX+/1g7IdxqAB2SuA8FDCdchXTmn6kkBU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uVLEC87+3JejjkdOgiuApCm38MIYFnpne5M3xHf7LmAWRKFFZVpPTK/gyr4LuYeJE NMqNRgEVxl3qO9iI4Kdkml3NyGkNkrmvnBlpe/eTfdniKzYo53RUy7kFp2CtvzMv50 l9cTaH3hIo8sUwMpAOV4H5B4W0tFuuk6NmxvVSMM=
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/push/4038669479@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7f8f4b1237d_165b3fef41ccd95c520b0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chris-wood
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zfQGynhyvuIbz539vyMYZLx5zLs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 13:34:06 -0000

----==_mimepart_5d7f8f4b1237d_165b3fef41ccd95c520b0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@chris-wood pushed 1 commit.

55e1cf951bd5ed47925cb01ea37eae54757fa923  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/3031/files/be8f6e1438d4a4cd79081898688fb3ed3f640ed4..55e1cf951bd5ed47925cb01ea37eae54757fa923

----==_mimepart_5d7f8f4b1237d_165b3fef41ccd95c520b0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/chris-wood" class="user-mention">@chris-wood</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/55e1cf951bd5ed47925cb01ea37eae54757fa923">55e1cf9</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/3031/files/be8f6e1438d4a4cd79081898688fb3ed3f640ed4..55e1cf951bd5ed47925cb01ea37eae54757fa923?email_source=notifications&amp;email_token=AFTOJK5AVY4UH2RAMP6Y26TQJ6DMXA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTONBYG44DQN2QOVZWQIZUGAZTQNRWHE2DOOI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5PLDJO2JENES3Y6XDQJ6DMXANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY5MPYMCRGUFOG33NTQJ6DMXA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTONBYG44DQN2QOVZWQIZUGAZTQNRWHE2DOOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031/files/be8f6e1438d4a4cd79081898688fb3ed3f640ed4..55e1cf951bd5ed47925cb01ea37eae54757fa923?email_source=notifications\u0026email_token=AFTOJK5AVY4UH2RAMP6Y26TQJ6DMXA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTONBYG44DQN2QOVZWQIZUGAZTQNRWHE2DOOI",
"url": "https://github.com/quicwg/base-drafts/pull/3031/files/be8f6e1438d4a4cd79081898688fb3ed3f640ed4..55e1cf951bd5ed47925cb01ea37eae54757fa923?email_source=notifications\u0026email_token=AFTOJK5AVY4UH2RAMP6Y26TQJ6DMXA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTONBYG44DQN2QOVZWQIZUGAZTQNRWHE2DOOI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d7f8f4b1237d_165b3fef41ccd95c520b0--


From nobody Mon Sep 16 06:34: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 7C6081200E6 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 06:34:49 -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 Cx612ZmGsA-M for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 06:34:48 -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 071B9120090 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 06:34:48 -0700 (PDT)
Date: Mon, 16 Sep 2019 06:34:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568640887; bh=pxTJ5FY+g94wep0bM8tZ7LYSqGct0U5V7Sk7sxxQupY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qtvZ5JcCShHBZDohXRKlSRM4ijDbc+pNx/TFtDY6Dqx29y6FDYpRweKocqll5csC2 Pd4NVBEYqP8p3zos2X0pxgecOomOuJW1u53GaCYSeKN00ygCCznf2+7eJPnWqUeMAk YmHr7/ODw2AlAosSU3i259iXg4fABGlgE1YDSS1U=
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK562PYBSJOQ36FUUG53RTIAPEVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/review/288631507@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7f8f7710590_28d43fafedccd968698c9"; 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/yX9COfsMBxRUCNrIzpjsbqib_Po>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 13:34:50 -0000

----==_mimepart_5d7f8f7710590_28d43fafedccd968698c9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

chris-wood commented on this pull request.=0D
=0D
=0D
=0D
> -    date: 2014-11-06=0D
-    seriesinfo:=0D
-      ISBN: 978-1466570269=0D
+      - ins: P. Rogaway=0D
+    date: 2002-09-20=0D
+    target: "https://web.cs.ucdavis.edu/~rogaway/papers/ad.pdf"=0D
+=0D
+  NAN:=0D
+    title: "Nonces are Noticed: AEAD Revisited"=0D
+    author:=0D
+      - ins: M. Bellare=0D
+      - ins: R. Ng=0D
+      - ins: B. Tackmann=0D
+    date: 2019-06-01=0D
+    target: https://eprint.iacr.org/2019/624=0D
+    seriesinfo: Advances in Cryptology =E2=80=93 CRYPTO 2019, pages 235-=
265=0D
=0D
I chose the ePrint copy since it's more likely to stay up to date. I can =
swap in a reference to the CRYPTO version, though!=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/3031#discussion_r324677694=

----==_mimepart_5d7f8f7710590_28d43fafedccd968698c9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><b>@chris-wood</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3031#discussi=
on_r324677694">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -    date: 2014-11-06=0D
-    seriesinfo:=0D
-      ISBN: 978-1466570269=0D
+      - ins: P. Rogaway=0D
+    date: 2002-09-20=0D
+    target: &quot;https://web.cs.ucdavis.edu/~rogaway/papers/ad.pdf&quot=
;=0D
+=0D
+  NAN:=0D
+    title: &quot;Nonces are Noticed: AEAD Revisited&quot;=0D
+    author:=0D
+      - ins: M. Bellare=0D
+      - ins: R. Ng=0D
+      - ins: B. Tackmann=0D
+    date: 2019-06-01=0D
+    target: https://eprint.iacr.org/2019/624=0D
+    seriesinfo: Advances in Cryptology =E2=80=93 CRYPTO 2019, pages 235-=
265=0D
</pre>=0D
<p>I chose the ePrint copy since it's more likely to stay up to date. I c=
an swap in a reference to the CRYPTO version, though!</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/3031?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK5OVPNGLFFXGV3MOG3QJ6DPPA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2CVUY#discussion_r324677694">view=
 it on GitHub</a>, or <a href=3D"https://github.com/notifications/unsubsc=
ribe-auth/AFTOJKY7ICMN5KDAUMHVR5DQJ6DPPANCNFSM4IWUFWXQ">mute the thread</=
a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK32MALWDWV647=
CS6S3QJ6DPPA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFS=
XPKTDN5WW2ZLOORPWSZGOCE2CVUY.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/3031?email_source=3D=
notifications\u0026email_token=3DAFTOJK5OVPNGLFFXGV3MOG3QJ6DPPA5CNFSM4IWU=
FWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
E2CVUY#discussion_r324677694",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK5OVPNGLFFXGV3MOG3QJ6DPPA5CNFSM4IWUFW=
X2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2=
CVUY#discussion_r324677694",=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_5d7f8f7710590_28d43fafedccd968698c9--


From nobody Mon Sep 16 06:35: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 58B58120090 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 06:35: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 OC_o_mpj7dbA for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 06:34: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 C591D120046 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 06:34:58 -0700 (PDT)
Date: Mon, 16 Sep 2019 06:34:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568640897; bh=SNLfRUWma4RJ/3+FT66+96VbwxpIGlipeXlNTZfZJQ4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eZ1u4/jPoo1/bc1RRCXzKJLnfEsMKUFERwWPvYmNm6k3SmPD+fCQ15i6eRBgKrBQY /+++MYMWmMHyzp1fHWcyLJM9+UYuvCzDa2rJMlKnp4XxF8GvYYFRYtF0nr+h8b4Tr1 +FRhE8cJXAH5bFHRn9YlGYPyIrb/xSpMSvUOlqqc=
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5I5CSKICTKMGRCKZN3RTIBDEVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/review/288631639@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7f8f81e5f12_16533fef41ccd95c66158"; 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/z3nsbPakfan-boZGIp5UGresB6M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 13:35:00 -0000

----==_mimepart_5d7f8f81e5f12_16533fef41ccd95c66158
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

chris-wood commented on this pull request.



>      author:
-      - ins: J. Katz
-      - ins: Y. Lindell
-    date: 2014-11-06
-    seriesinfo:
-      ISBN: 978-1466570269
+      - ins: P. Rogaway
+    date: 2002-09-20
+    target: "https://web.cs.ucdavis.edu/~rogaway/papers/ad.pdf"

Will fix!

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3031#discussion_r324677804
----==_mimepart_5d7f8f81e5f12_16533fef41ccd95c66158
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@chris-wood</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3031#discussion_r324677804">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;      author:
-      - ins: J. Katz
-      - ins: Y. Lindell
-    date: 2014-11-06
-    seriesinfo:
-      ISBN: 978-1466570269
+      - ins: P. Rogaway
+    date: 2002-09-20
+    target: &quot;https://web.cs.ucdavis.edu/~rogaway/papers/ad.pdf&quot;
</pre>
<p>Will fix!</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications&amp;email_token=AFTOJK4VIIO4PKZ5ZNLNASDQJ6DQDA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2CWVY#discussion_r324677804">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2TZH77EWACYZPM73DQJ6DQDANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ367AQ3IAHR44RXD3QJ6DQDA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2CWVY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK4VIIO4PKZ5ZNLNASDQJ6DQDA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2CWVY#discussion_r324677804",
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK4VIIO4PKZ5ZNLNASDQJ6DQDA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2CWVY#discussion_r324677804",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7f8f81e5f12_16533fef41ccd95c66158--


From nobody Mon Sep 16 06:35: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 44AB1120090 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 06:35:20 -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 rFnNfZiZBzSq for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 06:35:18 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6B565120046 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 06:35:18 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id C5F82520027 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 06:35:17 -0700 (PDT)
Date: Mon, 16 Sep 2019 06:35:17 -0700
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/push/4038675296@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7f8f95b86e9_5e953f9b4b6cd95c171776"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chris-wood
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NNjxjhgoS8z96Curgf_kou4XNwk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 13:35:20 -0000

----==_mimepart_5d7f8f95b86e9_5e953f9b4b6cd95c171776
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@chris-wood pushed 1 commit.

4e8c028d25b04a895507db826491ea38a2cd680f  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/3031/files/55e1cf951bd5ed47925cb01ea37eae54757fa923..4e8c028d25b04a895507db826491ea38a2cd680f

----==_mimepart_5d7f8f95b86e9_5e953f9b4b6cd95c171776
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/chris-wood" class="user-mention">@chris-wood</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/4e8c028d25b04a895507db826491ea38a2cd680f">4e8c028</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/3031/files/55e1cf951bd5ed47925cb01ea37eae54757fa923..4e8c028d25b04a895507db826491ea38a2cd680f?email_source=notifications&amp;email_token=AFTOJK4JH6CQT3CJGRJRIP3QJ6DRLA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTONBYG44DQN2QOVZWQIZUGAZTQNRXGUZDSNQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ4MN6FIYWX5VB7M3DQJ6DRLANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3OGWHTVJ2A6L2ZTGLQJ6DRLA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTONBYG44DQN2QOVZWQIZUGAZTQNRXGUZDSNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031/files/55e1cf951bd5ed47925cb01ea37eae54757fa923..4e8c028d25b04a895507db826491ea38a2cd680f?email_source=notifications\u0026email_token=AFTOJK4JH6CQT3CJGRJRIP3QJ6DRLA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTONBYG44DQN2QOVZWQIZUGAZTQNRXGUZDSNQ",
"url": "https://github.com/quicwg/base-drafts/pull/3031/files/55e1cf951bd5ed47925cb01ea37eae54757fa923..4e8c028d25b04a895507db826491ea38a2cd680f?email_source=notifications\u0026email_token=AFTOJK4JH6CQT3CJGRJRIP3QJ6DRLA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTONBYG44DQN2QOVZWQIZUGAZTQNRXGUZDSNQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d7f8f95b86e9_5e953f9b4b6cd95c171776--


From nobody Mon Sep 16 06:36: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 53A31120046 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 06:36: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 lf1EYRQB2nt6 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 06:36: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 806D1120090 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 06:36:08 -0700 (PDT)
Date: Mon, 16 Sep 2019 06:36:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568640968; bh=DNUFyHJaOID9bcMPSM7bpkOCOD3BiT7Ph3bSNIqOu+E=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Oa+WNsTBcMtt3t51vqXjFlN16cbgKKkVg/zrpp1Ssu1LZCy9NrFKt7Plcs5aKcouD 591i7s+Zl66Rh4+3H6Ab+5y+rJgLpmcgYD95d8abHvxNZBcz7CFT/l+PQgKd48iOlp IQS/XlmFQuj6luKR9EgRgPUPCHzFV5etl3j/Bckg=
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZVOSRXU3AKFH4KBG53RTIFPEVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/review/288632498@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7f8fc7bc73f_79723facbf4cd9601161e2"; 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/6bKeGqUXQIkCfWnyrsuWWq1BJsE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 13:36:11 -0000

----==_mimepart_5d7f8fc7bc73f_79723facbf4cd9601161e2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

chris-wood commented on this pull request.



>  
 ~~~
 protected_field = field XOR PRF(hp_key, sample)
 ~~~
 
-This construction is secure against chosen plaintext attacks (IND-CPA) {{IMC}}.
+Assuming hp_key is distinct from the packet protection key, this construction

I used this text in the off chance that we decide to change the scheme again. Using what's currently specified is probably better though. Thanks for the 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/3031#discussion_r324678461
----==_mimepart_5d7f8fc7bc73f_79723facbf4cd9601161e2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@chris-wood</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3031#discussion_r324678461">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;  
 ~~~
 protected_field = field XOR PRF(hp_key, sample)
 ~~~
 
-This construction is secure against chosen plaintext attacks (IND-CPA) {{IMC}}.
+Assuming hp_key is distinct from the packet protection key, this construction
</pre>
<p>I used this text in the off chance that we decide to change the scheme again. Using what's currently specified is probably better though. Thanks for the 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/3031?email_source=notifications&amp;email_token=AFTOJK2SHYVDMJ2GXMOMCUTQJ6DUPA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2C5MQ#discussion_r324678461">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5TKJKJEXBFRH3VEOTQJ6DUPANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZGMHYSB32JKFXDXBDQJ6DUPA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2C5MQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK2SHYVDMJ2GXMOMCUTQJ6DUPA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2C5MQ#discussion_r324678461",
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK2SHYVDMJ2GXMOMCUTQJ6DUPA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2C5MQ#discussion_r324678461",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7f8fc7bc73f_79723facbf4cd9601161e2--


From nobody Mon Sep 16 06:39: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 392291200E6 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 06:39: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 1p6JS8S2u14T for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 06:39: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 5384B120090 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 06:39:30 -0700 (PDT)
Date: Mon, 16 Sep 2019 06:39:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568641169; bh=9Y543TjYqKuKVbnpyjQF7Utp8G6PKO5N15udzK+Yc4g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UZ8xm6prCi7adJZpdYnxCTXUCuLLaZ6kk31tfZi4WpvXWF1fqEUF+MguUE33L1P7x 0nbFkWGxuoZVxGOS9H5DeADNI8Wb8LX88fUussUbfS2fJ/XNdddiqUPsl9lkUuplQp n8MY5uPErWicrGqi5VAg52f5MlEqA1UQJTEegSJ8=
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3QAUY7XAACB3CQO553RTISDEVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/review/288634651@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7f909139647_196b3ff112ecd96423585e"; 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/jCNZk1S1XuRfRlu93lCgvDX7F_w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 13:39:32 -0000

----==_mimepart_5d7f909139647_196b3ff112ecd96423585e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

chris-wood commented on this pull request.



>  
 ~~~
 protected_field = field XOR PRF(hp_key, sample)
 ~~~
 
-This construction is secure against chosen plaintext attacks (IND-CPA) {{IMC}}.
+Assuming hp_key is distinct from the packet protection key, this construction
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`, the
+protected packet header. One important distinction between HN1 and the header
+protection construction in this document is that the latter uses an AEAD
+algorithm as the PRF. However, since the encrypted output of an AEAD is

I think the distinction is important because AEADs are (depending on one's definition) not PRFs. 

> We should probably say something about what it takes to define a new header protection scheme somewhere though.

Hmm, I'm not sure. That's probably best done elsewhere, e.g., a CFRG document, that we then cite. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3031#discussion_r324680042
----==_mimepart_5d7f909139647_196b3ff112ecd96423585e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@chris-wood</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3031#discussion_r324680042">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;  
 ~~~
 protected_field = field XOR PRF(hp_key, sample)
 ~~~
 
-This construction is secure against chosen plaintext attacks (IND-CPA) {{IMC}}.
+Assuming hp_key is distinct from the packet protection key, this construction
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`, the
+protected packet header. One important distinction between HN1 and the header
+protection construction in this document is that the latter uses an AEAD
+algorithm as the PRF. However, since the encrypted output of an AEAD is
</pre>
<p>I think the distinction is important because AEADs are (depending on one's definition) not PRFs.</p>
<blockquote>
<p>We should probably say something about what it takes to define a new header protection scheme somewhere though.</p>
</blockquote>
<p>Hmm, I'm not sure. That's probably best done elsewhere, e.g., a CFRG document, that we then cite.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications&amp;email_token=AFTOJK4ECQCO4SFNTFGD7VLQJ6EBDA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2DOGY#discussion_r324680042">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3RK36O43RRI4CL6N3QJ6EBDANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZTUKR4Q6DLGRVUCSLQJ6EBDA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2DOGY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK4ECQCO4SFNTFGD7VLQJ6EBDA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2DOGY#discussion_r324680042",
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK4ECQCO4SFNTFGD7VLQJ6EBDA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2DOGY#discussion_r324680042",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7f909139647_196b3ff112ecd96423585e--


From nobody Mon Sep 16 06:40: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 F26D11200E6 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 06:40:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 NHnwM6QxmNql for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 06:40:29 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1C5BA1200E0 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 06:40:29 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 414F1A0545 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 06:40:28 -0700 (PDT)
Date: Mon, 16 Sep 2019 06:40:28 -0700
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYME6TI4AVSGLSPAOF3RTIVZEVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/review/288635407@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7f90cc3140d_65593fee7fecd9681375e7"; 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/mjinvdCZpNyqYz64h_W0o8OaKJY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 13:40:32 -0000

----==_mimepart_5d7f90cc3140d_65593fee7fecd9681375e7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

chris-wood commented on this pull request.



>  
 ~~~
 protected_field = field XOR PRF(hp_key, sample)
 ~~~
 
-This construction is secure against chosen plaintext attacks (IND-CPA) {{IMC}}.
+Assuming hp_key is distinct from the packet protection key, this construction
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`, the
+protected packet header. One important distinction between HN1 and the header
+protection construction in this document is that the latter uses an AEAD
+algorithm as the PRF. However, since the encrypted output of an AEAD is
+pseudorandom {{DefnAEAD}}, this achieves the properties desired from a PRF.

Rogaway's definition assumes the encrypted output is pseudorandom (per the Adv^PRIV requirement), and that's the property header protection relies on, so I felt it best to cite.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3031#discussion_r324680607
----==_mimepart_5d7f90cc3140d_65593fee7fecd9681375e7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@chris-wood</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3031#discussion_r324680607">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;  
 ~~~
 protected_field = field XOR PRF(hp_key, sample)
 ~~~
 
-This construction is secure against chosen plaintext attacks (IND-CPA) {{IMC}}.
+Assuming hp_key is distinct from the packet protection key, this construction
+(HN1) achieves AE2 security and therefore guarantees privacy of `field`, the
+protected packet header. One important distinction between HN1 and the header
+protection construction in this document is that the latter uses an AEAD
+algorithm as the PRF. However, since the encrypted output of an AEAD is
+pseudorandom {{DefnAEAD}}, this achieves the properties desired from a PRF.
</pre>
<p>Rogaway's definition assumes the encrypted output is pseudorandom (per the Adv^PRIV requirement), and that's the property header protection relies on, so I felt it best to cite.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications&amp;email_token=AFTOJK4OU3SPAF5RWIDRPUTQJ6EEZA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2DUDY#discussion_r324680607">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2WZFRV4HLGCLY4T5LQJ6EEZANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4ZKI7UKUXSYYRCOM3QJ6EEZA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2DUDY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK4OU3SPAF5RWIDRPUTQJ6EEZA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2DUDY#discussion_r324680607",
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK4OU3SPAF5RWIDRPUTQJ6EEZA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2DUDY#discussion_r324680607",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7f90cc3140d_65593fee7fecd9681375e7--


From nobody Mon Sep 16 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 94BE1120045 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 06:59: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 Ih5TuN0BBZFI for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 06:59:19 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 145F51200E6 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 06:59:19 -0700 (PDT)
Date: Mon, 16 Sep 2019 06:59:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568642358; bh=owUlUuVStNYaNA8HZ8A/ZX3DAErUwDT26PXesHyMv3c=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=T6RvUQRhs+aTJ0aMuZF/koHPJPgYadiEIVAmDRrZ8/PPteJJbndEo63NyFsNmjWa6 /mPvLpFAc+ILGF1kcUnFwKhV/wHviOfU8l6GhX+WqMTjRmckM7KGEvA7YSZ3odXkfM vumBuL2Q7oEyoQWykvrd4R9TScxhH5s2W8y672OY=
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/push/4038788461@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7f95361e92a_68863f8f8eecd96850586"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chris-wood
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/uy45yy7__FOR9OC8UG_B74huemw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 13:59:21 -0000

----==_mimepart_5d7f95361e92a_68863f8f8eecd96850586
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@chris-wood pushed 1 commit.

d86243037a40c9a5f4e31fea55bd7f97b83b53bb  Update references. Fix linting issues.


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3031/files/4e8c028d25b04a895507db826491ea38a2cd680f..d86243037a40c9a5f4e31fea55bd7f97b83b53bb

----==_mimepart_5d7f95361e92a_68863f8f8eecd96850586
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/chris-wood" class="user-mention">@chris-wood</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/d86243037a40c9a5f4e31fea55bd7f97b83b53bb">d862430</a>  Update references. Fix linting issues.</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3031/files/4e8c028d25b04a895507db826491ea38a2cd680f..d86243037a40c9a5f4e31fea55bd7f97b83b53bb?email_source=notifications&amp;email_token=AFTOJK3DUYAPDXK2IAW7E4TQJ6GLNA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTONBYG44DQN2QOVZWQIZUGAZTQNZYHA2DMMI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK22UDTQ33UCJC6KY7LQJ6GLNANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYZ7MZIMQG2UCN2A2LQJ6GLNA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTONBYG44DQN2QOVZWQIZUGAZTQNZYHA2DMMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031/files/4e8c028d25b04a895507db826491ea38a2cd680f..d86243037a40c9a5f4e31fea55bd7f97b83b53bb?email_source=notifications\u0026email_token=AFTOJK3DUYAPDXK2IAW7E4TQJ6GLNA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTONBYG44DQN2QOVZWQIZUGAZTQNZYHA2DMMI",
"url": "https://github.com/quicwg/base-drafts/pull/3031/files/4e8c028d25b04a895507db826491ea38a2cd680f..d86243037a40c9a5f4e31fea55bd7f97b83b53bb?email_source=notifications\u0026email_token=AFTOJK3DUYAPDXK2IAW7E4TQJ6GLNA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTONBYG44DQN2QOVZWQIZUGAZTQNZYHA2DMMI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d7f95361e92a_68863f8f8eecd96850586--


From nobody Mon Sep 16 07:25: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 8CB511200E6 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 07:25:06 -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 9ody1xv3gaRB for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 07:25: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 1E98F1200F1 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 07:25:04 -0700 (PDT)
Date: Mon, 16 Sep 2019 07:25:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568643903; bh=c4NTG6MgyjXl9BLUPLnFwfy35mMbc5Mf6IOqfq/UWi8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=w7qM+cA/LKIxIsg6V+BeB3TmAJv7JiCQmo2F+vrmP5497qC/axExa0Z3DQLhNb3Ct /NGDHalSWoU+kEdnJIGX6bChh6FMrd/ZFAYZ7/RIrs4A4SNYddy4n949Jc1w37lFuC FzIQIJRo++r5bZCoJSxkBvCprEaPom1jZoWzC69k=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4MANRT4PDS6JNZT7V3RTN47EVBNHHB23E46Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3033/c531801123@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3033@github.com>
References: <quicwg/base-drafts/pull/3033@github.com>
Subject: Re: [quicwg/base-drafts] Suggest sending empty CRYPTO frames in Initial/Handshake packets (#3033)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7f9b3f3c4ec_41893fcbcf6cd95c108018"; 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/60kRfnTCm6Xb-KDmpJdoHCTMnEw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 14:25:07 -0000

----==_mimepart_5d7f9b3f3c4ec_41893fcbcf6cd95c108018
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I agree with @marten-seemann the intent was to allow this in #2355, thanks for sending out a different PR to allow them.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3033#issuecomment-531801123
----==_mimepart_5d7f9b3f3c4ec_41893fcbcf6cd95c108018
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I agree with <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> the intent was to allow this in <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="401195460" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2355" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2355/hovercard" href="https://github.com/quicwg/base-drafts/pull/2355">#2355</a>, thanks for sending out a different PR to allow them.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3033?email_source=notifications&amp;email_token=AFTOJK53DJCF4B4H3CLO44DQJ6JL7A5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6ZKIIY#issuecomment-531801123">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5L7JQG453ML2YOCITQJ6JL7ANCNFSM4IWYAGQQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZLRLXWFA4NRSMPZUTQJ6JL7A5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6ZKIIY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3033?email_source=notifications\u0026email_token=AFTOJK53DJCF4B4H3CLO44DQJ6JL7A5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6ZKIIY#issuecomment-531801123",
"url": "https://github.com/quicwg/base-drafts/pull/3033?email_source=notifications\u0026email_token=AFTOJK53DJCF4B4H3CLO44DQJ6JL7A5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6ZKIIY#issuecomment-531801123",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7f9b3f3c4ec_41893fcbcf6cd95c108018--


From nobody Mon Sep 16 07: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 3E384120090 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 07:25: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 L5b4sWlWzawk for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 07:25:11 -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 4385D1200F1 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 07:25:11 -0700 (PDT)
Date: Mon, 16 Sep 2019 07:25:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568643910; bh=l3f2SWtHeYlL4V8rMp1ukF2etOZhYarCa8Gs4ZiZMFo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nZftJhhI6+jWDvZvmOMdL5NkSIZRkIh4XMbEpPdna8Gwb5CgoL3PYJ+jKmaJBcBq5 9lhLeii70PWlGc9S0vbBMaFxvzwGlaDhJFcHjRPZJeEM7yWGNbvZ4FFlCLLwU5OtkC au+H7N4gk4aXboanJ6cSes8NsrgioY2T4WsjhKAI=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5IBBKFKWYS6EO5VNV3RTN5NEVBNHHB23NCUU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3035/review/288667154@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3035@github.com>
References: <quicwg/base-drafts/pull/3035@github.com>
Subject: Re: [quicwg/base-drafts] Allow PING at every encryption level (#3035)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7f9b46673f1_2be63fc708ecd95c671c9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/V_qmyedQGKktmOJyanU264jfM2s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 14:25:14 -0000

----==_mimepart_5d7f9b46673f1_2be63fc708ecd95c671c9
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/3035#pullrequestreview-288667154
----==_mimepart_5d7f9b46673f1_2be63fc708ecd95c671c9
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/3035?email_source=notifications&amp;email_token=AFTOJK35WRRKKVC23QAMAZ3QJ6JMNA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2LMEQ#pullrequestreview-288667154">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3S26ZEAXAAHC6CU6LQJ6JMNANCNFSM4IW2F4YA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6TPX6ML7Q7FKEC4WLQJ6JMNA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2LMEQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3035?email_source=notifications\u0026email_token=AFTOJK35WRRKKVC23QAMAZ3QJ6JMNA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2LMEQ#pullrequestreview-288667154",
"url": "https://github.com/quicwg/base-drafts/pull/3035?email_source=notifications\u0026email_token=AFTOJK35WRRKKVC23QAMAZ3QJ6JMNA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE2LMEQ#pullrequestreview-288667154",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7f9b46673f1_2be63fc708ecd95c671c9--


From nobody Mon Sep 16 10:08: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 AABC2120875 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 10:08: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 2XytkXmOS5SA for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 10:08:47 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E34B9120870 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 10:08:46 -0700 (PDT)
Date: Mon, 16 Sep 2019 10:08:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568653726; bh=09VO7nU9rQ0nSZhNh0ilFW22Mr4Q2lD1dWfZU/C6D4Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=thL/+0xPwALde4Jxhl0fqzbjjdtZXeWtum8G5Cw1+FRR5JNkN/p7Q4daYHHZHhaal lz1Terwop0ptw67fiAJJIaUg5+zvIG0nfBWQupZvGxjU+wqubmCkRMJ1/9SyTVzcWn JEq+UnyJSk8MYh2Z5B34fRO6+WBoI28bicgmOTb4=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6D5MEQZFOOK3WDRU53RUBC3EVBNHHB24NSYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3036/review/288773060@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3036@github.com>
References: <quicwg/base-drafts/pull/3036@github.com>
Subject: Re: [quicwg/base-drafts] require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3036)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7fc19de8f90_3ac23faaba4cd96c559be"; 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/bEEm4US4n-gRtQ6c2sRgdiC2-u8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 17:08:51 -0000

----==_mimepart_5d7fc19de8f90_3ac23faaba4cd96c559be
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/3036#pullrequestreview-288773060
----==_mimepart_5d7fc19de8f90_3ac23faaba4cd96c559be
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/3036?email_source=notifications&amp;email_token=AFTOJKY4PZ3JP4QCFMDRYU3QJ64R3A5CNFSM4IXA5PZKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE3FHRA#pullrequestreview-288773060">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4WE4ZIHEAKVWO5WI3QJ64R3ANCNFSM4IXA5PZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2ZFAHWAVXIS6QVJA3QJ64R3A5CNFSM4IXA5PZKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE3FHRA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3036?email_source=notifications\u0026email_token=AFTOJKY4PZ3JP4QCFMDRYU3QJ64R3A5CNFSM4IXA5PZKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE3FHRA#pullrequestreview-288773060",
"url": "https://github.com/quicwg/base-drafts/pull/3036?email_source=notifications\u0026email_token=AFTOJKY4PZ3JP4QCFMDRYU3QJ64R3A5CNFSM4IXA5PZKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE3FHRA#pullrequestreview-288773060",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7fc19de8f90_3ac23faaba4cd96c559be--


From nobody Mon Sep 16 10:09: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 B26E212088A for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 10:09:44 -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 MEP_OFUkBTxL for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 10:09: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 66E55120887 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 10:09:40 -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 E85062600B6 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 10:09:39 -0700 (PDT)
Date: Mon, 16 Sep 2019 10:09:39 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3FR6O6UXG7FFCB4A53RUBGHEVBNHHB24NSYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3036/c531869424@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3036@github.com>
References: <quicwg/base-drafts/pull/3036@github.com>
Subject: Re: [quicwg/base-drafts] require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3036)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7fc1d3bfe42_2d583ffa6cccd96c175778"; 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/6D0josKrpGvM8-NEqn--xpqcZ1g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 17:09:45 -0000

----==_mimepart_5d7fc1d3bfe42_2d583ffa6cccd96c175778
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This is small and I support it, but I think it needs to be marked design and run through the process because it changes normative language.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3036#issuecomment-531869424
----==_mimepart_5d7fc1d3bfe42_2d583ffa6cccd96c175778
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This is small and I support it, but I think it needs to be marked design and run through the process because it changes normative language.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3036?email_source=notifications&amp;email_token=AFTOJK4EX2PL4R574ULWEQDQJ64VHA5CNFSM4IXA5PZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6Z254A#issuecomment-531869424">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6SHYC2XU7RKEWSHWDQJ64VHANCNFSM4IXA5PZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZM3RB4SU4AQL7QI4LQJ64VHA5CNFSM4IXA5PZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6Z254A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3036?email_source=notifications\u0026email_token=AFTOJK4EX2PL4R574ULWEQDQJ64VHA5CNFSM4IXA5PZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6Z254A#issuecomment-531869424",
"url": "https://github.com/quicwg/base-drafts/pull/3036?email_source=notifications\u0026email_token=AFTOJK4EX2PL4R574ULWEQDQJ64VHA5CNFSM4IXA5PZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6Z254A#issuecomment-531869424",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7fc1d3bfe42_2d583ffa6cccd96c175778--


From nobody Mon Sep 16 10: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 D8ADA12012D for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 10:13: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 bi9a4B7Lbu6U for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 10:13:44 -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 1ECE0120127 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 10:13:44 -0700 (PDT)
Date: Mon, 16 Sep 2019 10:13:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568654023; bh=GJtjPGiG16Kp01+s8BysJvlte+6OzAyBm/0KN+OO+J4=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=J3COvWMh5D/tdzFAWbPXiJT2a7BwXfMz3vVu7Hy4v1w6naxsKemcjppI1tgX+GnKj g/Buby6JNV0Q2FD6jfOvrzs3hdkT2fkOorsyJtVXFZQdCY5/M1n4BWy34AAbkpLwG3 YKg8R85I/gnSoTKZXrFaxpoHQgBFpREXdvAXi0JI=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2K2H7DPYHFSLDGK453RUBVPEVBNHHB25D7KM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3037@github.com>
Subject: [quicwg/base-drafts] Require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3037)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7fc2c7347cb_65063f9dee6cd95c1250ac"; 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/qWJqKC57d5HYPGsrt054mVEtzhM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 17:13:46 -0000

----==_mimepart_5d7fc2c7347cb_65063f9dee6cd95c1250ac
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

An issue to match with PR #3036 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3037
----==_mimepart_5d7fc2c7347cb_65063f9dee6cd95c1250ac
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>An issue to match with PR <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="493990594" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3036" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3036/hovercard" href="https://github.com/quicwg/base-drafts/pull/3036">#3036</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/3037?email_source=notifications&amp;email_token=AFTOJK7DVNMIP6DUIFOKCJ3QJ65EPA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLUP5JQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2ZVBKFPTF5BC4W3VDQJ65EPANCNFSM4IXFBLRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6UHAWMXYL7O3XTR2TQJ65EPA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLUP5JQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK7DVNMIP6DUIFOKCJ3QJ65EPA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLUP5JQ",
"url": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK7DVNMIP6DUIFOKCJ3QJ65EPA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLUP5JQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d7fc2c7347cb_65063f9dee6cd95c1250ac--


From nobody Mon Sep 16 13:09: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 728D0120123 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 13:09:16 -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 xnDUzGK3omQH for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 13:09: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 ADEF1120122 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 13:09:14 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id D732C2C1045 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 13:09:13 -0700 (PDT)
Date: Mon, 16 Sep 2019 13:09:13 -0700
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK26X6ME4AEMYT4ZBD53RUWHTEVBNHHB25NN2Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3038@github.com>
Subject: [quicwg/base-drafts] Add PR 3007 to transport-23 changelog (#3038)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d7febe9c7bb9_7b3c3fabfa8cd9681344b6"; 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/ddZElThVCA_3pCwpwA0d3oeL1S8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 20:09:17 -0000

----==_mimepart_5d7febe9c7bb9_7b3c3fabfa8cd9681344b6
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/3038

-- Commit Summary --

  * Add PR 3007 to transport-23 changelog

-- File Changes --

    M draft-ietf-quic-transport.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3038.patch
https://github.com/quicwg/base-drafts/pull/3038.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/3038

----==_mimepart_5d7febe9c7bb9_7b3c3fabfa8cd9681344b6
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/3038'>https://github.com/quicwg/base-drafts/pull/3038</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Add PR 3007 to transport-23 changelog</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3038/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/3038.patch'>https://github.com/quicwg/base-drafts/pull/3038.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3038.diff'>https://github.com/quicwg/base-drafts/pull/3038.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/3038?email_source=notifications&amp;email_token=AFTOJK6N2RRGLE7NAIPQKDDQJ7RWTA5CNFSM4IXGV3T2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLVVXLA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ5SVIKQASXMKQNO63QJ7RWTANCNFSM4IXGV3TQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK32IMLZ6UNBT4XMZCLQJ7RWTA5CNFSM4IXGV3T2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLVVXLA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3038?email_source=notifications\u0026email_token=AFTOJK6N2RRGLE7NAIPQKDDQJ7RWTA5CNFSM4IXGV3T2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLVVXLA",
"url": "https://github.com/quicwg/base-drafts/pull/3038?email_source=notifications\u0026email_token=AFTOJK6N2RRGLE7NAIPQKDDQJ7RWTA5CNFSM4IXGV3T2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLVVXLA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d7febe9c7bb9_7b3c3fabfa8cd9681344b6--


From nobody Mon Sep 16 15:59: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 DDABF1200CD for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 15:59: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 MECRRce8Ile3 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 15:59:39 -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 4E5D512006D for <quic-issues@ietf.org>; Mon, 16 Sep 2019 15:59:39 -0700 (PDT)
Date: Mon, 16 Sep 2019 15:59:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568674778; bh=qnBrBeUh0kUsTZiLmHRV+BdSgoL+SRxjkcM7Y7cVY0s=; h=Date:From:To:Subject:From; b=klaFoMgqOVxz5oH34Q0OijObuRY64t409kS8hXQ872a2KwairykGZjrmL7gG2qYYN hMcrdTJHtFM4DbGNxREeoFDqMiV93B1dZeexOyPc9DHAD7EMIzhuO0NmaCZ9Krgmah C8crWVxzh1M59mAHu4ytiMCXymMnPya+eDLIaZyI=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/0ac214-5a16d6@github.com>
Subject: [quicwg/base-drafts] b4ced7: forbid empty NEW_TOKEN frames
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1ITxquN3y2IaQR73KJanYjXsCKY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 22:59:41 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: b4ced77c6526b977192e1daf49f2512773d354c8
      https://github.com/quicwg/base-drafts/commit/b4ced77c6526b977192e1daf49f2512773d354c8
  Author: Marten Seemann <martenseemann@gmail.com>
  Date:   2019-08-17 (Sat, 17 Aug 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  forbid empty NEW_TOKEN frames


  Commit: c22d6ce3bcb1dbbe0164cf7895f229fe8a07f873
      https://github.com/quicwg/base-drafts/commit/c22d6ce3bcb1dbbe0164cf7895f229fe8a07f873
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-13 (Fri, 13 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Add an explicit error code for an empty token


  Commit: 5a16d6737ac3a4533a37b7fc6e13a56c84d3f19b
      https://github.com/quicwg/base-drafts/commit/5a16d6737ac3a4533a37b7fc6e13a56c84d3f19b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-17 (Tue, 17 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #2977 from marten-seemann/forbid-empty-new-token-frames

forbid empty NEW_TOKEN frames


Compare: https://github.com/quicwg/base-drafts/compare/0ac214eaec0b...5a16d6737ac3


From nobody Mon Sep 16 15:59: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 CD1DD120119 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 15:59: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 8wposHuQtwhi for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 15:59: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 4F1A112006D for <quic-issues@ietf.org>; Mon, 16 Sep 2019 15:59:47 -0700 (PDT)
Date: Mon, 16 Sep 2019 15:59:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568674786; bh=UOgMedFhWDuNqRuBPNmmhyOZoLP7499BztiCyfdjpBo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hpmpSaTH+2RJ4/wNzEsBz/XC+COQQ1FE6XVS80eMG5bmorGncLwjAV9GnLapUy0Dz w2bVLM3xMOsY0jjK8vHd98vYZkzIpAIYIcnpjYdn48B3w8vGrBA8wTxweN8xB98z1v 3mUVAPc2hfr4zNxFu4AF9+9Fb2YIS6yvxFSRE5RU=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7ACOVKBDKMR57DDXN3RU4FFEVBNHHBZO6CZY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2978/issue_event/2638053290@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2978@github.com>
References: <quicwg/base-drafts/issues/2978@github.com>
Subject: Re: [quicwg/base-drafts] Empty NEW_TOKEN (#2978)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8013e299191_17b93ffa542cd95c862ea"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6cobS50GXwRM_7bBN_FAk4glyMQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 22:59:49 -0000

----==_mimepart_5d8013e299191_17b93ffa542cd95c862ea
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2978 via #2977.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/2978#event-2638053290
----==_mimepart_5d8013e299191_17b93ffa542cd95c862ea
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="482067150" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2978" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2978/hovercard" href="https://github.com/quicwg/base-drafts/issues/2978">#2978</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="481842854" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2977" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2977/hovercard" href="https://github.com/quicwg/base-drafts/pull/2977">#2977</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/2978?email_source=notifications&amp;email_token=AFTOJKYPOVGFFBZAN43OGHTQKAFWFA5CNFSM4IMVBXJ2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU6X7KQ#event-2638053290">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2BQ7FOGR2CA6FBPV3QKAFWFANCNFSM4IMVBXJQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3SWPYAW6DOHSDDOGDQKAFWFA5CNFSM4IMVBXJ2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU6X7KQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/2978?email_source=notifications\u0026email_token=AFTOJKYPOVGFFBZAN43OGHTQKAFWFA5CNFSM4IMVBXJ2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU6X7KQ#event-2638053290",
"url": "https://github.com/quicwg/base-drafts/issues/2978?email_source=notifications\u0026email_token=AFTOJKYPOVGFFBZAN43OGHTQKAFWFA5CNFSM4IMVBXJ2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU6X7KQ#event-2638053290",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8013e299191_17b93ffa542cd95c862ea--


From nobody Mon Sep 16 15:59: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 4F4DA12006D for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 15:59:50 -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 E16iOsJQCXRi for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 15:59:48 -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 7CA491200CD for <quic-issues@ietf.org>; Mon, 16 Sep 2019 15:59:48 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id C627A6E113E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 15:59:47 -0700 (PDT)
Date: Mon, 16 Sep 2019 15:59:47 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYX5N2TSR44ABURQFN3RU4FHEVBNHHBZOCWUY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2977/issue_event/2638053282@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2977@github.com>
References: <quicwg/base-drafts/pull/2977@github.com>
Subject: Re: [quicwg/base-drafts] forbid empty NEW_TOKEN frames (#2977)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8013e3b6995_461b3fe6214cd960329289"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zunx1EpRT74UJUm02Mhtf7_3pXU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 22:59:50 -0000

----==_mimepart_5d8013e3b6995_461b3fe6214cd960329289
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #2977 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/2977#event-2638053282
----==_mimepart_5d8013e3b6995_461b3fe6214cd960329289
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="481842854" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2977" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/2977/hovercard" href="https://github.com/quicwg/base-drafts/pull/2977">#2977</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/2977?email_source=notifications&amp;email_token=AFTOJK32RUS7SZDIDS53HVDQKAFWHA5CNFSM4IMODKOKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU6X7IQ#event-2638053282">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3KJXRJEWDXDLB2VWLQKAFWHANCNFSM4IMODKOA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7NDO3IZSUALGQSJJLQKAFWHA5CNFSM4IMODKOKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU6X7IQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2977?email_source=notifications\u0026email_token=AFTOJK32RUS7SZDIDS53HVDQKAFWHA5CNFSM4IMODKOKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU6X7IQ#event-2638053282",
"url": "https://github.com/quicwg/base-drafts/pull/2977?email_source=notifications\u0026email_token=AFTOJK32RUS7SZDIDS53HVDQKAFWHA5CNFSM4IMODKOKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU6X7IQ#event-2638053282",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8013e3b6995_461b3fe6214cd960329289--


From nobody Mon Sep 16 16: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 3F1BD12006D for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:00: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 aDeftXexzSEW for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:00:47 -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 5FCF712001E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:00:47 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:00:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568674846; bh=Vw2kBtj87rkCJWvoBECfnDLUZEwlXhxPW7lKD8/jFl4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=a9qg94j9Z/728+KzCLrSeXJAJ6lIeEJhKECC10BjxQaBdFpF3guc3SC03zOWNaYbj GMHnPwnXl98sX9KF+mIDcgmIlHW75MVzdCig3AQySOrzG62dgkXpSubwP8pPvJnvDH ZGby+Vo1/hElDrYNaCDohBS/DQdLKH4uX050LxWU=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2HE2DLAHRZXUYNU553RU4I5EVBNHHBOTHDPI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2171/issue_event/2638054870@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2171@github.com>
References: <quicwg/base-drafts/issues/2171@github.com>
Subject: Re: [quicwg/base-drafts] ChaCha inputs (#2171)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80141e62c2c_28753f9049acd960150114"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zYuFhMyN03bMgP5qeiKhPRBjVb4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:00:49 -0000

----==_mimepart_5d80141e62c2c_28753f9049acd960150114
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2171.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/2171#event-2638054870
----==_mimepart_5d80141e62c2c_28753f9049acd960150114
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="390914938" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2171" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2171/hovercard" href="https://github.com/quicwg/base-drafts/issues/2171">#2171</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/2171?email_source=notifications&amp;email_token=AFTOJK7BSDSBDGB6AWHE7HTQKAFZ5A5CNFSM4GKKU3K2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU6YLVQ#event-2638054870">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZBYCXM45VLGGSTQMTQKAFZ5ANCNFSM4GKKU3KQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3W63YNACD5OQRH3PTQKAFZ5A5CNFSM4GKKU3K2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU6YLVQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/2171?email_source=notifications\u0026email_token=AFTOJK7BSDSBDGB6AWHE7HTQKAFZ5A5CNFSM4GKKU3K2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU6YLVQ#event-2638054870",
"url": "https://github.com/quicwg/base-drafts/issues/2171?email_source=notifications\u0026email_token=AFTOJK7BSDSBDGB6AWHE7HTQKAFZ5A5CNFSM4GKKU3K2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU6YLVQ#event-2638054870",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80141e62c2c_28753f9049acd960150114--


From nobody Mon Sep 16 16:00: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 D533812001E for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:00: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 26D_3HajA-cy for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:00: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 4657312006D for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:00:55 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:00:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568674854; bh=usdTtM5nR5+fL/6VQWvsGSgxUzT9GSh2MIEUw9q4Z3s=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=j+hIYgwjQqgw/+hra2wcjVrNNz7SaGRKSV58h8HBQFTgXMEIAebyawX3YimIOMuGW Poz3BYDBZ9WNFV+VZEjTQyU2BUd7pux2NqTcsNbKJ46Zs7xI85R2lJ//1g5E1NGCej kc7TFE+Jar1i+eoRV0X+d/maBR6VYTQVOFZurWgE=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK67GY3V62R6JDBEZ353RU4JNEVBNHHBOS75IM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2153/issue_event/2638055080@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_5d8014266033f_65073fcc732cd95c8894c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/hz9iTsQcfzNAGie4UveqQDZriFk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:00:57 -0000

----==_mimepart_5d8014266033f_65073fcc732cd95c8894c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2153.

-- 
You are receiving this 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#event-2638055080
----==_mimepart_5d8014266033f_65073fcc732cd95c8894c
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="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>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK56SEMLXZVPAZX45TTQKAF2NA5CNFSM4GKJUFNKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU6YNKA#event-2638055080">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK272IOHPUQ5CDEDQA3QKAF2NANCNFSM4GKJUFNA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2Z6CFH5XNZNEAJ3DTQKAF2NA5CNFSM4GKJUFNKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU6YNKA.gif" height="1" width="1" 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=AFTOJK56SEMLXZVPAZX45TTQKAF2NA5CNFSM4GKJUFNKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU6YNKA#event-2638055080",
"url": "https://github.com/quicwg/base-drafts/issues/2153?email_source=notifications\u0026email_token=AFTOJK56SEMLXZVPAZX45TTQKAF2NA5CNFSM4GKJUFNKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU6YNKA#event-2638055080",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8014266033f_65073fcc732cd95c8894c--


From nobody Mon Sep 16 16: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 1EC6212006D for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:01:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 ws3pZbfVNbRo for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:01: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 4ABC612001E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:01:55 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 8F1136A054D for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:01:54 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:01:54 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/da53f8-01ba6d@github.com>
Subject: [quicwg/base-drafts] 01ba6d: Script updating gh-pages from 5a16d673. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Al-8b5p_MmVVFpjpTLx9ZPnF_5U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:01:57 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 01ba6dcc99b11dd411c197d3adafad8b254f3221
      https://github.com/quicwg/base-drafts/commit/01ba6dcc99b11dd411c197d3adafad8b254f3221
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-16 (Mon, 16 Sep 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 multi-token/draft-ietf-quic-http.html
    R multi-token/draft-ietf-quic-http.txt
    R multi-token/draft-ietf-quic-invariants.html
    R multi-token/draft-ietf-quic-invariants.txt
    R multi-token/draft-ietf-quic-qpack.html
    R multi-token/draft-ietf-quic-qpack.txt
    R multi-token/draft-ietf-quic-recovery.html
    R multi-token/draft-ietf-quic-recovery.txt
    R multi-token/draft-ietf-quic-tls.html
    R multi-token/draft-ietf-quic-tls.txt
    R multi-token/draft-ietf-quic-transport.html
    R multi-token/draft-ietf-quic-transport.txt
    R multi-token/index.html
    R retransmit-new-token/draft-ietf-quic-http.html
    R retransmit-new-token/draft-ietf-quic-http.txt
    R retransmit-new-token/draft-ietf-quic-invariants.html
    R retransmit-new-token/draft-ietf-quic-invariants.txt
    R retransmit-new-token/draft-ietf-quic-qpack.html
    R retransmit-new-token/draft-ietf-quic-qpack.txt
    R retransmit-new-token/draft-ietf-quic-recovery.html
    R retransmit-new-token/draft-ietf-quic-recovery.txt
    R retransmit-new-token/draft-ietf-quic-tls.html
    R retransmit-new-token/draft-ietf-quic-tls.txt
    R retransmit-new-token/draft-ietf-quic-transport.html
    R retransmit-new-token/draft-ietf-quic-transport.txt
    R retransmit-new-token/index.html
    R transport/pa_yes_really_nbo/draft-ietf-quic-http.html
    R transport/pa_yes_really_nbo/draft-ietf-quic-http.txt
    R transport/pa_yes_really_nbo/draft-ietf-quic-invariants.html
    R transport/pa_yes_really_nbo/draft-ietf-quic-invariants.txt
    R transport/pa_yes_really_nbo/draft-ietf-quic-qpack.html
    R transport/pa_yes_really_nbo/draft-ietf-quic-qpack.txt
    R transport/pa_yes_really_nbo/draft-ietf-quic-recovery.html
    R transport/pa_yes_really_nbo/draft-ietf-quic-recovery.txt
    R transport/pa_yes_really_nbo/draft-ietf-quic-tls.html
    R transport/pa_yes_really_nbo/draft-ietf-quic-tls.txt
    R transport/pa_yes_really_nbo/draft-ietf-quic-transport.html
    R transport/pa_yes_really_nbo/draft-ietf-quic-transport.txt
    R transport/pa_yes_really_nbo/index.html

  Log Message:
  -----------
  Script updating gh-pages from 5a16d673. [ci skip]



From nobody Mon Sep 16 16:15: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 C154412006D for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:15: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 6xoI7bTsi7-v for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:15: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 B3FC712001E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:15:41 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:15:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568675740; bh=R58olVZXIlp+YPm8f+V8732J/AfqH/XS87SexEjWpBE=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=NQseC6uPTabMjjmxo8gkApzz4rSW1GEu3K7d8nH8hq9fyaXhazK0mTf9EPwdlAniM edfwm71JhtQsfjCpE7I4RDmzLUbaBNisujo0OBSOQkVyLCNQX7htkDJ+N2AEe+M2ZH JY6yY3d+Pagdd1tdbqPBGlcs6cuJC1c9RS82j0V0=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK35JFK4YNSNGIZLW5F3RVMCZEVBNHHB25V4CU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3039@github.com>
Subject: [quicwg/base-drafts] TLS Early Data is impossible (#3039)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80179c97d0b_113e3fce4f6cd95c1789d0"; 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/LJ7Xb6yVu017GxuktPDcIpmU1Xs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:15:44 -0000

----==_mimepart_5d80179c97d0b_113e3fce4f6cd95c1789d0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Section 4.5 of quic-tls:

Early data within the TLS connection MUST NOT be used.  As it is for
   other TLS application data, a server MUST treat receiving early data
   on the TLS connection as a connection error of type
   PROTOCOL_VIOLATION.

As there is no way to express TLS application data (no record headers!) I believe there is no way for the proposed error condition to occur. I propose we strike the paragraph, though we might mention that this condition is impossible for clarity.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3039
----==_mimepart_5d80179c97d0b_113e3fce4f6cd95c1789d0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Section 4.5 of quic-tls:</p>
<p>Early data within the TLS connection MUST NOT be used.  As it is for<br>
other TLS application data, a server MUST treat receiving early data<br>
on the TLS connection as a connection error of type<br>
PROTOCOL_VIOLATION.</p>
<p>As there is no way to express TLS application data (no record headers!) I believe there is no way for the proposed error condition to occur. I propose we strike the paragraph, though we might mention that this condition is impossible for clarity.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3039?email_source=notifications&amp;email_token=AFTOJK7IBB2AVSCOUC36NPTQKAHRZA5CNFSM4IXIKED2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLWXQKQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5XMYT553L53USD24TQKAHRZANCNFSM4IXIKEDQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK34J7BQBZWKQGYE4KDQKAHRZA5CNFSM4IXIKED2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLWXQKQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3039?email_source=notifications\u0026email_token=AFTOJK7IBB2AVSCOUC36NPTQKAHRZA5CNFSM4IXIKED2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLWXQKQ",
"url": "https://github.com/quicwg/base-drafts/issues/3039?email_source=notifications\u0026email_token=AFTOJK7IBB2AVSCOUC36NPTQKAHRZA5CNFSM4IXIKED2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLWXQKQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80179c97d0b_113e3fce4f6cd95c1789d0--


From nobody Mon Sep 16 16:16: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 624DC12006D for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:16: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 C-oZcpXDF6oF for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:16: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 0BB6212001E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:16:44 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:16:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568675803; bh=AzjaJBvS2Ei/dWE1ZD9/l5nv3Y/zGdIO/OSi3Xh2Y7o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=o9BGrMtGNi6nQgtKi+7oX0CPjExm7/l+34r6+t6aP8479k5DYV5R8Q6jfGGl5J/Kn FSf3JEa4KrsGM5P7Ksb8QZOFfiQjqCkQMdo4ADgOSpLMINhv72NovAciQ9i6R6jU1L hIjxuFdA7qdFCZFZmv3CLoSzWu4UQ+0ykKYUGShE=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5HRRLC6YMPGBV3MHN3RVMGXEVBNHHBZKXY24@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2968/review/288948653@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2968@github.com>
References: <quicwg/base-drafts/pull/2968@github.com>
Subject: Re: [quicwg/base-drafts] Stateless reset too (#2968)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8017db19d07_4d5b3ffc6b6cd96c195529"; 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/jnZ0GP-1Vg-IUCEFntaI0o2DMXk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:16:45 -0000

----==_mimepart_5d8017db19d07_4d5b3ffc6b6cd96c195529
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/2968#pullrequestreview-288948653
----==_mimepart_5d8017db19d07_4d5b3ffc6b6cd96c195529
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/2968?email_source=notifications&amp;email_token=AFTOJK75OPNRVMWHMD7B4O3QKAHVXA5CNFSM4IL2QPEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE4QDLI#pullrequestreview-288948653">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3BLKSBOAS2EYODSRDQKAHVXANCNFSM4IL2QPEA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYCNRVFTKAE4UF75GLQKAHVXA5CNFSM4IL2QPEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE4QDLI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2968?email_source=notifications\u0026email_token=AFTOJK75OPNRVMWHMD7B4O3QKAHVXA5CNFSM4IL2QPEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE4QDLI#pullrequestreview-288948653",
"url": "https://github.com/quicwg/base-drafts/pull/2968?email_source=notifications\u0026email_token=AFTOJK75OPNRVMWHMD7B4O3QKAHVXA5CNFSM4IL2QPEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE4QDLI#pullrequestreview-288948653",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8017db19d07_4d5b3ffc6b6cd96c195529--


From nobody Mon Sep 16 16:17: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 0B8EC1200DF for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:17: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 OBe1IxzuESeB for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:17:54 -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 32E9A1200CD for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:17:54 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:17:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568675873; bh=6ofsR0IenLkj2gbmCWM0bzBVqtL+ea+YHI6+BpEvo7I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CbgzFJeOGOK3cf5UT2iL0nbIKm0sCxHpP0V6uvvDUCUcvI6U0y8GnoEc8qGQEAf8W XDccb4ttOpAZ0Wfz9Qa733cW25zBhzh1VgGCm4caAg1GNEbk4hk2yLpycWg01O0ytE 52QO/Rha5QQpWOB5Ih4pxaWrZ/nIjNSKK3avqLvg=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5JI7EVKB6CF6DIGKF3RVMLDEVBNHHBZKXY24@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2968/c531994110@github.com>
In-Reply-To: <quicwg/base-drafts/pull/2968@github.com>
References: <quicwg/base-drafts/pull/2968@github.com>
Subject: Re: [quicwg/base-drafts] Stateless reset too (#2968)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80182151db8_2bf23fe9074cd9681565ea"; 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/dIdVY2Ux8fnDNbD6QDv2W1kk2iQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:17:56 -0000

----==_mimepart_5d80182151db8_2bf23fe9074cd9681565ea
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi : I expect that the chairs will put out a consensus call soon.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/2968#issuecomment-531994110
----==_mimepart_5d80182151db8_2bf23fe9074cd9681565ea
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 expect that the chairs will put out a consensus call soon.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/2968?email_source=notifications&amp;email_token=AFTOJK3LQ7EKU3HKDKCDFDTQKAH2DA5CNFSM4IL2QPEKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD62ZL7Q#issuecomment-531994110">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYZHZJGU5CVN4L2LP3QKAH2DANCNFSM4IL2QPEA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK53DLJE34Q3LEUQUH3QKAH2DA5CNFSM4IL2QPEKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD62ZL7Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/2968?email_source=notifications\u0026email_token=AFTOJK3LQ7EKU3HKDKCDFDTQKAH2DA5CNFSM4IL2QPEKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD62ZL7Q#issuecomment-531994110",
"url": "https://github.com/quicwg/base-drafts/pull/2968?email_source=notifications\u0026email_token=AFTOJK3LQ7EKU3HKDKCDFDTQKAH2DA5CNFSM4IL2QPEKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD62ZL7Q#issuecomment-531994110",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80182151db8_2bf23fe9074cd9681565ea--


From nobody Mon Sep 16 16: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 62FF812001E for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:35:31 -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 Y0l3DTUZpFko for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:35: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 986281200F3 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:35:29 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id A8DC9660441 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:35:28 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:35:28 -0700
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK627PSRXBO757ZZO5F3RVONBEVBNHHB25D7KM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3037/531997840@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3037@github.com>
References: <quicwg/base-drafts/issues/3037@github.com>
Subject: Re: [quicwg/base-drafts] Require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3037)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d801c409a6ac_55e73fb76b6cd95c62578"; 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/xQvOsU-HYVTbzz2ESq3I-CfLw5s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:35:31 -0000

----==_mimepart_5d801c409a6ac_55e73fb76b6cd95c62578
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Just pasting in the PR text:
> When it comes to error checks for protocol violations, our principle is that easy to implement error checks are REQUIRED. Only error checks that might require a lot of state to perform are optional.
>
>The check that the sequence number retired in a RETIRE_CONNECTION_ID frame is smaller than the highest issued connection ID is a single trivial uint64 comparison. Furthermore, every implementation needs to track the highest issued sequence number anyway, since connection IDs are issued in 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/issues/3037#issuecomment-531997840
----==_mimepart_5d801c409a6ac_55e73fb76b6cd95c62578
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Just pasting in the PR text:</p>
<blockquote>
<p>When it comes to error checks for protocol violations, our principle is that easy to implement error checks are REQUIRED. Only error checks that might require a lot of state to perform are optional.</p>
<p>The check that the sequence number retired in a RETIRE_CONNECTION_ID frame is smaller than the highest issued connection ID is a single trivial uint64 comparison. Furthermore, every implementation needs to track the highest issued sequence number anyway, since connection IDs are issued in order.</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/3037?email_source=notifications&amp;email_token=AFTOJKZPGODE5ZPLR5B7KSDQKAJ4BA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD622JEA#issuecomment-531997840">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3UOMN5DVSJ6G2TGXLQKAJ4BANCNFSM4IXFBLRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK533KH6EO6AXVA35KLQKAJ4BA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD622JEA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJKZPGODE5ZPLR5B7KSDQKAJ4BA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD622JEA#issuecomment-531997840",
"url": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJKZPGODE5ZPLR5B7KSDQKAJ4BA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD622JEA#issuecomment-531997840",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d801c409a6ac_55e73fb76b6cd95c62578--


From nobody Mon Sep 16 16:36: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 665A8120119 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:36: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 k6gHQXQ39-Mo for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:36:37 -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 99029120856 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:36:37 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:36:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568676996; bh=8BegCvXJb7zTxggpLT15ZIUjtXmmRfN5MnQqWEQo3Jo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lElMl6lYOpI2kdfopDoCNZaDxWcQGvmOtBFJza/VYaIu2EL7Yk3b3V1jvZIUshObR cpsnzH1ydfvb5LmzvX904HI93bVy1sNLaUuwttFC3jb4VAzmcEDm/6tHC/dcbrnLD1 ljVnrKy3yXe9xu/d5h3JVdXftAc0PpS7ecD5Q5TQ=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7N4FB4Q3RBQGYAAX53RVORJEVBNHHB25D7KM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3037/531998075@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3037@github.com>
References: <quicwg/base-drafts/issues/3037@github.com>
Subject: Re: [quicwg/base-drafts] Require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3037)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d801c84ad1d8_69253fad9f4cd95c32720"; 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/OrI8fGWbr6-o-PkPpp2fQg2W2UU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:36:39 -0000

----==_mimepart_5d801c84ad1d8_69253fad9f4cd95c32720
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

I agree with the reasoning here and agree that it=E2=80=99s easy enough t=
o check, but didn=E2=80=99t we consider this previously and decide agains=
t it for some reason (reordering or some other issue making this possible=
 to have happen?)?=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/3037#issuecomment-531998075=

----==_mimepart_5d801c84ad1d8_69253fad9f4cd95c32720
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>I agree with the reasoning here and agree that it=E2=80=99s easy enoug=
h to check, but didn=E2=80=99t we consider this previously and decide aga=
inst it for some reason (reordering or some other issue making this possi=
ble to have happen?)?</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/3037?email_source=3Dnotifications&amp;email_token=3D=
AFTOJKZ5BVW3WVBHPFPJ75DQKAKAJA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD622K6Y#issuecomment-531998075">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJK3H6LSPNLLJOOTALILQKAKAJANCNFSM4IXFBLRQ">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJK6O3UPDHMP4KXYPQYDQ=
KAKAJA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD622K6Y.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/3037?email_source=
=3Dnotifications\u0026email_token=3DAFTOJKZ5BVW3WVBHPFPJ75DQKAKAJA5CNFSM4=
IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD622K6=
Y#issuecomment-531998075",=0D
"url": "https://github.com/quicwg/base-drafts/issues/3037?email_source=3D=
notifications\u0026email_token=3DAFTOJKZ5BVW3WVBHPFPJ75DQKAKAJA5CNFSM4IXF=
BLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD622K6Y#i=
ssuecomment-531998075",=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_5d801c84ad1d8_69253fad9f4cd95c32720--


From nobody Mon Sep 16 16:40: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 C5A251200E3 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:40: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 f88IdXvz-w0P for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:40:20 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 856F212001E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:40:20 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:40:19 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568677219; bh=R8rWpKW14jR4ml31c8WqdeqV1T08L9hvBO5W5kCJLPc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=usy8zvI3PaRNKTu+ALHmtKa7y4q0OOXbhNVXpj0gw/mwb6mXjfTaAisKm83h8ido6 3o7dXi7oYtw+z7aVqGyOJYMoQlT4oEjwy5Wqdhj1m/JDk6K6g1wBI7eRvJo1XqHCsh Qrx9BfK9oYPnWu/OHXeP7WkS+Wf4xVjQmSd16mME=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYIO45MSYCZJNVKW653RVO7HEVBNHHB2Z62PY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3029/531998813@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3029@github.com>
References: <quicwg/base-drafts/issues/3029@github.com>
Subject: Re: [quicwg/base-drafts] Packet header fields cannot be omitted (#3029)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d801d6365395_58e13fef2d6cd96c341f9"; 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/kAnbYMNoukqxirqeIK_F-AHW-84>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:40:23 -0000

----==_mimepart_5d801d6365395_58e13fef2d6cd96c341f9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I can't remember now, but we did have an intermediate design where redundant fields were absent. This sentence may have crept in around then. I agree with @dtikhonov : it does seem redundant now.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3029#issuecomment-531998813
----==_mimepart_5d801d6365395_58e13fef2d6cd96c341f9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I can't remember now, but we did have an intermediate design where redundant fields were absent. This sentence may have crept in around then. I agree with <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=4528576" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dtikhonov">@dtikhonov</a> : it does seem redundant now.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3029?email_source=notifications&amp;email_token=AFTOJK2Y6ERIEUBO47LJTYLQKAKOHA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD622QXI#issuecomment-531998813">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3JKKKC3KKWA2M3JNLQKAKOHANCNFSM4IWQL7NA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7VZD2KJH6LS4RF5FLQKAKOHA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD622QXI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3029?email_source=notifications\u0026email_token=AFTOJK2Y6ERIEUBO47LJTYLQKAKOHA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD622QXI#issuecomment-531998813",
"url": "https://github.com/quicwg/base-drafts/issues/3029?email_source=notifications\u0026email_token=AFTOJK2Y6ERIEUBO47LJTYLQKAKOHA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD622QXI#issuecomment-531998813",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d801d6365395_58e13fef2d6cd96c341f9--


From nobody Mon Sep 16 16:42: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 8A52212006E for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:42: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 oDAzPHebcMZc for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:42: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 2697512001E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:42:33 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:42:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568677352; bh=6EAdeCxT3lPPX3LLLz+wtNUgGTDhqjfvRg2DYIcY9D4=; h=Date:From:To:Subject:From; b=CKP/KireT5hmoKndPjOoOjEM0AuSO9rOjQpAREEpAzPsXuGB22ZKSD6yELjp3tAjO L2ByFKna5HOjZ/NITJXw7mWachQd/q3U/k+uW7JNleTENHsyk3PHOGyJsc35rSVBoM RAHeMTndrl/OZv8Pbk1vCOaBMi8qx11JIB1fexYo=
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/5a16d6-297056@github.com>
Subject: [quicwg/base-drafts] 297056: Removes unnecessary sentence about coalesced 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/1BNlMDwRarzSs_h_fe6jDYnNbv8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:42:34 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 297056405a43b291ed0cbba913b06aafd18fbc5b
      https://github.com/quicwg/base-drafts/commit/297056405a43b291ed0cbba913b06aafd18fbc5b
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-16 (Mon, 16 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Removes unnecessary sentence about coalesced packets



From nobody Mon Sep 16 16:43: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 172A612006E for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:43: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 4HohYQrRS7kL for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:43: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 B09A112001E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:43:04 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:43:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568677383; bh=/xhPyKMmw7kAQ49ZE9YS4HO6XII/0Soc9GYJRyNRXK4=; h=Date:From:To:Subject:From; b=r04aOMR/g2jUwzZepwCTCGCdBC+lyRDkDyPY33sb8N9vNlOSW9f4PwHSDaBAyIEEC LnVEvHgVfqIm3q/foKhAdD8FsG3QGHhLYLRaZ2+9ThFbOxU0ZwjHgmYdpOca1bs3oj af4prvrjGx/LvD4cu1JYwh0mRlnjiLoIU4IZv5jc=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/01ba6d-755c3e@github.com>
Subject: [quicwg/base-drafts] 755c3e: Script updating gh-pages from 29705640. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/uubxp35cMTXI2ns6TGIxU7boPN0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:43:06 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 755c3e3fe2bb96693c9287e62bd54b2913bf002a
      https://github.com/quicwg/base-drafts/commit/755c3e3fe2bb96693c9287e62bd54b2913bf002a
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-16 (Mon, 16 Sep 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 29705640. [ci skip]



From nobody Mon Sep 16 16:44: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 EE8E01200E3 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:44:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 cP1nodxf38iQ for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:44: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 8E0F612006E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:44:28 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 1EE65261584 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:44:28 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:44:27 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/close3029/000000-5cbb9c@github.com>
Subject: [quicwg/base-drafts] 5cbb9c: Removes unnecessary sentence about coalesced 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/Ak43ReLjdn9s087h4A_gHEElwSg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:44:30 -0000

  Branch: refs/heads/close3029
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5cbb9c6e226549774d3bf9c8b760956994fca639
      https://github.com/quicwg/base-drafts/commit/5cbb9c6e226549774d3bf9c8b760956994fca639
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-16 (Mon, 16 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Removes unnecessary sentence about coalesced packets



From nobody Mon Sep 16 16: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 A60AD1200E3 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16: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 NOwxOYj_mXs7 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:45:03 -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 BC14812001E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:45:03 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:45:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568677502; bh=XvQ1iVgl9E0/ldF3Y6D+tG+ngJOF4+uLk5Sb2aVk+mc=; h=Date:From:To:Subject:From; b=SROPETjogdfXMkOY/OZmAYlXhIPpAv9d/1gynFBEaV1nUBxXTtWOM6mMPzqX5xm/N DGQksgp4CLneI69MRzHHl/PnVdvKOZn3E7b9wDzqA3BKQLVKAaHP1qDnyuTpgRdXd5 Smgqnwa12pMJvEnxw+Ff7ALbuV6//mZBhBrCF0co=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/755c3e-226872@github.com>
Subject: [quicwg/base-drafts] 226872: Script updating gh-pages from 5cbb9c6e. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ItdKycfd8RAgkBMvB2hfhXdeCsk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:45:06 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 226872bea213548d97b8611a92b0e5b127ef28f8
      https://github.com/quicwg/base-drafts/commit/226872bea213548d97b8611a92b0e5b127ef28f8
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-16 (Mon, 16 Sep 2019)

  Changed paths:
    A close3029/draft-ietf-quic-http.html
    A close3029/draft-ietf-quic-http.txt
    A close3029/draft-ietf-quic-invariants.html
    A close3029/draft-ietf-quic-invariants.txt
    A close3029/draft-ietf-quic-qpack.html
    A close3029/draft-ietf-quic-qpack.txt
    A close3029/draft-ietf-quic-recovery.html
    A close3029/draft-ietf-quic-recovery.txt
    A close3029/draft-ietf-quic-tls.html
    A close3029/draft-ietf-quic-tls.txt
    A close3029/draft-ietf-quic-transport.html
    A close3029/draft-ietf-quic-transport.txt
    A close3029/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 5cbb9c6e. [ci skip]



From nobody Mon Sep 16 16:45: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 86EA112001E for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:45: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 roiJpQnGLJ87 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:45:04 -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 85AC012006E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:45:04 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:45:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568677503; bh=bBK36PHixyU6or+GwM0Y5KQ2iwB09CRCICdc+SMEqpI=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=dwcOXI1WOO+8zZHy6Lpr+2gEq4RsPLNFZKo+Klzh/hyVCWLesJo3JH39epxS2QlJF jQRsAdaEoeQNMBuTJWMvuuaZypwWvW2b7BFXswtChm+MaA99vjmb9Q91lmkBoJ65L4 d77dmM0dNbx6Dw3Kts7vzxWdUN5cKeRw3spHAtbQ=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4VDGJOZTZUAV4SXXV3RVPQ7EVBNHHB25W4UA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3040@github.com>
Subject: [quicwg/base-drafts] Removes unnecessary sentence about coalesced packets (#3040)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d801e7f7edf5_1d753f9ad06cd96411224a"; 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/zsh8KAZkeXVmCB-RmlIge2Xg9Io>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:45:06 -0000

----==_mimepart_5d801e7f7edf5_1d753f9ad06cd96411224a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closes #3029.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3040

-- Commit Summary --

  * Removes unnecessary sentence about coalesced packets

-- File Changes --

    M draft-ietf-quic-transport.md (13)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3040.patch
https://github.com/quicwg/base-drafts/pull/3040.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/3040

----==_mimepart_5d801e7f7edf5_1d753f9ad06cd96411224a
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 #3029.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="493345406" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3029" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3029/hovercard" href="https://github.com/quicwg/base-drafts/issues/3029">#3029</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/3040'>https://github.com/quicwg/base-drafts/pull/3040</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Removes unnecessary sentence about coalesced packets</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3040/files#diff-0">draft-ietf-quic-transport.md</a>
    (13)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3040.patch'>https://github.com/quicwg/base-drafts/pull/3040.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3040.diff'>https://github.com/quicwg/base-drafts/pull/3040.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/3040?email_source=notifications&amp;email_token=AFTOJK3TEENKCY6CBYST2K3QKAK77A5CNFSM4IXIQ272YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLW3SQA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK334WTMZDSOFIM3FVDQKAK77ANCNFSM4IXIQ27Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK52HTA5WXMJNPQSKWDQKAK77A5CNFSM4IXIQ272YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLW3SQA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3040?email_source=notifications\u0026email_token=AFTOJK3TEENKCY6CBYST2K3QKAK77A5CNFSM4IXIQ272YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLW3SQA",
"url": "https://github.com/quicwg/base-drafts/pull/3040?email_source=notifications\u0026email_token=AFTOJK3TEENKCY6CBYST2K3QKAK77A5CNFSM4IXIQ272YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLW3SQA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d801e7f7edf5_1d753f9ad06cd96411224a--


From nobody Mon Sep 16 16:47: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 4855912012E for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:47: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 mwgwVEWWzioL for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:47:03 -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 ACD9712022D for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:47:03 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:47:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568677623; bh=mOG3aFpNn9HLYXMDkODqxvOZHrCytAbaLwerijRLv0k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=trFx9f40fM8iES4cRh7O8jwElbhFBqrcE9OUMQ89wJdoKlzHGuy4AGuzL2FctJgax RUUMaPxg1dGxWvz43/SACj54KzYnkam/lVJSSziC5HvVaV0QUR9tGouWIqk9wl87yt DjHX3PPCijDxi42zZCQtssLK3hbyzYz++sWdoGSY=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5FUYXZIOAMWH3U6EV3RVPYPEVBNHHB25W4UA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3040/review/288956675@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3040@github.com>
References: <quicwg/base-drafts/pull/3040@github.com>
Subject: Re: [quicwg/base-drafts] Removes unnecessary sentence about coalesced packets (#3040)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d801ef71d606_42133fb6926cd968415b2"; 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/PlIbNTpaaBHQSNXTZtPVyvzQLZY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:47:12 -0000

----==_mimepart_5d801ef71d606_42133fb6926cd968415b2
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/3040#pullrequestreview-288956675
----==_mimepart_5d801ef71d606_42133fb6926cd968415b2
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/3040?email_source=notifications&amp;email_token=AFTOJK5HWYGMWVT2TH6GAVTQKALHPA5CNFSM4IXIQ272YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE4SCAY#pullrequestreview-288956675">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4WOD3XTBGP2QM6N73QKALHPANCNFSM4IXIQ27Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4E5DBNDIQXDOTRSFTQKALHPA5CNFSM4IXIQ272YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE4SCAY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3040?email_source=notifications\u0026email_token=AFTOJK5HWYGMWVT2TH6GAVTQKALHPA5CNFSM4IXIQ272YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE4SCAY#pullrequestreview-288956675",
"url": "https://github.com/quicwg/base-drafts/pull/3040?email_source=notifications\u0026email_token=AFTOJK5HWYGMWVT2TH6GAVTQKALHPA5CNFSM4IXIQ272YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE4SCAY#pullrequestreview-288956675",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d801ef71d606_42133fb6926cd968415b2--


From nobody Mon Sep 16 16:47: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 B33411200E3 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:47:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 dxOw2E4jXEaF for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:47: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 03BB812006E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:47:18 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 5DF45A0844 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:47:17 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:47:17 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/297056-2bdf7b@github.com>
Subject: [quicwg/base-drafts] 2bdf7b: Revert "Removes unnecessary sentence about coalesc...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KCVJ_Q5kZH7BjHWQ-lH9sqIB-uM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:47:20 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2bdf7b9a7fb728145f186ba20be74bc78e29b6cd
      https://github.com/quicwg/base-drafts/commit/2bdf7b9a7fb728145f186ba20be74bc78e29b6cd
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-16 (Mon, 16 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Revert "Removes unnecessary sentence about coalesced packets"

This reverts commit 297056405a43b291ed0cbba913b06aafd18fbc5b.



From nobody Mon Sep 16 16:47: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 8A4A2120840 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:47:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 Pgdsrla61tnb for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:47:49 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0DC7112025D for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:47:49 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 65545C60EB9 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:47:48 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:47:48 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/226872-a92485@github.com>
Subject: [quicwg/base-drafts] a92485: Script updating gh-pages from 2bdf7b9a. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/twAwUz6DCObfs6uKC4JYeeQ6UrA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:47:57 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: a924856524377459206172d19affa009ff6a8f2f
      https://github.com/quicwg/base-drafts/commit/a924856524377459206172d19affa009ff6a8f2f
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-16 (Mon, 16 Sep 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 2bdf7b9a. [ci skip]



From nobody Mon Sep 16 16:52: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 240041200E3 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:52: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 uUVx-OjQyJpY for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:52:22 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C33B712001E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:52:22 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:52:21 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568677941; bh=TEp5tKwR4IuEIMk0Dr34l0oDpA19RyaXwzgPl5XfIBo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MG7Cjdvw3mOOWFI653bDOzE5cnFUp93PNHZQJgWKTyAwKdgPLk5vpCgUYnhQ3yO6I jr7bIokihPwH/aoQsjfp3gR2vGa540nq2lY94BDshwKPBkuKtdNTLNuEEKgaLVu+0X yqX2MmzBKC55OKWSN83mkYNgA5HFKJOWkKT1facc=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6OQFJBPRCZDXAQ6UV3RVQMLEVBNHHB22HNKU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3030/532001186@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3030@github.com>
References: <quicwg/base-drafts/issues/3030@github.com>
Subject: Re: [quicwg/base-drafts] Remove Requirement of an Acknowledgement per Round Trip (#3030)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d802035ba50b_18e43fbcb60cd96c10107"; 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/bxWqmQAYqMR_QOciJ6VzdykuN4M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:52:24 -0000

----==_mimepart_5d802035ba50b_18e43fbcb60cd96c10107
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@nibanks's point that the RTT can be smaller than the platform's granularity is a good one. I agree that this text ought to 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/3030#issuecomment-532001186
----==_mimepart_5d802035ba50b_18e43fbcb60cd96c10107
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>'s point that the RTT can be smaller than the platform's granularity is a good one. I agree that this text ought to 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/3030?email_source=notifications&amp;email_token=AFTOJK6CQY4KEKVNXRO352LQKAL3LA5CNFSM4IWR4NR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD623DIQ#issuecomment-532001186">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6ATWB7DVFM43PKG5DQKAL3LANCNFSM4IWR4NRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5QFKGPHCAOUWIFK6TQKAL3LA5CNFSM4IWR4NR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD623DIQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3030?email_source=notifications\u0026email_token=AFTOJK6CQY4KEKVNXRO352LQKAL3LA5CNFSM4IWR4NR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD623DIQ#issuecomment-532001186",
"url": "https://github.com/quicwg/base-drafts/issues/3030?email_source=notifications\u0026email_token=AFTOJK6CQY4KEKVNXRO352LQKAL3LA5CNFSM4IWR4NR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD623DIQ#issuecomment-532001186",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d802035ba50b_18e43fbcb60cd96c10107--


From nobody Mon Sep 16 16:55: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 26147120119 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:55: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 TsMabOKJf6kn for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:55: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 80C3712001E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:55:32 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:55:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568678131; bh=MpI51SWzvro6Da7HACEYwukCBCA4fQjgrNqBq23hg50=; h=Date:From:To:Subject:From; b=X2SEPksNQgTc/+DJWlECNOOMPP529ypKnyqCPsYA3HqbaDco9tckfVGYT8jax3qx4 qv8yanAfJSiETvCSSS9q3mXxW1Iz122vgY6ZB8vOL0gSW5D4UscKDnHXq9Vn7t9/2Q CZlEArsDRwDqGdiTkodKVzjqQsVmMmWhGbzmaOPE=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/2bdf7b-ad3cf3@github.com>
Subject: [quicwg/base-drafts] 5cbb9c: Removes unnecessary sentence about coalesced 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/6kvYEIwJgdWQfGR65AeSwNm4JGg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:55:34 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5cbb9c6e226549774d3bf9c8b760956994fca639
      https://github.com/quicwg/base-drafts/commit/5cbb9c6e226549774d3bf9c8b760956994fca639
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-16 (Mon, 16 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Removes unnecessary sentence about coalesced packets


  Commit: ad3cf316d9679fc5b3e467c74f9278a1bda6a0f7
      https://github.com/quicwg/base-drafts/commit/ad3cf316d9679fc5b3e467c74f9278a1bda6a0f7
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-17 (Tue, 17 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3040 from quicwg/close3029

Removes unnecessary sentence about coalesced packets


Compare: https://github.com/quicwg/base-drafts/compare/2bdf7b9a7fb7...ad3cf316d967


From nobody Mon Sep 16 16:55: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 BC06F12001E for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:55:34 -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 HzoZBrWQbOdR for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:55: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 0602B1200F3 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:55:33 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:55:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568678132; bh=+yVdHzuqkBBZob34VjVKMNiPHaBM8ftEUSaWOrNLLIU=; h=Date:From:To:Subject:From; b=Y6Qy4BxAGT68WJz3r1Z1Tw05h3HnCxTrLhiHo63dvW7EKSx49JQP6wK3UoiYFa3kb +b542KizF1fLCMi3xU/kBgKrAPcMRgpAOkyL9vnX6KW5RknxJ40ynrcZH5nhZO1ppd 6+YWd5y1vkireT/9BvS6QTAaJhXCNXHn/e9h0l0E=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/close3029/5cbb9c-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/09bz8GXqRxZxMMbrTacdA1PbOGM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:55:35 -0000

  Branch: refs/heads/close3029
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon Sep 16 16:55: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 112D2120119 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:55: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 inmUrwY6M7kI for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:55: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 F3F1E12001E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:55:40 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:55:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568678140; bh=HacVUKD66L5N9ibWF6Y8Pn0HFAJPXwMrJSKCiE1bIaA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0oLo0gWGs+LaOnzLdV5XClaMtL/qjU0Khw7gsVPVES2ODcGd0gPFEiKwC60aiEShQ AQOeDr3cPOHaHkig9B72s38PjYy3UYcbqJtT7wgKs0xzGnsvi+rCKT77+caIxeqReR GcOstfcGodFSwVREWJCcCMNxjd9wxIamvC1caZMU=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4Y74PQ5XFNZGUOIZF3RVCWZEVBNHHB2Z62PY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3029/issue_event/2638139274@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3029@github.com>
References: <quicwg/base-drafts/issues/3029@github.com>
Subject: Re: [quicwg/base-drafts] Packet header fields cannot be omitted (#3029)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8020fc2075d_213d3fef0d2cd9681245ad"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/nUVGLdKI_ZmWEOI6w7MdTxpgbgI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:55:43 -0000

----==_mimepart_5d8020fc2075d_213d3fef0d2cd9681245ad
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3029 via #3040.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3029#event-2638139274
----==_mimepart_5d8020fc2075d_213d3fef0d2cd9681245ad
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="493345406" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3029" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3029/hovercard" href="https://github.com/quicwg/base-drafts/issues/3029">#3029</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="494328992" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3040" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3040/hovercard" href="https://github.com/quicwg/base-drafts/pull/3040">#3040</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/3029?email_source=notifications&amp;email_token=AFTOJK4WCP4LPPB5RXZ2IITQKAMHZA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU7M7CQ#event-2638139274">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6WY2HRTAYEP3UAQ7DQKAMHZANCNFSM4IWQL7NA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYXAH5GYN4QQDI2TDDQKAMHZA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU7M7CQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3029?email_source=notifications\u0026email_token=AFTOJK4WCP4LPPB5RXZ2IITQKAMHZA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU7M7CQ#event-2638139274",
"url": "https://github.com/quicwg/base-drafts/issues/3029?email_source=notifications\u0026email_token=AFTOJK4WCP4LPPB5RXZ2IITQKAMHZA5CNFSM4IWQL7NKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU7M7CQ#event-2638139274",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8020fc2075d_213d3fef0d2cd9681245ad--


From nobody Mon Sep 16 16:55: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 A7CB212001E for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:55: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 I2xeLiosZE-q for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:55: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 75F6F1200F3 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:55:41 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:55:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568678140; bh=KF+QVhBwhoWMemFscyJDUW5x+OGzOKeLZjfY7yhxIvA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SBFlO0aFukEkDUZdN0rZyFBBIJOarlExGh32PZUHHK8oJ7Vn6cTrFVH062uDyCOUA R3m5N+ByFjoB6MVo01INRb02qqsDBq/OfEFaYS7kTv+fPVmQfjS+dhCGYIGHPYdMzI sGa9JeKbsDNmOahJBVaqg8jle7v+X1nxueMvrJDQ=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6C2YDHS7UFP32EH253RVCWZEVBNHHB25W4UA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3040/issue_event/2638139268@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3040@github.com>
References: <quicwg/base-drafts/pull/3040@github.com>
Subject: Re: [quicwg/base-drafts] Removes unnecessary sentence about coalesced packets (#3040)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8020fc88d05_24e03fa17cacd96c1522ba"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6n78-ArNpwfMVIW85CWKD889a7A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:55:45 -0000

----==_mimepart_5d8020fc88d05_24e03fa17cacd96c1522ba
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3040 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/3040#event-2638139268
----==_mimepart_5d8020fc88d05_24e03fa17cacd96c1522ba
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="494328992" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3040" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3040/hovercard" href="https://github.com/quicwg/base-drafts/pull/3040">#3040</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/3040?email_source=notifications&amp;email_token=AFTOJK4OZYY7PY47QR62TBTQKAMHZA5CNFSM4IXIQ272YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU7M7BA#event-2638139268">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK77F4S7IBJDJ7J36OTQKAMHZANCNFSM4IXIQ27Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK26GT3YBUVEXQW72TTQKAMHZA5CNFSM4IXIQ272YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU7M7BA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3040?email_source=notifications\u0026email_token=AFTOJK4OZYY7PY47QR62TBTQKAMHZA5CNFSM4IXIQ272YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU7M7BA#event-2638139268",
"url": "https://github.com/quicwg/base-drafts/pull/3040?email_source=notifications\u0026email_token=AFTOJK4OZYY7PY47QR62TBTQKAMHZA5CNFSM4IXIQ272YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU7M7BA#event-2638139268",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8020fc88d05_24e03fa17cacd96c1522ba--


From nobody Mon Sep 16 16:56: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 5810312001E for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:56:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 XJw5tUu8E6Aq for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 16:56: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 D72841200F3 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:56:10 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 2288D1C169F for <quic-issues@ietf.org>; Mon, 16 Sep 2019 16:56:10 -0700 (PDT)
Date: Mon, 16 Sep 2019 16:56:10 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/a92485-003d18@github.com>
Subject: [quicwg/base-drafts] 003d18: Script updating gh-pages from ad3cf316. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/hhPb7yyD0kmyDHGc74lacnMxNc8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Sep 2019 23:56:12 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 003d1812d8b21112d0424320ee0b8e00fb946d88
      https://github.com/quicwg/base-drafts/commit/003d1812d8b21112d0424320ee0b8e00fb946d88
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-16 (Mon, 16 Sep 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 ad3cf316. [ci skip]



From nobody Mon Sep 16 17:07: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 11979120119 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:07: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 JrDVF2a4Wf5a for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:07: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 7C7A812001E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 17:07:46 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id BDEE76E0451 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 17:07:45 -0700 (PDT)
Date: Mon, 16 Sep 2019 17:07:45 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYFVO5X3OLNKDDW55V3RVSGDEVBNHHB2WTA7U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3020/532004505@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3020@github.com>
References: <quicwg/base-drafts/issues/3020@github.com>
Subject: Re: [quicwg/base-drafts] Transport parameter registry is too constraining for innovation (#3020)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8023d1ae3c9_20f53fd6e36cd9601944a8"; 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/jcpAucMQsPHftiaLItk_CX6-vwI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 00:07:48 -0000

----==_mimepart_5d8023d1ae3c9_20f53fd6e36cd9601944a8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I agree with @ianswett, and I don't think we need to go varint here, that seems like a bit of an overkill. How about reserving 4096 codepoints for spec required, and leaving the rest (2^16 - 2^12 = 61440) for experimentation:
[0x0000 - 0x0fff] uses the RFC8128 Specification Required policy
[0x1000 - 0xffff] is reserved for experimentation

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3020#issuecomment-532004505
----==_mimepart_5d8023d1ae3c9_20f53fd6e36cd9601944a8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I agree with <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>, and I don't think we need to go varint here, that seems like a bit of an overkill. How about reserving 4096 codepoints for spec required, and leaving the rest (2^16 - 2^12 = 61440) for experimentation:<br>
[0x0000 - 0x0fff] uses the RFC8128 Specification Required policy<br>
[0x1000 - 0xffff] is reserved for experimentation</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications&amp;email_token=AFTOJK2CIJ5C6S5EBYFDSVLQKANVDA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6235GI#issuecomment-532004505">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6MLBPAPPDALES36MLQKANVDANCNFSM4IVYZAZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6SME3AJHC2526MFCTQKANVDA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6235GI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJK2CIJ5C6S5EBYFDSVLQKANVDA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6235GI#issuecomment-532004505",
"url": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJK2CIJ5C6S5EBYFDSVLQKANVDA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6235GI#issuecomment-532004505",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8023d1ae3c9_20f53fd6e36cd9601944a8--


From nobody Mon Sep 16 17: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 688C812012E for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:13: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 6ELwMpefybzF for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:13: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 DF46A12001E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 17:13:12 -0700 (PDT)
Date: Mon, 16 Sep 2019 17:13:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568679192; bh=SQFGxPc07gGQ4DcxRfiKfT/y5gFiBAMZSTrDxCmmTho=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=AVK7Es9RYGnAzFidy2VIbtvVDToU15+yskxrC9gmvnyvCzXB8knTsqsfESI+r9j7y ukA8vNlqtfNOaxvpopuJzu8yjSMpAKq/rtsr1EXCDEOgkMzlo/OLh5VpGnepPbjxEg KksDT101i/V2XPsBsx/X0BpAPSKafkh0k7eRt7AE=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4WNNAELWODHEE2FH53RVS2REVBNHHB22URPQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3032/532005595@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3032@github.com>
References: <quicwg/base-drafts/issues/3032@github.com>
Subject: Re: [quicwg/base-drafts] Detectable Stateless Resets (#3032)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8025185c4a_78083f8dd68cd96423526d"; 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/GQhJm2tYUu7S2rwFEaSr7tzAU0M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 00:13:14 -0000

----==_mimepart_5d8025185c4a_78083f8dd68cd96423526d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

What @DavidSchinazi said. The goal here was to avoid trivial signatures that get used by middleboxes so that connections are resilient to a third party that injects a StatelessReset-like 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/3032#issuecomment-532005595
----==_mimepart_5d8025185c4a_78083f8dd68cd96423526d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>What <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> said. The goal here was to avoid trivial signatures that get used by middleboxes so that connections are resilient to a third party that injects a StatelessReset-like 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/3032?email_source=notifications&amp;email_token=AFTOJK2JLOCOYAOTQBTP6ILQKAOJRA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD624FWY#issuecomment-532005595">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2K36VDELV7MJM4CT3QKAOJRANCNFSM4IWUGA6Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4QJLVVBNEKFGADJV3QKAOJRA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD624FWY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications\u0026email_token=AFTOJK2JLOCOYAOTQBTP6ILQKAOJRA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD624FWY#issuecomment-532005595",
"url": "https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications\u0026email_token=AFTOJK2JLOCOYAOTQBTP6ILQKAOJRA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD624FWY#issuecomment-532005595",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8025185c4a_78083f8dd68cd96423526d--


From nobody Mon Sep 16 17: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 682C11200E7 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17: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 9qtyP0Hd_UZO for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:15:43 -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 76ADC12001E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 17:15:43 -0700 (PDT)
Date: Mon, 16 Sep 2019 17:15:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568679342; bh=qzuVxvaAnRNM8oFrTOlVbzEGMnYl/IJGyE82HC6PxiY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EinAcO2/MES0pVGsaygz/hNRivJKiV+jCOAtJnM1B5bOp2Don+ZLqt/QJnWxhol9b htWppOOU1bA8klbTOGQosJsr8kvn2DmvAbwRK7fJ0qVuKoZMqNjD/RkV1I5E2mCzKX pKG/VF+2DXzHqfJzSPLfzfqwe08XvKKRyBsNKjDs=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK52PZJZIMFBOQ74IVV3RVMC5EVBNHHB2WTA7U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3020/532006119@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3020@github.com>
References: <quicwg/base-drafts/issues/3020@github.com>
Subject: Re: [quicwg/base-drafts] Transport parameter registry is too constraining for innovation (#3020)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8025ae9f437_62a13f8286ecd964635e5"; 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/nbJbpYu6IA0uqJZUnrmYfmfxkS8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 00:15:45 -0000

----==_mimepart_5d8025ae9f437_62a13f8286ecd964635e5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Apart from the fact that we want to limit changes at this stage, are there arguments against going varint here? It feels pretty odd that many transport parameters are TLVs where T and L are 16bit and V is varint.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3020#issuecomment-532006119
----==_mimepart_5d8025ae9f437_62a13f8286ecd964635e5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Apart from the fact that we want to limit changes at this stage, are there arguments against going varint here? It feels pretty odd that many transport parameters are TLVs where T and L are 16bit and V is varint.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications&amp;email_token=AFTOJKY34CPA3X4FI4MELADQKAOS5A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD624JZY#issuecomment-532006119">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5OU7S5I2R7OCQMNUTQKAOS5ANCNFSM4IVYZAZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZDMMQ73KJO64CULRLQKAOS5A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD624JZY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJKY34CPA3X4FI4MELADQKAOS5A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD624JZY#issuecomment-532006119",
"url": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJKY34CPA3X4FI4MELADQKAOS5A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD624JZY#issuecomment-532006119",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8025ae9f437_62a13f8286ecd964635e5--


From nobody Mon Sep 16 17:22: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 5DA4412013B for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:22:41 -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 N3rBzMbMgI4Q for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:22: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 B5E5812001E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 17:22:39 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id BC87F6A11DE for <quic-issues@ietf.org>; Mon, 16 Sep 2019 17:22:38 -0700 (PDT)
Date: Mon, 16 Sep 2019 17:22:38 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZHLAAOUUETZJG4DJV3RVF35EVBNHHB25D7KM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3037/532007471@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3037@github.com>
References: <quicwg/base-drafts/issues/3037@github.com>
Subject: Re: [quicwg/base-drafts] Require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3037)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80274eadb5d_2d773f7e89acd964104476"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/aPr7oA30tnTX55OSbdA72mc-CnU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 00:22:41 -0000

----==_mimepart_5d80274eadb5d_2d773f7e89acd964104476
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Reordering won't change what the maximum sequence number is.  That should be tracked.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3037#issuecomment-532007471
----==_mimepart_5d80274eadb5d_2d773f7e89acd964104476
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Reordering won't change what the maximum sequence number is.  That should be tracked.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications&amp;email_token=AFTOJK27ZUGVGR2NA7RL7KTQKAPM5A5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD624ULY#issuecomment-532007471">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5YQWAJ3URKOFAJE53QKAPM5ANCNFSM4IXFBLRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7HJWYIF5L2F3M2KKTQKAPM5A5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD624ULY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK27ZUGVGR2NA7RL7KTQKAPM5A5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD624ULY#issuecomment-532007471",
"url": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK27ZUGVGR2NA7RL7KTQKAPM5A5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD624ULY#issuecomment-532007471",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80274eadb5d_2d773f7e89acd964104476--


From nobody Mon Sep 16 17:23: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 067F81200D6 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:23:34 -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 5w6ON9DvfSTm for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:23: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 AE6B312001E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 17:23:32 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id D54C3520475 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 17:23:31 -0700 (PDT)
Date: Mon, 16 Sep 2019 17:23:31 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/ad3cf3-926438@github.com>
Subject: [quicwg/base-drafts] ae5ada: Add PR 3007 to transport-23 changelog
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/hGPft0u4utU4iecoJnAuu2QsW60>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 00:23:34 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: ae5ada2777e727c4f4ba1b3a7c7de81d72073e35
      https://github.com/quicwg/base-drafts/commit/ae5ada2777e727c4f4ba1b3a7c7de81d72073e35
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>
  Date:   2019-09-16 (Mon, 16 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Add PR 3007 to transport-23 changelog


  Commit: 9264380046d3fdde3593ded1a4fee9f3bbdc5f6d
      https://github.com/quicwg/base-drafts/commit/9264380046d3fdde3593ded1a4fee9f3bbdc5f6d
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-17 (Tue, 17 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3038 from dtikhonov/201909161608-add-3007-to-transport-23-changelog

Add PR 3007 to transport-23 changelog


Compare: https://github.com/quicwg/base-drafts/compare/ad3cf316d967...9264380046d3


From nobody Mon Sep 16 17: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 80FC712013B for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:23:38 -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 SAZw-1uef-wj for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:23: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 0DF561200D6 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 17:23:37 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 653C06E0DAE for <quic-issues@ietf.org>; Mon, 16 Sep 2019 17:23:36 -0700 (PDT)
Date: Mon, 16 Sep 2019 17:23:36 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6MZRNZVIGASS7JM353RVF7REVBNHHB25NN2Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3038/c532007629@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3038@github.com>
References: <quicwg/base-drafts/pull/3038@github.com>
Subject: Re: [quicwg/base-drafts] Add PR 3007 to transport-23 changelog (#3038)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d802788561d3_3ab33fd68bacd964168fd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NrJUWPaepQSPCjh75c5SagXKaHg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 00:23:39 -0000

----==_mimepart_5d802788561d3_3ab33fd68bacd964168fd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

That was an editorial change, but this is harmless.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3038#issuecomment-532007629
----==_mimepart_5d802788561d3_3ab33fd68bacd964168fd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>That was an editorial change, but this is harmless.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3038?email_source=notifications&amp;email_token=AFTOJK255MW5XFRR6XDRYW3QKAPQRA5CNFSM4IXGV3T2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD624VTI#issuecomment-532007629">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7PJ6BIONMDREEOKI3QKAPQRANCNFSM4IXGV3TQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3TDVMOPNM6KV5RAGDQKAPQRA5CNFSM4IXGV3T2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD624VTI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3038?email_source=notifications\u0026email_token=AFTOJK255MW5XFRR6XDRYW3QKAPQRA5CNFSM4IXGV3T2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD624VTI#issuecomment-532007629",
"url": "https://github.com/quicwg/base-drafts/pull/3038?email_source=notifications\u0026email_token=AFTOJK255MW5XFRR6XDRYW3QKAPQRA5CNFSM4IXGV3T2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD624VTI#issuecomment-532007629",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d802788561d3_3ab33fd68bacd964168fd--


From nobody Mon Sep 16 17:23: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 ABF4A12026E for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:23:42 -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 VzmwT12UZiwb for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17: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 10491120144 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 17:23:41 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 6C98D8C0C4B for <quic-issues@ietf.org>; Mon, 16 Sep 2019 17:23:40 -0700 (PDT)
Date: Mon, 16 Sep 2019 17:23:40 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4NEELYXWPIZWKY2R53RVF7ZEVBNHHB25NN2Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3038/issue_event/2638179125@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3038@github.com>
References: <quicwg/base-drafts/pull/3038@github.com>
Subject: Re: [quicwg/base-drafts] Add PR 3007 to transport-23 changelog (#3038)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80278c5deb9_617e3f8b36ccd96c911e8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/pyA5btbRSdq-3MwX-fDgnGfdPKs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 00:23:49 -0000

----==_mimepart_5d80278c5deb9_617e3f8b36ccd96c911e8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3038 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/3038#event-2638179125
----==_mimepart_5d80278c5deb9_617e3f8b36ccd96c911e8
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="494251478" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3038" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3038/hovercard" href="https://github.com/quicwg/base-drafts/pull/3038">#3038</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/3038?email_source=notifications&amp;email_token=AFTOJK3BNG5R3V3U7BHMNPDQKAPQZA5CNFSM4IXGV3T2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU7WWNI#event-2638179125">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5GW3GM4Q37WQFX243QKAPQZANCNFSM4IXGV3TQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2VMIUP7NB67JCMOD3QKAPQZA5CNFSM4IXGV3T2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU7WWNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3038?email_source=notifications\u0026email_token=AFTOJK3BNG5R3V3U7BHMNPDQKAPQZA5CNFSM4IXGV3T2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU7WWNI#event-2638179125",
"url": "https://github.com/quicwg/base-drafts/pull/3038?email_source=notifications\u0026email_token=AFTOJK3BNG5R3V3U7BHMNPDQKAPQZA5CNFSM4IXGV3T2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTU7WWNI#event-2638179125",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80278c5deb9_617e3f8b36ccd96c911e8--


From nobody Mon Sep 16 17: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 CC688120843 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:24:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 rC6hTC-DFbLA for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:24: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 9A602120144 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 17:24:07 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id F23696A0A94 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 17:24:06 -0700 (PDT)
Date: Mon, 16 Sep 2019 17:24:06 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/003d18-0cfb89@github.com>
Subject: [quicwg/base-drafts] 0cfb89: Script updating gh-pages from 92643800. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/W46VnAbX1EH3fnXPlzMrHReFdhc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 00:24:13 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0cfb89933c373542a4387ad437a01817f90a060b
      https://github.com/quicwg/base-drafts/commit/0cfb89933c373542a4387ad437a01817f90a060b
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-17 (Tue, 17 Sep 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 92643800. [ci skip]



From nobody Mon Sep 16 17: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 D30C0120144 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:28:44 -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 zM47M43umXyH for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:28:43 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 274D812081D for <quic-issues@ietf.org>; Mon, 16 Sep 2019 17:28:43 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 885AAA0094 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 17:28:42 -0700 (PDT)
Date: Mon, 16 Sep 2019 17:28:42 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7Z2ZO4CL4Q23BKCYV3RVUUVEVBNHHB23NCUU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3035/review/288966354@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3035@github.com>
References: <quicwg/base-drafts/pull/3035@github.com>
Subject: Re: [quicwg/base-drafts] Allow PING at every encryption level (#3035)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8028ba78c68_1fa73fa7df2cd96048548"; 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/WCK3TOAbhfa-fkfGghPFFSmdFMU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 00:28:52 -0000

----==_mimepart_5d8028ba78c68_1fa73fa7df2cd96048548
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/3035#pullrequestreview-288966354
----==_mimepart_5d8028ba78c68_1fa73fa7df2cd96048548
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/3035?email_source=notifications&amp;email_token=AFTOJK2YQPBW6EU5KRJ5N5LQKAQDVA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE4UNUQ#pullrequestreview-288966354">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2XETUIW2JVQ77ITMLQKAQDVANCNFSM4IW2F4YA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK44VEZ674IWGMU6RALQKAQDVA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE4UNUQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3035?email_source=notifications\u0026email_token=AFTOJK2YQPBW6EU5KRJ5N5LQKAQDVA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE4UNUQ#pullrequestreview-288966354",
"url": "https://github.com/quicwg/base-drafts/pull/3035?email_source=notifications\u0026email_token=AFTOJK2YQPBW6EU5KRJ5N5LQKAQDVA5CNFSM4IW2F4YKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE4UNUQ#pullrequestreview-288966354",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8028ba78c68_1fa73fa7df2cd96048548--


From nobody Mon Sep 16 17:30: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 691D412011E for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:30:41 -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 WjK2u3vho67R for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:30:40 -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 B35A41200D6 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 17:30:39 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 6A34C261565 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 17:30:39 -0700 (PDT)
Date: Mon, 16 Sep 2019 17:30:39 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5HEAT57SE63OUHYW53RVU37EVBNHHB23E46Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3033/c532009003@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3033@github.com>
References: <quicwg/base-drafts/pull/3033@github.com>
Subject: Re: [quicwg/base-drafts] Suggest sending empty CRYPTO frames in Initial/Handshake packets (#3033)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80292f23e1c_56ff3fb4132cd95c131584"; 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/3t4cMlNlSJP5FDVxuG6Jjx4_bMg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 00:30:41 -0000

----==_mimepart_5d80292f23e1c_56ff3fb4132cd95c131584
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I don't recall us wanting to disallow PING frames in Initial/Handshake packets. #3035 looks good to me.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3033#issuecomment-532009003
----==_mimepart_5d80292f23e1c_56ff3fb4132cd95c131584
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I don't recall us wanting to disallow PING frames in Initial/Handshake packets. <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="493724325" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3035" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3035/hovercard" href="https://github.com/quicwg/base-drafts/pull/3035">#3035</a> looks good to me.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3033?email_source=notifications&amp;email_token=AFTOJK5FZ75ZWS452YRGVWLQKAQK7A5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD625AKY#issuecomment-532009003">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK63MLYOVTCF276XTVTQKAQK7ANCNFSM4IWYAGQQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7RZXPHAQSHE7HXZ73QKAQK7A5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD625AKY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3033?email_source=notifications\u0026email_token=AFTOJK5FZ75ZWS452YRGVWLQKAQK7A5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD625AKY#issuecomment-532009003",
"url": "https://github.com/quicwg/base-drafts/pull/3033?email_source=notifications\u0026email_token=AFTOJK5FZ75ZWS452YRGVWLQKAQK7A5CNFSM4IWYAGQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD625AKY#issuecomment-532009003",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80292f23e1c_56ff3fb4132cd95c131584--


From nobody Mon Sep 16 17:33: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 8081412011E for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:33: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 rfUHPCGMyX5p for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 17:33:37 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0ACEB12001E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 17:33:37 -0700 (PDT)
Date: Mon, 16 Sep 2019 17:33:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568680416; bh=yngVR46SWlnmjb5dS/SA3jJMYXUE+CM96irmgcg2nZQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UHQ0pcEZwlKkfay59e4ACz6pF7VSZ/S2sHNCqefkSdNZUf8lucRJ0EcLTj79mGFlj NqNBjYGYUJ1Ncv7hLuUtc8Mp6dNFMHG7MvlFOA2YUZwIne6LmNJxrHhdk2U2uVSNYQ aW53Kf3UW6bpwfW7Y4EXM0++BEmHUtEeZ6WD9Bf0=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYMPWP7ZUUIIR3A3VN3RVVHBEVBNHHB24NSYI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3036/review/288967287@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3036@github.com>
References: <quicwg/base-drafts/pull/3036@github.com>
Subject: Re: [quicwg/base-drafts] require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3036)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8029e0425e0_6dfd3fa3b18cd964984cd"; 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/8rvnsFhcaRTgw4klmBUYCatP6W0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 00:33:38 -0000

----==_mimepart_5d8029e0425e0_6dfd3fa3b18cd964984cd
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/3036#pullrequestreview-288967287
----==_mimepart_5d8029e0425e0_6dfd3fa3b18cd964984cd
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/3036?email_source=notifications&amp;email_token=AFTOJK5FMLML76L3SE46NN3QKAQWBA5CNFSM4IXA5PZKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE4UU5Y#pullrequestreview-288967287">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3NDAFBXI7MYY5CC3LQKAQWBANCNFSM4IXA5PZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYA3S5ARDQP5FIQACTQKAQWBA5CNFSM4IXA5PZKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE4UU5Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3036?email_source=notifications\u0026email_token=AFTOJK5FMLML76L3SE46NN3QKAQWBA5CNFSM4IXA5PZKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE4UU5Y#pullrequestreview-288967287",
"url": "https://github.com/quicwg/base-drafts/pull/3036?email_source=notifications\u0026email_token=AFTOJK5FMLML76L3SE46NN3QKAQWBA5CNFSM4IXA5PZKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE4UU5Y#pullrequestreview-288967287",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8029e0425e0_6dfd3fa3b18cd964984cd--


From nobody Mon Sep 16 18:09: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 D92F3120144 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 18:09:06 -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 7tkHLBbxQmHP for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 18:09: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 973601200D6 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 18:09:05 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 32399121234 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 18:09:05 -0700 (PDT)
Date: Mon, 16 Sep 2019 18:09:04 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7VAQO2D5R3XVIPZDF3RVZMBEVBNHHB25ZKZQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3041@github.com>
Subject: [quicwg/base-drafts] kMaxDatagramSize should use the maximum packet size of the connection (#3041)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d803230e09a9_3f5b3fba8aecd964107554"; 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/q4p9YtjYhi0MtldLqxol3PdkCsE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 01:09:07 -0000

----==_mimepart_5d803230e09a9_3f5b3fba8aecd964107554
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

kMaxDatagramSize is currently set to the minimum packet size of 1200 byte=
s. It should be set instead to the max packet size used by the connection=
, which is discussed in Section 14.1 of the transport draft.=0D
=0D
(Issue raised by Timo V=C3=B6lker on the mailing list.)=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/3041=

----==_mimepart_5d803230e09a9_3f5b3fba8aecd964107554
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>kMaxDatagramSize is currently set to the minimum packet size of 1200 b=
ytes. It should be set instead to the max packet size used by the connect=
ion, which is discussed in Section 14.1 of the transport draft.</p>=0D
<p>(Issue raised by Timo V=C3=B6lker on the mailing list.)</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/3041?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK2LETEDC7XFJKTOT7TQKAU3BA5CNFSM4IXJC7M2YY3PNVWWK3TUL52HS4DFUVEXG43VM=
WVGG33NNVSW45C7NFSM4HLXFLGA">view it on GitHub</a>, or <a href=3D"https:/=
/github.com/notifications/unsubscribe-auth/AFTOJKZHTMTUSCHPRM4FSLDQKAU3BA=
NCNFSM4IXJC7MQ">mute the thread</a>.<img src=3D"https://github.com/notifi=
cations/beacon/AFTOJKZ75JHGLTB273UFGE3QKAU3BA5CNFSM4IXJC7M2YY3PNVWWK3TUL5=
2HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLXFLGA.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/3041?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK2LETEDC7XFJKTOT7TQKAU3BA5CNFSM4=
IXJC7M2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLXFLGA",=0D
"url": "https://github.com/quicwg/base-drafts/issues/3041?email_source=3D=
notifications\u0026email_token=3DAFTOJK2LETEDC7XFJKTOT7TQKAU3BA5CNFSM4IXJ=
C7M2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLXFLGA",=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_5d803230e09a9_3f5b3fba8aecd964107554--


From nobody Mon Sep 16 18:14: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 95E281200D6 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 18:14:13 -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 3JQH8cDmXMje for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 18:14:12 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ED66F1200FB for <quic-issues@ietf.org>; Mon, 16 Sep 2019 18:14:11 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 1763E2C0AAD for <quic-issues@ietf.org>; Mon, 16 Sep 2019 18:14:11 -0700 (PDT)
Date: Mon, 16 Sep 2019 18:14:11 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5CHESDYTYCYLAIGKV3RVZ7HEVBNHHB2WTA7U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3020/532016998@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3020@github.com>
References: <quicwg/base-drafts/issues/3020@github.com>
Subject: Re: [quicwg/base-drafts] Transport parameter registry is too constraining for innovation (#3020)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8033637d9d_78193f8b6e4cd96471531"; 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/jC7XCrrNydfD0tDDu26ljFJmH-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: Tue, 17 Sep 2019 01:14:14 -0000

----==_mimepart_5d8033637d9d_78193f8b6e4cd96471531
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I don't have much of an argument here besides the general principle that we shouldn't provide more flexibility than is necessary. I don't think it's odd that T is fixed-length while the V is varint, FWIW.

If no implementations are bothered by the change to varint, then it's a bit of a bikeshed. Let's see if other implementers are bothered.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3020#issuecomment-532016998
----==_mimepart_5d8033637d9d_78193f8b6e4cd96471531
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I don't have much of an argument here besides the general principle that we shouldn't provide more flexibility than is necessary. I don't think it's odd that T is fixed-length while the V is varint, FWIW.</p>
<p>If no implementations are bothered by the change to varint, then it's a bit of a bikeshed. Let's see if other implementers are bothered.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications&amp;email_token=AFTOJK5JYKF6XSZ3HDIXPX3QKAVOHA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6266ZQ#issuecomment-532016998">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6Z4YB2ZODUS66SBA3QKAVOHANCNFSM4IVYZAZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7IQCBLDQZPUQNNTW3QKAVOHA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6266ZQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJK5JYKF6XSZ3HDIXPX3QKAVOHA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6266ZQ#issuecomment-532016998",
"url": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJK5JYKF6XSZ3HDIXPX3QKAVOHA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6266ZQ#issuecomment-532016998",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8033637d9d_78193f8b6e4cd96471531--


From nobody Mon Sep 16 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 926D61200E7 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 18:15:51 -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 9RXqV1kefBzF for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 18:15: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 257B11200D6 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 18:15:50 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 4568E8C0C38 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 18:15:49 -0700 (PDT)
Date: Mon, 16 Sep 2019 18:15:49 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5WZSTVCMXQI4UDRJF3RV2FLEVBNHHB25D7KM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3037/532017311@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3037@github.com>
References: <quicwg/base-drafts/issues/3037@github.com>
Subject: Re: [quicwg/base-drafts] Require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3037)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8033c5364e9_7e973fe174ccd96410324f"; 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/EgTEwlw5mwmliEgKDNzRsmaQ_X8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 01:15:52 -0000

----==_mimepart_5d8033c5364e9_7e973fe174ccd96410324f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I agree with Martin(and Marten).  This is similar to the rule that a peer can't ACK a packet number you've never 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/issues/3037#issuecomment-532017311
----==_mimepart_5d8033c5364e9_7e973fe174ccd96410324f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I agree with Martin(and Marten).  This is similar to the rule that a peer can't ACK a packet number you've never 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/issues/3037?email_source=notifications&amp;email_token=AFTOJK6AIK72I752MRQHVGTQKAVULA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD627BHY#issuecomment-532017311">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3JYHJD5S5A7RNCIRLQKAVULANCNFSM4IXFBLRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZDOUI5WR4MMOZVRLLQKAVULA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD627BHY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK6AIK72I752MRQHVGTQKAVULA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD627BHY#issuecomment-532017311",
"url": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK6AIK72I752MRQHVGTQKAVULA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD627BHY#issuecomment-532017311",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8033c5364e9_7e973fe174ccd96410324f--


From nobody Mon Sep 16 18:17: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 8F7DF120026 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 18:17:57 -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 qEZLyM73POIH for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 18:17: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 441D71200E7 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 18:17:55 -0700 (PDT)
Received: from github-lowworker-19d82f6.ac4-iad.github.net (github-lowworker-19d82f6.ac4-iad.github.net [10.52.16.75]) by smtp.github.com (Postfix) with ESMTP id 6BD77A03B3 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 18:17:54 -0700 (PDT)
Date: Mon, 16 Sep 2019 18:17:54 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5WJ6OMR6GAMTI2KLN3RV2NFEVBNHHB25D7KM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3037/532017665@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3037@github.com>
References: <quicwg/base-drafts/issues/3037@github.com>
Subject: Re: [quicwg/base-drafts] Require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3037)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8034425d7df_a663fe162ecd96051417"; 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/7bybd9O_oQMLwD-_6Ngh6AWlHBI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 01:17:57 -0000

----==_mimepart_5d8034425d7df_a663fe162ecd96051417
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@erickinnear : I have a vague recollection, but I think that might have been about tracking this at the receiver of NEW_CONNECTION_ID frames. This issue is about what the corresponding sender does when the receiver indicates a CID that the sender never 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/issues/3037#issuecomment-532017665
----==_mimepart_5d8034425d7df_a663fe162ecd96051417
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=32474881" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/erickinnear">@erickinnear</a> : I have a vague recollection, but I think that might have been about tracking this at the receiver of NEW_CONNECTION_ID frames. This issue is about what the corresponding sender does when the receiver indicates a CID that the sender never 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/issues/3037?email_source=notifications&amp;email_token=AFTOJK7KYCZFOWZNXG4WHM3QKAV4FA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD627EAI#issuecomment-532017665">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6RHCWP4N3IDI5QELLQKAV4FANCNFSM4IXFBLRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYUF5RC56XVTJ3BNBDQKAV4FA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD627EAI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK7KYCZFOWZNXG4WHM3QKAV4FA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD627EAI#issuecomment-532017665",
"url": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK7KYCZFOWZNXG4WHM3QKAV4FA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD627EAI#issuecomment-532017665",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8034425d7df_a663fe162ecd96051417--


From nobody Mon Sep 16 19: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 15FD51200E7 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 19:09: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_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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id T2yS-XHAi7o3 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 19:09: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 58DF81200D7 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 19:09:11 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 6C28A520444 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 19:09:10 -0700 (PDT)
Date: Mon, 16 Sep 2019 19:09:10 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYQZPIS5PPNJH44UC53RWANNEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/532027451@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8040465da2d_63243fbbcc0cd95c69586"; 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/eRSEelR0OnXq3aM6s4e1FL1AQxY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 02:09:13 -0000

----==_mimepart_5d8040465da2d_63243fbbcc0cd95c69586
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Jon Stone's work [[1](http://conferences.sigcomm.org/sigcomm/2000/conf/paper/sigcomm2000-9-1.pdf)] showed that the internet is actually quite terrible and that the TCP/UDP checksums are super important. From the conclusion section: "Our trace data shows that the TCP and UDP checksums are catching a signicant number of persistent errors. In practice, the checksum is being asked to detect an error every few thousand packets." Of course, this data is dated, but given the  I wouldn't be surprised if the numbers today were not too far off from the ones he reports.

@kazuho's right that we cannot rely on the UDP checksum being on in all circumstances, but I would guess that it'll be on in _most_ deployments. That said, the failure rate can be high enough to be bothersome in specific deployments. I would argue that it's a valuable goal to ensure that QUIC is protected against trivial corruption in all deployments.

I agree with @RyanAtGoogle that encrypting this packet is aligned with how we do things anyways, and there's additional benefit in being able to remove the ODCID. It is a bit late in the process, but this is a fairly isolated and local change.

I would argue that unless there's a strong reason to _not_ encrypt this packet, we should encrypt it. 

1: http://conferences.sigcomm.org/sigcomm/2000/conf/paper/sigcomm2000-9-1.pdf

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-532027451
----==_mimepart_5d8040465da2d_63243fbbcc0cd95c69586
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Jon Stone's work [<a href="http://conferences.sigcomm.org/sigcomm/2000/conf/paper/sigcomm2000-9-1.pdf" rel="nofollow">1</a>] showed that the internet is actually quite terrible and that the TCP/UDP checksums are super important. From the conclusion section: "Our trace data shows that the TCP and UDP checksums are catching a signicant number of persistent errors. In practice, the checksum is being asked to detect an error every few thousand packets." Of course, this data is dated, but given the  I wouldn't be surprised if the numbers today were not too far off from the ones he reports.</p>
<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>'s right that we cannot rely on the UDP checksum being on in all circumstances, but I would guess that it'll be on in <em>most</em> deployments. That said, the failure rate can be high enough to be bothersome in specific deployments. I would argue that it's a valuable goal to ensure that QUIC is protected against trivial corruption in all deployments.</p>
<p>I agree with <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=19561162" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/RyanAtGoogle">@RyanAtGoogle</a> that encrypting this packet is aligned with how we do things anyways, and there's additional benefit in being able to remove the ODCID. It is a bit late in the process, but this is a fairly isolated and local change.</p>
<p>I would argue that unless there's a strong reason to <em>not</em> encrypt this packet, we should encrypt it.</p>
<p>1: <a href="http://conferences.sigcomm.org/sigcomm/2000/conf/paper/sigcomm2000-9-1.pdf" rel="nofollow">http://conferences.sigcomm.org/sigcomm/2000/conf/paper/sigcomm2000-9-1.pdf</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/3014?email_source=notifications&amp;email_token=AFTOJK3PPTWC2IZE6Y6L7C3QKA34NA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD63BQOY#issuecomment-532027451">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3QM24SXKMKQPZ4F2DQKA34NANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6PZCUAD5WUBYC2IJTQKA34NA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD63BQOY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK3PPTWC2IZE6Y6L7C3QKA34NA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD63BQOY#issuecomment-532027451",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK3PPTWC2IZE6Y6L7C3QKA34NA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD63BQOY#issuecomment-532027451",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8040465da2d_63243fbbcc0cd95c69586--


From nobody Mon Sep 16 19:34: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 8927512001E for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 19:34:45 -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 YX8y-YdgFLlG for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 19:34: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 BFA3A120018 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 19:34:43 -0700 (PDT)
Date: Mon, 16 Sep 2019 19:34:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568687682; bh=uhAD0zZvpEs2Rqrwyx+pGQo3l/LDnw9H9/NEFj6Edtk=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=g5dEFXxjsPbIMxaUlKyWCfFkciB8elMoNBU1DhSvOFIt3Y1FDXfI4+1AyLyuAYiUv iX37eGNa9f6WoYf91AGph0N8hzKAF0XTBN2tUb2zKfYWmtsl1BZJcA5PKdSf86qNCA QudqIcO0EK7cpvQlHEvZvf4HvXiZiIy7dyin7zPg=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7EMQ2U4R74NFCRKSF3RV4MFEVBNHHB253VH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3042@github.com>
Subject: [quicwg/base-drafts] use the FRAME_ENCONDING_ERROR for errors in frame encoding (#3042)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d804642d44fc_71753fe2d70cd95c1458f9"; 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/nxUam7UctbXbbAFBqpLopXdJADM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 02:34:46 -0000

----==_mimepart_5d804642d44fc_71753fe2d70cd95c1458f9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Fixes #3027.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3042

-- Commit Summary --

  * use the FRAME_ENCONDING_ERROR for errors in frame encoding

-- File Changes --

    M draft-ietf-quic-transport.md (11)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3042.patch
https://github.com/quicwg/base-drafts/pull/3042.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/3042

----==_mimepart_5d804642d44fc_71753fe2d70cd95c1458f9
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 #3027.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="493128958" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3027" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3027/hovercard" href="https://github.com/quicwg/base-drafts/issues/3027">#3027</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/3042'>https://github.com/quicwg/base-drafts/pull/3042</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>use the FRAME_ENCONDING_ERROR for errors in frame encoding</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3042/files#diff-0">draft-ietf-quic-transport.md</a>
    (11)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3042.patch'>https://github.com/quicwg/base-drafts/pull/3042.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3042.diff'>https://github.com/quicwg/base-drafts/pull/3042.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/3042?email_source=notifications&amp;email_token=AFTOJKYUFTNFINOUQ4K4QTTQKA64FA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLXOU7Q">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZSGRYLXYQNEXOQZKDQKA64FANCNFSM4IXJVA2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7E3GPAMZMXSVQDE73QKA64FA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLXOU7Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJKYUFTNFINOUQ4K4QTTQKA64FA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLXOU7Q",
"url": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJKYUFTNFINOUQ4K4QTTQKA64FA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLXOU7Q",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d804642d44fc_71753fe2d70cd95c1458f9--


From nobody Mon Sep 16 20:17: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 9E1281200FB for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 20:17:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.596
X-Spam-Level: 
X-Spam-Status: No, score=-1.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, GB_SUMOF=5, 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 o3jTrqhtAe9v for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 20:17: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 AD601120018 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 20:17:39 -0700 (PDT)
Date: Mon, 16 Sep 2019 20:17:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568690258; bh=Myb8z3OKXwxuOwocjyS5XsPeffRZidHUTQ+myxB8jgA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rwYYHjKWnttyUwiVYA7k7CUZcdZDZThCnYxSuxKI+lv8mZZT10JBdB4r41sc/od8A PDvZYwjW6H/zO0X5voWz+7kBUrbwaLJ8c08YKMEcolaQMsjFaTUnLtRG6IY5ld0RWk AMWklRqt5FIG9V8O8YM2brF72y3MsozN8SBvq+aE=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7CRDZCTNDMCC2IDJF3RV2MFEVBNHHB253VH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3042/review/288999898@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3042@github.com>
References: <quicwg/base-drafts/pull/3042@github.com>
Subject: Re: [quicwg/base-drafts] use the FRAME_ENCONDING_ERROR for errors in frame encoding (#3042)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d805052355aa_3c4e3fab470cd9605564d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KgysAAokquyA9qaTI_i3ZzsPsyw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 03:17:41 -0000

----==_mimepart_5d805052355aa_3c4e3fab470cd9605564d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson approved this pull request.

LGTM, with maybe a note on the flow control one.

> @@ -5061,7 +5060,7 @@ The first byte in the stream has an offset of 0.  The largest offset delivered
 on a stream - the sum of the offset and data length - cannot exceed 2^62-1, as
 it is not possible to provide flow control credit for that data.  Receipt of a
 frame that exceeds this limit will be treated as a connection error of type
-FLOW_CONTROL_ERROR.
+FRAME_ENCODING_ERROR.

This creates an extra check that some implementations might not bother to implement.  Treating this as a flow control error is also fine.  I note that this doesn't use a MUST either...

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3042#pullrequestreview-288999898
----==_mimepart_5d805052355aa_3c4e3fab470cd9605564d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> approved this pull request.</p>

<p>LGTM, with maybe a note on the flow control one.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3042#discussion_r324965184">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -5061,7 +5060,7 @@ The first byte in the stream has an offset of 0.  The largest offset delivered
 on a stream - the sum of the offset and data length - cannot exceed 2^62-1, as
 it is not possible to provide flow control credit for that data.  Receipt of a
 frame that exceeds this limit will be treated as a connection error of type
-FLOW_CONTROL_ERROR.
+FRAME_ENCODING_ERROR.
</pre>
<p>This creates an extra check that some implementations might not bother to implement.  Treating this as a flow control error is also fine.  I note that this doesn't use a MUST either...</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications&amp;email_token=AFTOJK7L3UFOK6EBE4A74H3QKBD5FA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE44TWQ#pullrequestreview-288999898">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYJX5HJDGOXCKETDTTQKBD5FANCNFSM4IXJVA2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5XHPNU4GNVNFDHIE3QKBD5FA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE44TWQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJK7L3UFOK6EBE4A74H3QKBD5FA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE44TWQ#pullrequestreview-288999898",
"url": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJK7L3UFOK6EBE4A74H3QKBD5FA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE44TWQ#pullrequestreview-288999898",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d805052355aa_3c4e3fab470cd9605564d--


From nobody Mon Sep 16 21:26: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 044291200D7 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 21:26:20 -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 S_vpkZFepQU3 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 21:26:18 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2FA6912006D for <quic-issues@ietf.org>; Mon, 16 Sep 2019 21:26:18 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 3BBED6E00A3 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 21:26:17 -0700 (PDT)
Date: Mon, 16 Sep 2019 21:26:17 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/no-appdata/000000-136cd0@github.com>
Subject: [quicwg/base-drafts] 629996: Remove 'given'
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/pIT0pvmHUKEZRJUJT34HRNlverk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 04:26:20 -0000

  Branch: refs/heads/no-appdata
  Home:   https://github.com/quicwg/base-drafts
  Commit: 629996a63ee2e859713ab40a80dce300f302b8b5
      https://github.com/quicwg/base-drafts/commit/629996a63ee2e859713ab40a80dce300f302b8b5
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-17 (Tue, 17 Sep 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Remove 'given'


  Commit: 136cd0176ad9815a42f7ae6fb484956efcc74873
      https://github.com/quicwg/base-drafts/commit/136cd0176ad9815a42f7ae6fb484956efcc74873
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-17 (Tue, 17 Sep 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  QUIC only carries TLS handshake and alert


Compare: https://github.com/quicwg/base-drafts/compare/629996a63ee2%5E...136cd0176ad9


From nobody Mon Sep 16 21:26: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 BF8ED1200D7 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 21:26:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 PJVOQv6YhlXq for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 21:26: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 76BE512006D for <quic-issues@ietf.org>; Mon, 16 Sep 2019 21:26:46 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id CF97052049E for <quic-issues@ietf.org>; Mon, 16 Sep 2019 21:26:45 -0700 (PDT)
Date: Mon, 16 Sep 2019 21:26:45 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/0cfb89-4f33e0@github.com>
Subject: [quicwg/base-drafts] 4f33e0: Script updating gh-pages from 136cd017. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6FiA_OZVFBNOZlL_9Vo9X9pJkNo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 04:26:48 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4f33e0b5231aa1abfb4ac309d230eb1f71599c4f
      https://github.com/quicwg/base-drafts/commit/4f33e0b5231aa1abfb4ac309d230eb1f71599c4f
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-17 (Tue, 17 Sep 2019)

  Changed paths:
    M index.html
    A no-appdata/draft-ietf-quic-http.html
    A no-appdata/draft-ietf-quic-http.txt
    A no-appdata/draft-ietf-quic-invariants.html
    A no-appdata/draft-ietf-quic-invariants.txt
    A no-appdata/draft-ietf-quic-qpack.html
    A no-appdata/draft-ietf-quic-qpack.txt
    A no-appdata/draft-ietf-quic-recovery.html
    A no-appdata/draft-ietf-quic-recovery.txt
    A no-appdata/draft-ietf-quic-tls.html
    A no-appdata/draft-ietf-quic-tls.txt
    A no-appdata/draft-ietf-quic-transport.html
    A no-appdata/draft-ietf-quic-transport.txt
    A no-appdata/index.html

  Log Message:
  -----------
  Script updating gh-pages from 136cd017. [ci skip]



From nobody Mon Sep 16 21: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 8A0F11200FB for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 21:48:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.897
X-Spam-Level: 
X-Spam-Status: No, score=-7.897 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, 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 783Uu2bi_SMx for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 21:48: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 1831C120100 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 21:48:31 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 1123D1C0068 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 21:48:30 -0700 (PDT)
Date: Mon, 16 Sep 2019 21:48:30 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY3FZQY7AYSJ6TMFKF3RWFA3EVBNHHB257M5U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3043@github.com>
Subject: [quicwg/base-drafts] TLS application data isn't possible (#3043)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80659e1505_21733fa8868cd96c691b6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yBeOaj2e77KUVzvDxaRblUKfM3w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 04:48:32 -0000

----==_mimepart_5d80659e1505_21733fa8868cd96c691b6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This is a point @martinduke makes in #3039, but it probably pays to make it more clearly.  This was possible in earlier iterations of the draft, so it&#39;s worth stamping out residual mentions.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3043

-- Commit Summary --

  * Remove &#39;given&#39;
  * QUIC only carries TLS handshake and alert

-- File Changes --

    M draft-ietf-quic-tls.md (21)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3043.patch
https://github.com/quicwg/base-drafts/pull/3043.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/3043

----==_mimepart_5d80659e1505_21733fa8868cd96c691b6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This is a point <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> makes in <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="494320661" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3039" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3039/hovercard" href="https://github.com/quicwg/base-drafts/issues/3039">#3039</a>, but it probably pays to make it more clearly.  This was possible in earlier iterations of the draft, so it's worth stamping out residual mentions.</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/3043'>https://github.com/quicwg/base-drafts/pull/3043</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Remove &#39;given&#39;</li>
  <li>QUIC only carries TLS handshake and alert</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3043/files#diff-0">draft-ietf-quic-tls.md</a>
    (21)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3043.patch'>https://github.com/quicwg/base-drafts/pull/3043.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3043.diff'>https://github.com/quicwg/base-drafts/pull/3043.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/3043?email_source=notifications&amp;email_token=AFTOJK6FL4FQX6RYMX6D44DQKBOR5A5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLX5TWQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZBYHED6R4DGXMEFADQKBOR5ANCNFSM4IXKSJ7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYZS3I4PO35OQGUM63QKBOR5A5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLX5TWQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJK6FL4FQX6RYMX6D44DQKBOR5A5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLX5TWQ",
"url": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJK6FL4FQX6RYMX6D44DQKBOR5A5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLX5TWQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d80659e1505_21733fa8868cd96c691b6--


From nobody Mon Sep 16 22:41: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 70E84120098 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 22:41:48 -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 WfKQz4UYuHfb for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 22:41:46 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8B7F612007C for <quic-issues@ietf.org>; Mon, 16 Sep 2019 22:41:46 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 8FE9E2C00AE for <quic-issues@ietf.org>; Mon, 16 Sep 2019 22:41:45 -0700 (PDT)
Date: Mon, 16 Sep 2019 22:41:45 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2CYXIE7PEOPZOTNA53RWZKTEVBNHHB25D7KM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3037/532067681@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3037@github.com>
References: <quicwg/base-drafts/issues/3037@github.com>
Subject: Re: [quicwg/base-drafts] Require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3037)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d807219819bd_182e3fbc460cd964114277"; 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/9O36ZHjcBq8RAJtx_quvAqN1VDQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 05:41:49 -0000

----==_mimepart_5d807219819bd_182e3fbc460cd964114277
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think there might be issues with checking for _any_ invalid sequence number, but the maximum should be easy. But if that is the case, what is the point of specifically checking for max and not a host of other bad cases? 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/3037#issuecomment-532067681
----==_mimepart_5d807219819bd_182e3fbc460cd964114277
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I think there might be issues with checking for <em>any</em> invalid sequence number, but the maximum should be easy. But if that is the case, what is the point of specifically checking for max and not a host of other bad cases? 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/3037?email_source=notifications&amp;email_token=AFTOJK3YF6KNPP7QDSHNQVLQKBUZTA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD63LKYI#issuecomment-532067681">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYN7VFFSLJPXNN7RX3QKBUZTANCNFSM4IXFBLRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZS5NYGVAB4CFN3T33QKBUZTA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD63LKYI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK3YF6KNPP7QDSHNQVLQKBUZTA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD63LKYI#issuecomment-532067681",
"url": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK3YF6KNPP7QDSHNQVLQKBUZTA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD63LKYI#issuecomment-532067681",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d807219819bd_182e3fbc460cd964114277--


From nobody Mon Sep 16 23:11: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 8159B120145 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 23:11:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.897
X-Spam-Level: 
X-Spam-Status: No, score=-7.897 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, 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 kp845lDNbf6I for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 23:11: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 8C6071200E9 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 23:11:52 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id BDE065210C2 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 23:11:51 -0700 (PDT)
Date: Mon, 16 Sep 2019 23:11:51 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4GSJ6CSIZWVNIUHT53RWV2PEVBNHHB26CFR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3044@github.com>
Subject: [quicwg/base-drafts] Clarify why post-handshake client auth is banned (#3044)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d807927aedff_59b93fddcc0cd96c1326bc"; 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/1ciEcNMtvFOnzmDQ_UVh4LcNk_0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 06:11:54 -0000

----==_mimepart_5d807927aedff_59b93fddcc0cd96c1326bc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Add short explanation and reference to explain why QUIC-TLS bans the use of post-handshake client authentidaction.

Fixes #2367.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3044

-- Commit Summary --

  * Clarify why post-handshake client auth is banned

-- File Changes --

    M draft-ietf-quic-tls.md (9)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3044.patch
https://github.com/quicwg/base-drafts/pull/3044.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/3044

----==_mimepart_5d807927aedff_59b93fddcc0cd96c1326bc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Add short explanation and reference to explain why QUIC-TLS bans the use of post-handshake client authentidaction.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #2367.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="402339490" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2367" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2367/hovercard" href="https://github.com/quicwg/base-drafts/issues/2367">#2367</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/3044'>https://github.com/quicwg/base-drafts/pull/3044</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Clarify why post-handshake client auth is banned</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3044/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/3044.patch'>https://github.com/quicwg/base-drafts/pull/3044.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3044.diff'>https://github.com/quicwg/base-drafts/pull/3044.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/3044?email_source=notifications&amp;email_token=AFTOJK7KBGB2FTU7E2AMHZ3QKBYKPA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLYIWHQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK52SZAKODEZB2IHY2LQKBYKPANCNFSM4IXLGKXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5XSW3S5CAOHDVTWPLQKBYKPA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLYIWHQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3044?email_source=notifications\u0026email_token=AFTOJK7KBGB2FTU7E2AMHZ3QKBYKPA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLYIWHQ",
"url": "https://github.com/quicwg/base-drafts/pull/3044?email_source=notifications\u0026email_token=AFTOJK7KBGB2FTU7E2AMHZ3QKBYKPA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLYIWHQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d807927aedff_59b93fddcc0cd96c1326bc--


From nobody Mon Sep 16 23:26: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 D84D112008C for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 23:26:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 tdr2VB3yvFQt for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 23:26: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 944EB120058 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 23:26:34 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id C607DC602CD for <quic-issues@ietf.org>; Mon, 16 Sep 2019 23:26:33 -0700 (PDT)
Date: Mon, 16 Sep 2019 23:26:33 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5IGK6HOP3NRKC7SCV3RWXRTEVBNHHB257M5U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3043/review/289040833@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3043@github.com>
References: <quicwg/base-drafts/pull/3043@github.com>
Subject: Re: [quicwg/base-drafts] TLS application data isn't possible (#3043)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d807c99b702f_14db3fb0b96cd96011645d"; 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/HxkK5ioFN7uW8FVu400GRVpVxso>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 06:26:36 -0000

----==_mimepart_5d807c99b702f_14db3fb0b96cd96011645d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

marten-seemann commented on this pull request.



>  
 QUIC takes the unprotected content of TLS handshake records as the content of
 CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles
 CRYPTO frames into QUIC packets, which are protected using QUIC packet
 protection.
 
+QUIC is only capable of conveying TLS handshake records in CRYPTO frames.  TLS
+alerts are turned into QUIC CONNECTION_CLOSE error codes; see {{tls-errors}}.
+TLS application data and other message types cannot be carried by QUIC at any
+encryption level and can be treated as an error if they are received.

How would it look like if they were received?
Wasn't @martinduke's point that QUIC doesn't even provide a way to send them at all, since there are no record 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/pull/3043#pullrequestreview-289040833
----==_mimepart_5d807c99b702f_14db3fb0b96cd96011645d
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/3043#discussion_r324998149">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;  
 QUIC takes the unprotected content of TLS handshake records as the content of
 CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles
 CRYPTO frames into QUIC packets, which are protected using QUIC packet
 protection.
 
+QUIC is only capable of conveying TLS handshake records in CRYPTO frames.  TLS
+alerts are turned into QUIC CONNECTION_CLOSE error codes; see {{tls-errors}}.
+TLS application data and other message types cannot be carried by QUIC at any
+encryption level and can be treated as an error if they are received.
</pre>
<p>How would it look like if they were received?<br>
Wasn't <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>'s point that QUIC doesn't even provide a way to send them at all, since there are no record headers?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications&amp;email_token=AFTOJKZ6EKM2YOZNHFTZIP3QKB2BTA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5GTQI#pullrequestreview-289040833">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZOWVXLVGLNPF6ETDDQKB2BTANCNFSM4IXKSJ7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZJ3464C3KWHVZZO7TQKB2BTA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5GTQI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJKZ6EKM2YOZNHFTZIP3QKB2BTA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5GTQI#pullrequestreview-289040833",
"url": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJKZ6EKM2YOZNHFTZIP3QKB2BTA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5GTQI#pullrequestreview-289040833",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d807c99b702f_14db3fb0b96cd96011645d--


From nobody Mon Sep 16 23:27: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 0504C120098 for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 23:27:33 -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 iS6z3mgjBVgn for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 23: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 A156F120058 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 23:27:31 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 0760A1C0767 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 23:27:31 -0700 (PDT)
Date: Mon, 16 Sep 2019 23:27:30 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6HJTFER5IPTVIWAI53RWXVFEVBNHHB26CFR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3044/review/289041189@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3044@github.com>
References: <quicwg/base-drafts/pull/3044@github.com>
Subject: Re: [quicwg/base-drafts] Clarify why post-handshake client auth is banned (#3044)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d807cd2eb878_597e3fddcc0cd96c124479"; 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/fND0W9OkEly61G1yZL5a_WXuhHs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 06:27:33 -0000

----==_mimepart_5d807cd2eb878_597e3fddcc0cd96c124479
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/3044#pullrequestreview-289041189
----==_mimepart_5d807cd2eb878_597e3fddcc0cd96c124479
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/3044?email_source=notifications&amp;email_token=AFTOJK5NO7RSV5NZT7SN3GTQKB2FFA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5GWJI#pullrequestreview-289041189">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZUIL3MUVIVNWGFVELQKB2FFANCNFSM4IXLGKXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5ODLOAQNFAN5BPZ7DQKB2FFA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5GWJI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3044?email_source=notifications\u0026email_token=AFTOJK5NO7RSV5NZT7SN3GTQKB2FFA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5GWJI#pullrequestreview-289041189",
"url": "https://github.com/quicwg/base-drafts/pull/3044?email_source=notifications\u0026email_token=AFTOJK5NO7RSV5NZT7SN3GTQKB2FFA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5GWJI#pullrequestreview-289041189",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d807cd2eb878_597e3fddcc0cd96c124479--


From nobody Mon Sep 16 23: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 4136D12004E for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 23:55: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 8rrH3pnJhtWH for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 23:55:51 -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 6408B120018 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 23:55:51 -0700 (PDT)
Date: Mon, 16 Sep 2019 23:55:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568703350; bh=UUk2BTLeQsD42D1swYhO4llxabRKvA71Hug715IQm9I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=sNaKdCg0mcwJt8KliUZppowZK7dR+0Kl3WUk1UyOatNAsfOAgpr8EUndd3DiEoIr+ ieRA+E2CVk3fb+DMSdTgTPpt5B5gkJPS4LQEM9z5TKLqPsJnN+PY/9sg3EjhAKBUbJ jNUMI/6Rkf04ORywIvkAsLgBdKYl9TFlZs70+XlI=
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/3042/push/4041887584@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3042@github.com>
References: <quicwg/base-drafts/pull/3042@github.com>
Subject: Re: [quicwg/base-drafts] Use the FRAME_ENCODING_ERROR for errors in frame encoding (#3042)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8083767eb10_35f33fa0a06cd95c1008b4"; 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/-tU5dG3w1BWsXXDII-qezhlX6v4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 06:55:53 -0000

----==_mimepart_5d8083767eb10_35f33fa0a06cd95c1008b4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann pushed 1 commit.

c56dd27788254e1cc6574a3e50a77f16b1fccabd  also allow FLOW_CONTROL_ERRORs for stream overflows


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3042/files/62278ed1a7d4fcac38f88f669339282128ddeb30..c56dd27788254e1cc6574a3e50a77f16b1fccabd

----==_mimepart_5d8083767eb10_35f33fa0a06cd95c1008b4
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/c56dd27788254e1cc6574a3e50a77f16b1fccabd">c56dd27</a>  also allow FLOW_CONTROL_ERRORs for stream overflows</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3042/files/62278ed1a7d4fcac38f88f669339282128ddeb30..c56dd27788254e1cc6574a3e50a77f16b1fccabd?email_source=notifications&amp;email_token=AFTOJKYHGOB5ARELPXMUWFLQKB5PNA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMJTGQZTGOKQOVZWQIZUGA2DCOBYG42TQNA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3T3YLB7BPNMOEOLFLQKB5PNANCNFSM4IXJVA2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4BYH35Y3QZKRHVOELQKB5PNA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMJTGQZTGOKQOVZWQIZUGA2DCOBYG42TQNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3042/files/62278ed1a7d4fcac38f88f669339282128ddeb30..c56dd27788254e1cc6574a3e50a77f16b1fccabd?email_source=notifications\u0026email_token=AFTOJKYHGOB5ARELPXMUWFLQKB5PNA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMJTGQZTGOKQOVZWQIZUGA2DCOBYG42TQNA",
"url": "https://github.com/quicwg/base-drafts/pull/3042/files/62278ed1a7d4fcac38f88f669339282128ddeb30..c56dd27788254e1cc6574a3e50a77f16b1fccabd?email_source=notifications\u0026email_token=AFTOJKYHGOB5ARELPXMUWFLQKB5PNA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMJTGQZTGOKQOVZWQIZUGA2DCOBYG42TQNA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8083767eb10_35f33fa0a06cd95c1008b4--


From nobody Mon Sep 16 23:56: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 8FB3D12004E for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 23:56:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.382
X-Spam-Level: 
X-Spam-Status: No, score=-1.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, 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 9fgRpA4QuJCG for <quic-issues@ietfa.amsl.com>; Mon, 16 Sep 2019 23:56: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 6B5D6120018 for <quic-issues@ietf.org>; Mon, 16 Sep 2019 23:56:15 -0700 (PDT)
Date: Mon, 16 Sep 2019 23:56:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568703374; bh=a0xpElC1tRCsIy+QcRzBwJYtu2V4u8kDK7nKAiQ0+qo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lZXoQHlV4q0ctiZejkzClY2xpsuEIHJj2sQTEudmUx9s9B0B83Az/IiNKztgKpGYp 6GAmKiCgB+KigeSNZ+xsNqSovP9uKzPupbNF4rqpEOabFVzYeWyia+KRskQdZFqLhY OIH0eZOUCuUCuE91M4NF6O/LjxnbgbuE0X45ujUk=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3OOB2LTMMHFULSUKV3RW3A5EVBNHHB253VH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3042/review/289051941@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3042@github.com>
References: <quicwg/base-drafts/pull/3042@github.com>
Subject: Re: [quicwg/base-drafts] Use the FRAME_ENCODING_ERROR for errors in frame encoding (#3042)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80838e6d54d_69553fba3a4cd96477956"; 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/VXrV82w5sTVrXy5WrafSakEDsL8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 06:56:17 -0000

----==_mimepart_5d80838e6d54d_69553fba3a4cd96477956
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

marten-seemann commented on this pull request.



> @@ -5061,7 +5060,7 @@ The first byte in the stream has an offset of 0.  The largest offset delivered
 on a stream - the sum of the offset and data length - cannot exceed 2^62-1, as
 it is not possible to provide flow control credit for that data.  Receipt of a
 frame that exceeds this limit will be treated as a connection error of type
-FLOW_CONTROL_ERROR.
+FRAME_ENCODING_ERROR.

Resolved by requiring one of those two.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3042#discussion_r325006667
----==_mimepart_5d80838e6d54d_69553fba3a4cd96477956
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/3042#discussion_r325006667">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -5061,7 +5060,7 @@ The first byte in the stream has an offset of 0.  The largest offset delivered
 on a stream - the sum of the offset and data length - cannot exceed 2^62-1, as
 it is not possible to provide flow control credit for that data.  Receipt of a
 frame that exceeds this limit will be treated as a connection error of type
-FLOW_CONTROL_ERROR.
+FRAME_ENCODING_ERROR.
</pre>
<p>Resolved by requiring one of those two.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications&amp;email_token=AFTOJK3IUIH7WXFNHYEBT53QKB5Q5A5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5JKJI#discussion_r325006667">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK53JJNP3WGZMYW5PLLQKB5Q5ANCNFSM4IXJVA2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3CCBSHY2BJIBJINQLQKB5Q5A5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5JKJI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJK3IUIH7WXFNHYEBT53QKB5Q5A5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5JKJI#discussion_r325006667",
"url": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJK3IUIH7WXFNHYEBT53QKB5Q5A5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5JKJI#discussion_r325006667",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80838e6d54d_69553fba3a4cd96477956--


From nobody Tue Sep 17 00:45: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 9C4E8120048 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 00:45:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 yb_PFukMqMJB for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 00:45:36 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 61C04120018 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 00:45:36 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 8C319A11AC for <quic-issues@ietf.org>; Tue, 17 Sep 2019 00:45:35 -0700 (PDT)
Date: Tue, 17 Sep 2019 00:45:35 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7LB7DNPZUOHVDE4XF3RXAZ7EVBNHHB257M5U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3043/review/289074217@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3043@github.com>
References: <quicwg/base-drafts/pull/3043@github.com>
Subject: Re: [quicwg/base-drafts] TLS application data isn't possible (#3043)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d808f1f7b720_ef63fbb418cd96c2036e5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/p5ebI6-qY0b4Kq4Bi-lBawc7JzQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 07:45:40 -0000

----==_mimepart_5d808f1f7b720_ef63fbb418cd96c2036e5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.



>  
 QUIC takes the unprotected content of TLS handshake records as the content of
 CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles
 CRYPTO frames into QUIC packets, which are protected using QUIC packet
 protection.
 
+QUIC is only capable of conveying TLS handshake records in CRYPTO frames.  TLS
+alerts are turned into QUIC CONNECTION_CLOSE error codes; see {{tls-errors}}.
+TLS application data and other message types cannot be carried by QUIC at any
+encryption level and can be treated as an error if they are received.

Sorry, I meant to say "...by a QUIC implementation".

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3043#discussion_r325023746
----==_mimepart_5d808f1f7b720_ef63fbb418cd96c2036e5
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/3043#discussion_r325023746">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;  
 QUIC takes the unprotected content of TLS handshake records as the content of
 CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles
 CRYPTO frames into QUIC packets, which are protected using QUIC packet
 protection.
 
+QUIC is only capable of conveying TLS handshake records in CRYPTO frames.  TLS
+alerts are turned into QUIC CONNECTION_CLOSE error codes; see {{tls-errors}}.
+TLS application data and other message types cannot be carried by QUIC at any
+encryption level and can be treated as an error if they are received.
</pre>
<p>Sorry, I meant to say "...by a QUIC implementation".</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications&amp;email_token=AFTOJK7GTVJHU6E2YOFPHYLQKCDJ7A5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5OYKI#discussion_r325023746">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK26J3O3FIJB425WK4DQKCDJ7ANCNFSM4IXKSJ7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK52YXSCMOS2J4CDWHLQKCDJ7A5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5OYKI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJK7GTVJHU6E2YOFPHYLQKCDJ7A5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5OYKI#discussion_r325023746",
"url": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJK7GTVJHU6E2YOFPHYLQKCDJ7A5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5OYKI#discussion_r325023746",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d808f1f7b720_ef63fbb418cd96c2036e5--


From nobody Tue Sep 17 00:46: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 CE4D9120048 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 00:46:06 -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 ZR2VkwU1Y7M3 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 00:46:04 -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 C3C28120018 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 00:46:04 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id E2C2CA0546 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 00:46:03 -0700 (PDT)
Date: Tue, 17 Sep 2019 00:46:03 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/no-appdata/136cd0-3a813c@github.com>
Subject: [quicwg/base-drafts] 3a813c: received from TLS
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/w6P8ecdDHPqzxPXAQaKydwNp9lc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 07:46:07 -0000

  Branch: refs/heads/no-appdata
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3a813cdab5b53aeb5cbb3064f9046dcf6179eddd
      https://github.com/quicwg/base-drafts/commit/3a813cdab5b53aeb5cbb3064f9046dcf6179eddd
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-17 (Tue, 17 Sep 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  received from TLS



From nobody Tue Sep 17 00:46:18 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 750E9120048 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 00:46:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.382
X-Spam-Level: 
X-Spam-Status: No, score=-1.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_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 L34ksI0Szahd for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 00:46:14 -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 29189120018 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 00:46:14 -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=DDDqy/lP6qjGTxHbOf7BZ7kM2H0=; b=TzP7x7m7urKudY85 tyVyo6PTulBaunEVIWF7UpCNfAopysXulS9RWw5b8i/bYUepUfXuW+qXdCs/LnJI ZcbaPHouvTYWJk3HL9iLE8WzSYkwA6KiiXNtxoEahgl69dQZGVzxUaE87+M5P42R tqLutnVCSvf1ZFtvCPi/s0YG93c=
Received: by filter0235p1iad2.sendgrid.net with SMTP id filter0235p1iad2-18925-5D808F45-2 2019-09-17 07:46:13.068126749 +0000 UTC m=+70127.133111309
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) by ismtpd0037p1iad2.sendgrid.net (SG) with ESMTP id 4qfH-CiVSUy0Tg1A77CjQw for <quic-issues@ietf.org>; Tue, 17 Sep 2019 07:46:13.134 +0000 (UTC)
Date: Tue, 17 Sep 2019 07:46:13 +0000 (UTC)
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/3043/push/4042059760@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3043@github.com>
References: <quicwg/base-drafts/pull/3043@github.com>
Subject: Re: [quicwg/base-drafts] TLS application data isn't possible (#3043)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d808f44a71ac_1eff3fecee6cd96c26284c"; 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
X-SG-EID: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak39ReAWAcJR2kMVlWGpcbEuXsMnxxvr6lU6HL +Mo5SEbeeHT5JoJ7pCjlaF8pOFe8ax2KE2RtSHyldEdE4vDNRVefcJDqijnnH+siQDx4Kedhma3JjR phqdZgtQohKxs8H1Wrb/UcQo7iyA50Tox54Z5Sm+iFaTRWM+CwPQLSRzl5k8nh0U0x5KtiuDPWIb16 w=
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/J1lLlIJT8bVWvdyL9Z5BRGQnZHE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 07:46:16 -0000

----==_mimepart_5d808f44a71ac_1eff3fecee6cd96c26284c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

3a813cdab5b53aeb5cbb3064f9046dcf6179eddd  received from TLS


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3043/files/136cd0176ad9815a42f7ae6fb484956efcc74873..3a813cdab5b53aeb5cbb3064f9046dcf6179eddd

----==_mimepart_5d808f44a71ac_1eff3fecee6cd96c26284c
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/3a813cdab5b53aeb5cbb3064f9046dcf6179eddd">3a813cd</a>  received from TLS</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3043/files/136cd0176ad9815a42f7ae6fb484956efcc74873..3a813cdab5b53aeb5cbb3064f9046dcf6179eddd?email_source=notifications&amp;email_token=AFTOJK2BYW5QULVGPQ3G2ITQKCDMJA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMJVHAYDOOCQOVZWQIZUGA2DEMBVHE3TMMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK64JZNG763JB2LONNDQKCDMJANCNFSM4IXKSJ7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7EPF2IQGIQO7LIQRLQKCDMJA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMJVHAYDOOCQOVZWQIZUGA2DEMBVHE3TMMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3043/files/136cd0176ad9815a42f7ae6fb484956efcc74873..3a813cdab5b53aeb5cbb3064f9046dcf6179eddd?email_source=notifications\u0026email_token=AFTOJK2BYW5QULVGPQ3G2ITQKCDMJA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMJVHAYDOOCQOVZWQIZUGA2DEMBVHE3TMMA",
"url": "https://github.com/quicwg/base-drafts/pull/3043/files/136cd0176ad9815a42f7ae6fb484956efcc74873..3a813cdab5b53aeb5cbb3064f9046dcf6179eddd?email_source=notifications\u0026email_token=AFTOJK2BYW5QULVGPQ3G2ITQKCDMJA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMJVHAYDOOCQOVZWQIZUGA2DEMBVHE3TMMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d808f44a71ac_1eff3fecee6cd96c26284c--


From nobody Tue Sep 17 00:46: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 1710C120048 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 00:46:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 DMA5pAezs9Ak for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 00:46: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 6FE69120018 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 00:46:43 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id 9D34B1C0725 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 00:46:42 -0700 (PDT)
Date: Tue, 17 Sep 2019 00:46:42 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/4f33e0-981e9f@github.com>
Subject: [quicwg/base-drafts] 981e9f: Script updating gh-pages from 3a813cda. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/uqcAoMM4XIWlG3toe4tVEPl-g9k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 07:46:45 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 981e9f601eaaa51e4dce4a7099277fd940f05d8e
      https://github.com/quicwg/base-drafts/commit/981e9f601eaaa51e4dce4a7099277fd940f05d8e
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-17 (Tue, 17 Sep 2019)

  Changed paths:
    M index.html
    M no-appdata/draft-ietf-quic-tls.html
    M no-appdata/draft-ietf-quic-tls.txt

  Log Message:
  -----------
  Script updating gh-pages from 3a813cda. [ci skip]



From nobody Tue Sep 17 00:48: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 1B139120048 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 00:48:30 -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 wpX1lWXfITRd for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 00:48:28 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 13D71120018 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 00:48:28 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id 465818C1E09 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 00:48:27 -0700 (PDT)
Date: Tue, 17 Sep 2019 00:48:27 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3TXDECW4MDLKD6RRV3RW2DXEVBNHHB26CFR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3044/review/289075027@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3044@github.com>
References: <quicwg/base-drafts/pull/3044@github.com>
Subject: Re: [quicwg/base-drafts] Clarify why post-handshake client auth is banned (#3044)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d808fcb38b17_45633ff910ccd960131921"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-n8kzGmqjqltcPCKtEcSjDg640A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 07:48:30 -0000

----==_mimepart_5d808fcb38b17_45633ff910ccd960131921
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson approved this pull request.

I'm going to say that this is editorial-enough to just merge.  MUST NOT implies PROTOCOL_VIOLATION, so the new normative language is fine as editorial.  I'll give others a chance to disagree though.

> @@ -612,8 +612,13 @@ MAY refuse a connection if the client is unable to authenticate when requested.
 The requirements for client authentication vary based on application protocol
 and deployment.
 
-A server MUST NOT use post-handshake client authentication (see Section 4.6.2 of
-{{!TLS13}}).
+A server MUST NOT use post-handshake client authentication (as defined in
+Section 4.6.2 of {{!TLS13}}), because the multiplexing offered by QUIC prevents
+clients from correlating the certificate request with the application-level
+event which triggered it (see {{?HTTP2-TLS13=I-D.ietf-httpbis-http2-tls13}}).

CMOY (cite my own work) alert.  :)

Also a CMOS tweak (Chicago Manual of Style) tweak:
```suggestion
event that triggered it (see {{?HTTP2-TLS13=I-D.ietf-httpbis-http2-tls13}}).
```

> @@ -612,8 +612,13 @@ MAY refuse a connection if the client is unable to authenticate when requested.
 The requirements for client authentication vary based on application protocol
 and deployment.
 
-A server MUST NOT use post-handshake client authentication (see Section 4.6.2 of
-{{!TLS13}}).
+A server MUST NOT use post-handshake client authentication (as defined in
+Section 4.6.2 of {{!TLS13}}), because the multiplexing offered by QUIC prevents
+clients from correlating the certificate request with the application-level
+event which triggered it (see {{?HTTP2-TLS13=I-D.ietf-httpbis-http2-tls13}}).
+More specifically, servers MUST NOT send post-handshake TLS CertificateRequest
+messages, and clients MUST treat receipt of such messages as a connection error

```suggestion
messages and clients MUST treat receipt of such messages as a connection error
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3044#pullrequestreview-289075027
----==_mimepart_5d808fcb38b17_45633ff910ccd960131921
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><b>@martinthomson</b> approved this pull request.</p>=0D
=0D
<p>I'm going to say that this is editorial-enough to just merge.  MUST NO=
T implies PROTOCOL_VIOLATION, so the new normative language is fine as ed=
itorial.  I'll give others a chance to disagree though.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3044#discussi=
on_r325024391">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -612,8 +612,13 @@ MAY refuse a connecti=
on if the client is unable to authenticate when requested.=0D
 The requirements for client authentication vary based on application pro=
tocol=0D
 and deployment.=0D
 =0D
-A server MUST NOT use post-handshake client authentication (see Section =
4.6.2 of=0D
-{{!TLS13}}).=0D
+A server MUST NOT use post-handshake client authentication (as defined i=
n=0D
+Section 4.6.2 of {{!TLS13}}), because the multiplexing offered by QUIC p=
revents=0D
+clients from correlating the certificate request with the application-le=
vel=0D
+event which triggered it (see {{?HTTP2-TLS13=3DI-D.ietf-httpbis-http2-tl=
s13}}).=0D
</pre>=0D
<p>CMOY (cite my own work) alert.  :)</p>=0D
<p>Also a CMOS tweak (Chicago Manual of Style) tweak:</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-event which triggered it (see {{?HTTP2-TLS13=3D=
I-D.ietf-httpbis-http2-tls13}}).=0D
+event that triggered it (see {{?HTTP2-TLS13=3DI-D.ietf-httpbis-http2-tls=
13}}).=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3044#discussi=
on_r325024451">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -612,8 +612,13 @@ MAY refuse a connecti=
on if the client is unable to authenticate when requested.=0D
 The requirements for client authentication vary based on application pro=
tocol=0D
 and deployment.=0D
 =0D
-A server MUST NOT use post-handshake client authentication (see Section =
4.6.2 of=0D
-{{!TLS13}}).=0D
+A server MUST NOT use post-handshake client authentication (as defined i=
n=0D
+Section 4.6.2 of {{!TLS13}}), because the multiplexing offered by QUIC p=
revents=0D
+clients from correlating the certificate request with the application-le=
vel=0D
+event which triggered it (see {{?HTTP2-TLS13=3DI-D.ietf-httpbis-http2-tl=
s13}}).=0D
+More specifically, servers MUST NOT send post-handshake TLS CertificateR=
equest=0D
+messages, and clients MUST treat receipt of such messages as a connectio=
n error=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-messages, and clients MUST treat receipt of s=
uch messages as a connection error=0D
+messages and clients MUST treat receipt of such messages as a connection=
 error=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3044?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK72OIMDUY4JSL54HITQKCDUXA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5O6UY#pullrequestreview-289075027=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJKYUDN3GGUCD6XV2PTLQKCDUXANCNFSM4IXLGKXA">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJKY3PS6V=
RO2LXAOS7QDQKCDUXA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5O6UY.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/3044?email_source=3D=
notifications\u0026email_token=3DAFTOJK72OIMDUY4JSL54HITQKCDUXA5CNFSM4IXL=
GKXKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
E5O6UY#pullrequestreview-289075027",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3044?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK72OIMDUY4JSL54HITQKCDUXA5CNFSM4IXLGK=
XKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5=
O6UY#pullrequestreview-289075027",=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_5d808fcb38b17_45633ff910ccd960131921--


From nobody Tue Sep 17 01:05: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 252D2120120 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 01:05:14 -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 5jqzRCW5FyPF for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 01:05: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 5333B120104 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 01:05:12 -0700 (PDT)
Date: Tue, 17 Sep 2019 01:05:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568707511; bh=Cw6VH+qHPMVeuxnC9Oz49rKMSJiUh7egeRRBUnxrzxY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=sv5NPeszvKHT711OH5M8glZmIsAg+3FEGK0XItrXJn0A3JPL1OjTGvUGZSMNawsjm 7E06Zrl1AaxKlzV+XFZvbOOpxUpjiqniI0wPa/zIQ11v2hSOcUwmeRX9QKWybVrysB ekhLOk4oIcmWdsqWKiwc6Xpt+IwHBUbGsw5wagHs=
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZI4CHMU4H4LGBWCA53RXDDPEVBNHHB257M5U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3043/review/289084111@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3043@github.com>
References: <quicwg/base-drafts/pull/3043@github.com>
Subject: Re: [quicwg/base-drafts] TLS application data isn't possible (#3043)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8093b759e48_23233fba43ecd96020639d"; 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/T1Rs_9MRtRwQ1BKoG8e_xWdU0nk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 08:05:14 -0000

----==_mimepart_5d8093b759e48_23233fba43ecd96020639d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

marten-seemann commented on this pull request.



>  
 QUIC takes the unprotected content of TLS handshake records as the content of
 CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles
 CRYPTO frames into QUIC packets, which are protected using QUIC packet
 protection.
 
+QUIC is only capable of conveying TLS handshake records in CRYPTO frames.  TLS
+alerts are turned into QUIC CONNECTION_CLOSE error codes; see {{tls-errors}}.
+TLS application data and other message types cannot be carried by QUIC at any
+encryption level and can be treated as an error if they are received.

Still not sure how this could happen (I don't think it could in quic-go), but I guess that depends very much on the details of the coupling between your QUIC implementation and your TLS 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/pull/3043#discussion_r325031574
----==_mimepart_5d8093b759e48_23233fba43ecd96020639d
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/3043#discussion_r325031574">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;  
 QUIC takes the unprotected content of TLS handshake records as the content of
 CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles
 CRYPTO frames into QUIC packets, which are protected using QUIC packet
 protection.
 
+QUIC is only capable of conveying TLS handshake records in CRYPTO frames.  TLS
+alerts are turned into QUIC CONNECTION_CLOSE error codes; see {{tls-errors}}.
+TLS application data and other message types cannot be carried by QUIC at any
+encryption level and can be treated as an error if they are received.
</pre>
<p>Still not sure how this could happen (I don't think it could in quic-go), but I guess that depends very much on the details of the coupling between your QUIC implementation and your TLS stack.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications&amp;email_token=AFTOJKYL34TZUNRTGOVBU7TQKCFTPA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5RFTY#discussion_r325031574">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2DTBX2VB643XXEZIDQKCFTPANCNFSM4IXKSJ7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK62D6UCGA3CXQKK64TQKCFTPA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5RFTY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJKYL34TZUNRTGOVBU7TQKCFTPA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5RFTY#discussion_r325031574",
"url": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJKYL34TZUNRTGOVBU7TQKCFTPA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5RFTY#discussion_r325031574",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8093b759e48_23233fba43ecd96020639d--


From nobody Tue Sep 17 01:27: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 5097C1201E3 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 01:27: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 xFhyT_h60QYr for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 01:27:46 -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 8AE73120104 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 01:27:46 -0700 (PDT)
Date: Tue, 17 Sep 2019 01:27:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568708865; bh=aTNSnbSU6DVANedhUwEtCmXybgGjS/1zNg9Q5HlTkGs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IILbEpMpSqhYZKC0ILK5NWeQxJFS7ReDgJKdw6x1PnK15YgUl5CXWi2Vy4B9+9V8j IvFOx2qMGpuEJk0eqBkCcFofTuIo6VChc1ZjKUGIp6nHdjVx7u69uBZG09IBh0UelA vrckgAdzIu2pC0MTMtQns+pnraKd1OEpx+PTbfwY=
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/3044/push/4042215112@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3044@github.com>
References: <quicwg/base-drafts/pull/3044@github.com>
Subject: Re: [quicwg/base-drafts] Clarify why post-handshake client auth is banned (#3044)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80990192ca7_74e33fa4b5acd96c3558"; 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/ikA56UvX_HzbR6Hgc1uuxhdoBsc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 08:27:48 -0000

----==_mimepart_5d80990192ca7_74e33fa4b5acd96c3558
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi pushed 1 commit.

06486475d04ecb979e5c8545df4b84fcd89b5016  MT editorial pass


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3044/files/751aef9c80307a9b61f6bae887566eb9a9e3b766..06486475d04ecb979e5c8545df4b84fcd89b5016

----==_mimepart_5d80990192ca7_74e33fa4b5acd96c3558
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/06486475d04ecb979e5c8545df4b84fcd89b5016">0648647</a>  MT editorial pass</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3044/files/751aef9c80307a9b61f6bae887566eb9a9e3b766..06486475d04ecb979e5c8545df4b84fcd89b5016?email_source=notifications&amp;email_token=AFTOJK6KREFEPU5FEZUUGT3QKCIIDA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMJXGYZDENSQOVZWQIZUGA2DEMRRGUYTCMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK77UZYMTQUGJ5MO5QDQKCIIDANCNFSM4IXLGKXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZCXBKYJSPONQBGDMDQKCIIDA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMJXGYZDENSQOVZWQIZUGA2DEMRRGUYTCMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3044/files/751aef9c80307a9b61f6bae887566eb9a9e3b766..06486475d04ecb979e5c8545df4b84fcd89b5016?email_source=notifications\u0026email_token=AFTOJK6KREFEPU5FEZUUGT3QKCIIDA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMJXGYZDENSQOVZWQIZUGA2DEMRRGUYTCMQ",
"url": "https://github.com/quicwg/base-drafts/pull/3044/files/751aef9c80307a9b61f6bae887566eb9a9e3b766..06486475d04ecb979e5c8545df4b84fcd89b5016?email_source=notifications\u0026email_token=AFTOJK6KREFEPU5FEZUUGT3QKCIIDA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMJXGYZDENSQOVZWQIZUGA2DEMRRGUYTCMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d80990192ca7_74e33fa4b5acd96c3558--


From nobody Tue Sep 17 01:28: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 5354F12021C for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 01:28:19 -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 1zVQbjej9191 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 01:28: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 A7D901201EF for <quic-issues@ietf.org>; Tue, 17 Sep 2019 01:28:17 -0700 (PDT)
Date: Tue, 17 Sep 2019 01:28:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568708896; bh=bSj9FHIxg8xDE+aDrGYnNSk+nq3WJ/brR1t9FAIGFtI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NY//jGQNGp9up7NgYil7P10gig/brqeHHLKCx/Mw1VLqjsp3g/WlsfCi/xo3diQyQ 380dPDQc265WEFxbqD7zdReh4On0MfZpgrShR6MKDIOWXoB/NzWLSPQrNpzEyYrxA9 x/387cgQLAUzPRQYNqoSdJozvmTK2/niHoObh+64=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5QTEA7FEUHZE7HJC53RXF2BEVBNHHB26CFR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3044/review/289096319@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3044@github.com>
References: <quicwg/base-drafts/pull/3044@github.com>
Subject: Re: [quicwg/base-drafts] Clarify why post-handshake client auth is banned (#3044)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80992061eab_5bfc3facae8cd9689613"; 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/fUc7XVtbEl4bVQDPoN2rzJTvC9Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 08:28:19 -0000

----==_mimepart_5d80992061eab_5bfc3facae8cd9689613
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

DavidSchinazi commented on this pull request.



> @@ -612,8 +612,13 @@ MAY refuse a connection if the client is unable to authenticate when requested.
 The requirements for client authentication vary based on application protocol
 and deployment.
 
-A server MUST NOT use post-handshake client authentication (see Section 4.6.2 of
-{{!TLS13}}).
+A server MUST NOT use post-handshake client authentication (as defined in
+Section 4.6.2 of {{!TLS13}}), because the multiplexing offered by QUIC prevents
+clients from correlating the certificate request with the application-level
+event which triggered it (see {{?HTTP2-TLS13=I-D.ietf-httpbis-http2-tls13}}).

I'm honored to have been confused with @davidben.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3044#discussion_r325040966
----==_mimepart_5d80992061eab_5bfc3facae8cd9689613
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/3044#discussion_r325040966">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -612,8 +612,13 @@ MAY refuse a connection if the client is unable to authenticate when requested.
 The requirements for client authentication vary based on application protocol
 and deployment.
 
-A server MUST NOT use post-handshake client authentication (see Section 4.6.2 of
-{{!TLS13}}).
+A server MUST NOT use post-handshake client authentication (as defined in
+Section 4.6.2 of {{!TLS13}}), because the multiplexing offered by QUIC prevents
+clients from correlating the certificate request with the application-level
+event which triggered it (see {{?HTTP2-TLS13=I-D.ietf-httpbis-http2-tls13}}).
</pre>
<p>I'm honored to have been confused with <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/hovercards?user_id=109690" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/davidben">@davidben</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/3044?email_source=notifications&amp;email_token=AFTOJK6LDNQ6JZVTK5XQRV3QKCIKBA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5UE7Y#discussion_r325040966">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5J6ZDLBMNYWMVH7ITQKCIKBANCNFSM4IXLGKXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZIQLGWLT6KPP4CVP3QKCIKBA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5UE7Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3044?email_source=notifications\u0026email_token=AFTOJK6LDNQ6JZVTK5XQRV3QKCIKBA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5UE7Y#discussion_r325040966",
"url": "https://github.com/quicwg/base-drafts/pull/3044?email_source=notifications\u0026email_token=AFTOJK6LDNQ6JZVTK5XQRV3QKCIKBA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5UE7Y#discussion_r325040966",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80992061eab_5bfc3facae8cd9689613--


From nobody Tue Sep 17 01:36: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 A806812020A for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 01:35:57 -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 1zYwRiY3ET_W for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 01:35:56 -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 EBCD4120104 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 01:35:55 -0700 (PDT)
Date: Tue, 17 Sep 2019 01:35:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568709355; bh=OS+FDQkyWpTuWTzLwiqw1jKmQ4tMxX7iGENYivrpQbU=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=UQFZBF1xLnsPl1Byez3Nn1FAJa8MR79ZXXMuo/ToIlydFzTt63GSJVquRGzA3PQAW 3FIKWz9ya8bMJds2Fu5kJ/2QNm7n+GJTEvTyvEnYRwgeuix2Ibm0n2fRMfC5T72A9h VVQvrFwgW8GpdpeT4aQlbhxKFi7ESqNkIYog8Y/A=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6QJWCP5CO7E6AXAJ53RXGWVEVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045@github.com>
Subject: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d809aeaf0655_23b13f9af42cd96c192856"; 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/PU3m8gyRoR7qYWGFTY0Vq9x1q2s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 08:35:58 -0000

----==_mimepart_5d809aeaf0655_23b13f9af42cd96c192856
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The restriction for ClientHello to fit in a single UDP datagram was added back when the retry mechanism was more tightly coupled to the TLS crypto. At this point, the restriction doesn&#39;t get us much, and is preventing us from running some post-quantum experiments.

Fixes #2928.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3045

-- Commit Summary --

  * Allow ClientHello to span multiple QUIC packets

-- File Changes --

    M draft-ietf-quic-tls.md (27)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3045.patch
https://github.com/quicwg/base-drafts/pull/3045.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/3045

----==_mimepart_5d809aeaf0655_23b13f9af42cd96c192856
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The restriction for ClientHello to fit in a single UDP datagram was added back when the retry mechanism was more tightly coupled to the TLS crypto. At this point, the restriction doesn't get us much, and is preventing us from running some post-quantum experiments.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #2928.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="471833927" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2928" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2928/hovercard" href="https://github.com/quicwg/base-drafts/issues/2928">#2928</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/3045'>https://github.com/quicwg/base-drafts/pull/3045</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Allow ClientHello to span multiple QUIC packets</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3045/files#diff-0">draft-ietf-quic-tls.md</a>
    (27)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3045.patch'>https://github.com/quicwg/base-drafts/pull/3045.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3045.diff'>https://github.com/quicwg/base-drafts/pull/3045.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/3045?email_source=notifications&amp;email_token=AFTOJK5FRBNPGDRALB4D3HLQKCJGVA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLZF43A">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6GKL2VADESJK2B3ITQKCJGVANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4BZGWEINLJC6VJS2DQKCJGVA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLZF43A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK5FRBNPGDRALB4D3HLQKCJGVA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLZF43A",
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK5FRBNPGDRALB4D3HLQKCJGVA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HLZF43A",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d809aeaf0655_23b13f9af42cd96c192856--


From nobody Tue Sep 17 01: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 C93F5120104 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 01:45:38 -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 d6k7ndiyaRoZ for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 01:45: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 A49591200FF for <quic-issues@ietf.org>; Tue, 17 Sep 2019 01:45:36 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id BC886520038 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 01:45:35 -0700 (PDT)
Date: Tue, 17 Sep 2019 01:45:35 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK36LWAFENU54UA57AV3RXH27EVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/review/289105392@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d809d2fae666_58473fe89aacd95c3137d1"; 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/Yu_zabE_fyl6v3GFVCk3VXlMoes>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 08:45:39 -0000

----==_mimepart_5d809d2fae666_58473fe89aacd95c3137d1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

marten-seemann commented on this pull request.



> @@ -565,11 +565,19 @@ older than 1.3 is negotiated.
 
 ## ClientHello Size {#clienthello-size}
 
-QUIC requires that the first Initial packet from a client contain an entire
-cryptographic handshake message, which for TLS is the ClientHello.  Though a
-packet larger than 1200 bytes might be supported by the path, a client improves
-the likelihood that a packet is accepted if it ensures that the first
-ClientHello message is small enough to stay within this limit.
+The first Initial packet from a client starts with its first cryptographic
+handshake message, which for TLS is the ClientHello.  Servers might need to
+parse the entire ClientHello (e.g., to access extensions such as Server Name
+Identification (SNI) or Application Layer Protocol Negotiation (ALPN)) in order
+to decide whether to accept the new incoming QUIC connection.  If the
+ClientHello spans multiple Initial packets, such servers would need to buffer
+the first received fragments, which could consume excessive resources if the
+client's address has not yet been validated.  To avoid this, servers MAY use

The resources are consumed either way, but if the client's address has not yet been validated, a server might not be willing to commit those resources.

> -cryptographic handshake message, which for TLS is the ClientHello.  Though a
-packet larger than 1200 bytes might be supported by the path, a client improves
-the likelihood that a packet is accepted if it ensures that the first
-ClientHello message is small enough to stay within this limit.
+The first Initial packet from a client starts with its first cryptographic
+handshake message, which for TLS is the ClientHello.  Servers might need to
+parse the entire ClientHello (e.g., to access extensions such as Server Name
+Identification (SNI) or Application Layer Protocol Negotiation (ALPN)) in order
+to decide whether to accept the new incoming QUIC connection.  If the
+ClientHello spans multiple Initial packets, such servers would need to buffer
+the first received fragments, which could consume excessive resources if the
+client's address has not yet been validated.  To avoid this, servers MAY use
+the Retry feature (see Section 8.1 of {{QUIC-TRANSPORT}}) to only buffer
+partial ClientHellos from clients with a validated address.  Though a packet
+larger than 1200 bytes might be supported by the path, a client improves the
+likelihood that a packet is accepted if it ensures that the first ClientHello

s/is accepted/isn't dropped while in transit/

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3045#pullrequestreview-289105392
----==_mimepart_5d809d2fae666_58473fe89aacd95c3137d1
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/3045#discussion_r325047849">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -565,11 +565,19 @@ older than 1.3 is negotiated.
 
 ## ClientHello Size {#clienthello-size}
 
-QUIC requires that the first Initial packet from a client contain an entire
-cryptographic handshake message, which for TLS is the ClientHello.  Though a
-packet larger than 1200 bytes might be supported by the path, a client improves
-the likelihood that a packet is accepted if it ensures that the first
-ClientHello message is small enough to stay within this limit.
+The first Initial packet from a client starts with its first cryptographic
+handshake message, which for TLS is the ClientHello.  Servers might need to
+parse the entire ClientHello (e.g., to access extensions such as Server Name
+Identification (SNI) or Application Layer Protocol Negotiation (ALPN)) in order
+to decide whether to accept the new incoming QUIC connection.  If the
+ClientHello spans multiple Initial packets, such servers would need to buffer
+the first received fragments, which could consume excessive resources if the
+client&#39;s address has not yet been validated.  To avoid this, servers MAY use
</pre>
<p>The resources are consumed either way, but if the client's address has not yet been validated, a server might not be willing to commit those resources.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3045#discussion_r325048530">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; -cryptographic handshake message, which for TLS is the ClientHello.  Though a
-packet larger than 1200 bytes might be supported by the path, a client improves
-the likelihood that a packet is accepted if it ensures that the first
-ClientHello message is small enough to stay within this limit.
+The first Initial packet from a client starts with its first cryptographic
+handshake message, which for TLS is the ClientHello.  Servers might need to
+parse the entire ClientHello (e.g., to access extensions such as Server Name
+Identification (SNI) or Application Layer Protocol Negotiation (ALPN)) in order
+to decide whether to accept the new incoming QUIC connection.  If the
+ClientHello spans multiple Initial packets, such servers would need to buffer
+the first received fragments, which could consume excessive resources if the
+client&#39;s address has not yet been validated.  To avoid this, servers MAY use
+the Retry feature (see Section 8.1 of {{QUIC-TRANSPORT}}) to only buffer
+partial ClientHellos from clients with a validated address.  Though a packet
+larger than 1200 bytes might be supported by the path, a client improves the
+likelihood that a packet is accepted if it ensures that the first ClientHello
</pre>
<p>s/is accepted/isn't dropped while in transit/</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications&amp;email_token=AFTOJKZSFCC7W4BVSG32HHLQKCKK7A5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5WL4A#pullrequestreview-289105392">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7ZCYTRGQI7OW7WMVDQKCKK7ANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5VRSF4SOH3LISC5NTQKCKK7A5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5WL4A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJKZSFCC7W4BVSG32HHLQKCKK7A5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5WL4A#pullrequestreview-289105392",
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJKZSFCC7W4BVSG32HHLQKCKK7A5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE5WL4A#pullrequestreview-289105392",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d809d2fae666_58473fe89aacd95c3137d1--


From nobody Tue Sep 17 02: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 013D01200FF for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 02:01: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 udCnSG8qEAqT for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 02:01: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 7844B1200EF for <quic-issues@ietf.org>; Tue, 17 Sep 2019 02:01:24 -0700 (PDT)
Date: Tue, 17 Sep 2019 02:01:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568710883; bh=NM9uAXeel5Ra1EplyB/VFnJ3WjJqGRiMtx7ETfh4l6o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=P2GMHR56LayyazWZGef/d4/OxCmigTTdYr1Et8idgAqcRfZJU2Ysbn7FQeeGbsqba XG7/HFXZbw2whjsQekqHTEB9o9hujXpzL1IvJ1ckt+NzCAZVC1LRGWmOSkWr2QLmNy UgJMXTW3zDob82RvHIjVgD4dl/ckHudeJSaOHFkc=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6S6PKY4BAJDFTK2S53RXJWHEVBNHHB25D7KM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3037/532130383@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3037@github.com>
References: <quicwg/base-drafts/issues/3037@github.com>
Subject: Re: [quicwg/base-drafts] Require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3037)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80a0e3954a0_7393fbced0cd96c155596"; 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/Gc6nu9xBK8CdvE4dJFfdqIafS8U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 09:01:26 -0000

----==_mimepart_5d80a0e3954a0_7393fbced0cd96c155596
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think the question is if we consider *processing* of NEW_CONNECTION_ID and RETIRE_CONNECTION_ID frames as a mandatory feature.

Migration is an optional feature of QUIC. For endpoints that do not migrate, there is no reason to update the Connection IDs (note that even though we recently introduced Retire Prior To field, we do not mandate endpoints to respect it - the keyword is "SHOULD"). If we consider that way, I think it is reasonable to never use a MUST for anything related to NEW_CONNECTION_ID or RETIRE_CONNECTION_ID 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/3037#issuecomment-532130383
----==_mimepart_5d80a0e3954a0_7393fbced0cd96c155596
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I think the question is if we consider <em>processing</em> of NEW_CONNECTION_ID and RETIRE_CONNECTION_ID frames as a mandatory feature.</p>
<p>Migration is an optional feature of QUIC. For endpoints that do not migrate, there is no reason to update the Connection IDs (note that even though we recently introduced Retire Prior To field, we do not mandate endpoints to respect it - the keyword is "SHOULD"). If we consider that way, I think it is reasonable to never use a MUST for anything related to NEW_CONNECTION_ID or RETIRE_CONNECTION_ID 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/3037?email_source=notifications&amp;email_token=AFTOJKZ43EDNAQFIYLBWFETQKCMGHA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD632UTY#issuecomment-532130383">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5FWMWSFYMKKRW5AFTQKCMGHANCNFSM4IXFBLRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3IXPEBKIS5K24DQ6TQKCMGHA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD632UTY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJKZ43EDNAQFIYLBWFETQKCMGHA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD632UTY#issuecomment-532130383",
"url": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJKZ43EDNAQFIYLBWFETQKCMGHA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD632UTY#issuecomment-532130383",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80a0e3954a0_7393fbced0cd96c155596--


From nobody Tue Sep 17 03:53: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 371E912081B for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 03:53:47 -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 kYyDdFf3rTuF for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 03:53: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 D9C3F120810 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 03:53:45 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id E7CD3960E56 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 03:53:44 -0700 (PDT)
Date: Tue, 17 Sep 2019 03:53:44 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK64EMLTFKKRSVUHJ653RX54REVBNHHB25D7KM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3037/532169215@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3037@github.com>
References: <quicwg/base-drafts/issues/3037@github.com>
Subject: Re: [quicwg/base-drafts] Require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3037)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80bb38d96ae_75f33fd6a02cd95c12084f"; 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/OsAgTjDFdLbCEAyy7TS0zT08y9I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 10:53:47 -0000

----==_mimepart_5d80bb38d96ae_75f33fd6a02cd95c12084f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho I wouldn't encourage people to think of NEW_CONNECTION_ID and RETIRE_CONNECTION_ID as optional, but I agree that effectively they are in many cases.  However, if you sent NEW_CONNECTION_ID, I don't think it's optional to not correctly process RETIRE_CONNECTION_ID, and that's the question here(I copy-pasted the paragraph above).

If the peer never sends RETIRE_CONNECTION_ID because it doesn't fully implement connection ID functionality, then this is not a 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/issues/3037#issuecomment-532169215
----==_mimepart_5d80bb38d96ae_75f33fd6a02cd95c12084f
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> I wouldn't encourage people to think of NEW_CONNECTION_ID and RETIRE_CONNECTION_ID as optional, but I agree that effectively they are in many cases.  However, if you sent NEW_CONNECTION_ID, I don't think it's optional to not correctly process RETIRE_CONNECTION_ID, and that's the question here(I copy-pasted the paragraph above).</p>
<p>If the peer never sends RETIRE_CONNECTION_ID because it doesn't fully implement connection ID functionality, then this is not a 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/issues/3037?email_source=notifications&amp;email_token=AFTOJK7OU2HXAFW254V42XTQKCZLRA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64ED7Y#issuecomment-532169215">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4LX4LZXC2BAIRA6UDQKCZLRANCNFSM4IXFBLRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7P4O3AJJXZKC23UADQKCZLRA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64ED7Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK7OU2HXAFW254V42XTQKCZLRA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64ED7Y#issuecomment-532169215",
"url": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK7OU2HXAFW254V42XTQKCZLRA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64ED7Y#issuecomment-532169215",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80bb38d96ae_75f33fd6a02cd95c12084f--


From nobody Tue Sep 17 04:02: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 668D312081D for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 04:02:26 -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 D7CpIbyFsi5D for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 04:02: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 E2D73120810 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 04:02:24 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 1433996093E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 04:02:24 -0700 (PDT)
Date: Tue, 17 Sep 2019 04:02:24 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4DZB62F6QMWF6YS6F3RX65BEVBNHHB25ZKZQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3041/532171887@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3041@github.com>
References: <quicwg/base-drafts/issues/3041@github.com>
Subject: Re: [quicwg/base-drafts] kMaxDatagramSize should use the maximum packet size of the connection (#3041)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80bd405b57_5ebf3f922cecd9682807c2"; 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/XRCTXjuaQORfA2FerZLWrVMkzDE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 11:02:26 -0000

----==_mimepart_5d80bd405b57_5ebf3f922cecd9682807c2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

My reading is that this value is the actual max packet size used in the connection, it's just not clear from the explanation.  kInitialWindow and kMinimumWindow are also per-connection fields defined directly below.

There is one potential detail, which is if the MTU increases after the handshake, do the min CWND and Reno behavior change accordingly?  I think it's simpler to reason about them not changing, but I can see both arguments and in the end I don't think it'll matter that much.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3041#issuecomment-532171887
----==_mimepart_5d80bd405b57_5ebf3f922cecd9682807c2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>My reading is that this value is the actual max packet size used in the connection, it's just not clear from the explanation.  kInitialWindow and kMinimumWindow are also per-connection fields defined directly below.</p>
<p>There is one potential detail, which is if the MTU increases after the handshake, do the min CWND and Reno behavior change accordingly?  I think it's simpler to reason about them not changing, but I can see both arguments and in the end I don't think it'll matter that much.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3041?email_source=notifications&amp;email_token=AFTOJK5MOWJVJFLQIEO7DQTQKC2MBA5CNFSM4IXJC7M2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64EY3Y#issuecomment-532171887">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7SOORXPWBHQGSDQQLQKC2MBANCNFSM4IXJC7MQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6EOD5MXPS5TOJSLKTQKC2MBA5CNFSM4IXJC7M2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64EY3Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3041?email_source=notifications\u0026email_token=AFTOJK5MOWJVJFLQIEO7DQTQKC2MBA5CNFSM4IXJC7M2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64EY3Y#issuecomment-532171887",
"url": "https://github.com/quicwg/base-drafts/issues/3041?email_source=notifications\u0026email_token=AFTOJK5MOWJVJFLQIEO7DQTQKC2MBA5CNFSM4IXJC7M2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64EY3Y#issuecomment-532171887",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80bd405b57_5ebf3f922cecd9682807c2--


From nobody Tue Sep 17 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 8BCFF120846 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 06:25:15 -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 eIPA4czoU51E for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 06:25:13 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7D9EA1200BA for <quic-issues@ietf.org>; Tue, 17 Sep 2019 06:25:13 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 8C2F7660447 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 06:25:12 -0700 (PDT)
Date: Tue, 17 Sep 2019 06:25:12 -0700
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK33KMJ6ZFSKI6MP5HV3RYPUREVBNHHB25D7KM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3037/532219256@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3037@github.com>
References: <quicwg/base-drafts/issues/3037@github.com>
Subject: Re: [quicwg/base-drafts] Require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3037)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80deb87cba3_6ffc3f967f8cd96c33203b"; 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/uWrTaEgfcFl4G_zuF_iTFO57Wsk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 13:25:16 -0000

----==_mimepart_5d80deb87cba3_6ffc3f967f8cd96c33203b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I agree with Ian. Processing these frames, and acting accordingly is not optional. Even in the absence of migration RETIRE_CONNECTION_ID can be used to force a peer to start using new connection IDs. WinQuic will make use of this to dynamically balance load of connections across processors; independent of 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/3037#issuecomment-532219256
----==_mimepart_5d80deb87cba3_6ffc3f967f8cd96c33203b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I agree with Ian. Processing these frames, and acting accordingly is not optional. Even in the absence of migration RETIRE_CONNECTION_ID can be used to force a peer to start using new connection IDs. WinQuic will make use of this to dynamically balance load of connections across processors; independent of 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/3037?email_source=notifications&amp;email_token=AFTOJKZPCXRFZUM2LYBGJG3QKDLDRA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64QK6A#issuecomment-532219256">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ4VFUYYKO53CUMN2TQKDLDRANCNFSM4IXFBLRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7TXDI67PULPM6PRHLQKDLDRA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64QK6A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJKZPCXRFZUM2LYBGJG3QKDLDRA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64QK6A#issuecomment-532219256",
"url": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJKZPCXRFZUM2LYBGJG3QKDLDRA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64QK6A#issuecomment-532219256",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80deb87cba3_6ffc3f967f8cd96c33203b--


From nobody Tue Sep 17 06:26: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 744FE120846 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 06:26:33 -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 yk6YLvARLHBO for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 06:26: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 BFFA51200BA for <quic-issues@ietf.org>; Tue, 17 Sep 2019 06:26:31 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id EAA5A2C0D1B for <quic-issues@ietf.org>; Tue, 17 Sep 2019 06:26:30 -0700 (PDT)
Date: Tue, 17 Sep 2019 06:26:30 -0700
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK74I5ZOJA5PPSAJMB53RYPZNEVBNHHB25ZKZQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3041/532219806@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3041@github.com>
References: <quicwg/base-drafts/issues/3041@github.com>
Subject: Re: [quicwg/base-drafts] kMaxDatagramSize should use the maximum packet size of the connection (#3041)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80df06dbbf0_4c5d3fca0cecd9643622f7"; 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/3gwNPJonSp_v4yIMVWI-RHXXtcY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 13:26:34 -0000

----==_mimepart_5d80df06dbbf0_4c5d3fca0cecd9643622f7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

WinQuic uses the currently calculated path MTU instead a constant kMaxDatagramSize.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3041#issuecomment-532219806
----==_mimepart_5d80df06dbbf0_4c5d3fca0cecd9643622f7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>WinQuic uses the currently calculated path MTU instead a constant kMaxDatagramSize.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3041?email_source=notifications&amp;email_token=AFTOJK7Y6A2N6MZ5WPHEMQ3QKDLINA5CNFSM4IXJC7M2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64QPHQ#issuecomment-532219806">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5BLXYGVDBT3PDFHJDQKDLINANCNFSM4IXJC7MQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4J56SFTJG2J2T2VD3QKDLINA5CNFSM4IXJC7M2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64QPHQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3041?email_source=notifications\u0026email_token=AFTOJK7Y6A2N6MZ5WPHEMQ3QKDLINA5CNFSM4IXJC7M2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64QPHQ#issuecomment-532219806",
"url": "https://github.com/quicwg/base-drafts/issues/3041?email_source=notifications\u0026email_token=AFTOJK7Y6A2N6MZ5WPHEMQ3QKDLINA5CNFSM4IXJC7M2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64QPHQ#issuecomment-532219806",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80df06dbbf0_4c5d3fca0cecd9643622f7--


From nobody Tue Sep 17 06:31: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 7C1991208D2 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 06:31: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 H1mFd36lhpYg for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 06:31: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 AF878120865 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 06:31:35 -0700 (PDT)
Date: Tue, 17 Sep 2019 06:31:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568727095; bh=UrUoq6wcxGlAIa+x1CDPWLY18CFgyJNUWt2AjmfkPEE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FetR+1dAjCsB7LhDBBGN6wR/cHq1CxBNgu8AskuvbTCDeg3QtGStXb0uyerO0bpcv U8NNmRU82UX2+6hIb8h78ymGCp/+hm8we4DZngabSLSW7dHCbQzgIfhAgRrIiWtYDI CLoJmMer7RlQy5/RK5Xj/mALCJcED9ZG6ofMJQMU=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6FD22VVVO5SF5CQPV3RYQMNEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/532221939@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80e036f3a99_379e3fed252cd95c250550"; 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/yBdvQRUFJO3d7o51LJygYuxBtv4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 13:31:47 -0000

----==_mimepart_5d80e036f3a99_379e3fed252cd95c250550
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I would prefer not to encrypt the Retry packet and keep things how they are. We've done a lot of work to create a design that requires the least amount of work to accomplish the stateless retry scenario. Adding an additional level of encryption, just to get a checksum (something that is practically, already accomplished in most deployments with UDP) is just going to add complexity (we've already started work with HW vendors on the current model, and it's complexity, compared to TCP, is already a major hurdle).

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-532221939
----==_mimepart_5d80e036f3a99_379e3fed252cd95c250550
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I would prefer not to encrypt the Retry packet and keep things how they are. We've done a lot of work to create a design that requires the least amount of work to accomplish the stateless retry scenario. Adding an additional level of encryption, just to get a checksum (something that is practically, already accomplished in most deployments with UDP) is just going to add complexity (we've already started work with HW vendors on the current model, and it's complexity, compared to TCP, is already a major hurdle).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJK32FUAPJPHGVPIAGZTQKDL3NA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64Q74Y#issuecomment-532221939">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2WK443ZPHQSRDK6OLQKDL3NANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7Q43KPW457YLEI7ADQKDL3NA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64Q74Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK32FUAPJPHGVPIAGZTQKDL3NA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64Q74Y#issuecomment-532221939",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK32FUAPJPHGVPIAGZTQKDL3NA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64Q74Y#issuecomment-532221939",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80e036f3a99_379e3fed252cd95c250550--


From nobody Tue Sep 17 06:41: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 B2A0112084F for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 06:41: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 kWt7hmJWXCvC for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 06:41: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 C544D12084E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 06:41:28 -0700 (PDT)
Date: Tue, 17 Sep 2019 06:41:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568727688; bh=TfSLJZTGOapozTqbyo8yZoCOSYQo4JiHuGMkuiCXylE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LeRGfnxf42bEVXcf0Ik3QXxKGgDvfXQf2gJPv6n7ZeVxVZv4KxW91DcyA0ClrW6/f 8Tl2XhZrhkPBdi805nIGIr3PPiEFetNgAuJ48ziJOmyDUwedFkcN/lP1WWTe0ZSE+T 2iSO6QBJhx9VPnlA0pGKrIc33pTTHydcN1BHPSAc=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYR5NOS2CMKUXJOS3V3RYRRPEVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/c532226068@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80e287f1000_1dc93ff788acd96436448b"; 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/6XcGXu9JpcOJdQ14-WoqBKMXrSs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 13:41:31 -0000

----==_mimepart_5d80e287f1000_1dc93ff788acd96436448b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This proposed changes imposes some new, nontrivial requirements on the server side. As a server, would I be required to support multi-packet client initials? Do we **really** need this in 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/pull/3045#issuecomment-532226068
----==_mimepart_5d80e287f1000_1dc93ff788acd96436448b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This proposed changes imposes some new, nontrivial requirements on the server side. As a server, would I be required to support multi-packet client initials? Do we <strong>really</strong> need this in 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/pull/3045?email_source=notifications&amp;email_token=AFTOJK6BURTVLZL4YPYM42LQKDNAPA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64SAFA#issuecomment-532226068">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6QRFFMDGJXPYNK6S3QKDNAPANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7RQTOW4ONU2YRZQYDQKDNAPA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64SAFA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK6BURTVLZL4YPYM42LQKDNAPA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64SAFA#issuecomment-532226068",
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK6BURTVLZL4YPYM42LQKDNAPA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64SAFA#issuecomment-532226068",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80e287f1000_1dc93ff788acd96436448b--


From nobody Tue Sep 17 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 E2D5512085B for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 07:21: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 hHX6gp0UvXCQ for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 07:21: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 4E1BF120855 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 07:21:32 -0700 (PDT)
Date: Tue, 17 Sep 2019 07:21:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568730091; bh=h3BK/btwmgRbwUhKHUosKJQPWn1f8b5+FgbV6uv01Ak=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=u6JbnIWmKwtBO7wwmAbfPem+K0eI4M/Ob4zZaYsOqMVdWrjEPqQlw03F4Pq9+bQxC RgSV9C2zJqwfF1OLjkPprNZO+qYsmcXonOLz77ZeGA/KCwyieoBhmOiA01J7esSE/l YyNWIvCFT/F+qyJrglhwPNBdvaiWA23j3KDmYfvQ=
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK27PBMBTIYGBXGDYOF3RYWHXEVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/c532243299@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80ebeb7ae66_568d3fe29d0cd964272941"; 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/5qH8kJQIENBrAahGA_daB995XWU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 14:21:34 -0000

----==_mimepart_5d80ebeb7ae66_568d3fe29d0cd964272941
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I share @nibanks's concern:  The pain in the ass would be quite real.  Is post-quantum crypto in scope?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3045#issuecomment-532243299
----==_mimepart_5d80ebeb7ae66_568d3fe29d0cd964272941
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I share <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>'s concern:  The pain in the ass would be quite real.  Is post-quantum crypto in scope?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications&amp;email_token=AFTOJKYJZCXMZ2H6KB6WBILQKDRWXA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64WGYY#issuecomment-532243299">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYLRO6FVWAR6GHREHDQKDRWXANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2JUWHGK2HDAOGZOVTQKDRWXA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64WGYY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJKYJZCXMZ2H6KB6WBILQKDRWXA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64WGYY#issuecomment-532243299",
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJKYJZCXMZ2H6KB6WBILQKDRWXA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64WGYY#issuecomment-532243299",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80ebeb7ae66_568d3fe29d0cd964272941--


From nobody Tue Sep 17 07:40: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 B313B120884 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 07:40: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 zMzlCGiL4717 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 07:40:25 -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 62579120870 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 07:40:19 -0700 (PDT)
Date: Tue, 17 Sep 2019 07:40:18 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568731218; bh=ojfPWnY+C8LGpHxJgbYYj26DneXNy5Zrs1u73gy8yR0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Ueg/D6PurtVQ2GfPg9whDdKR98+OLfZ2IOB7ay5mkXRRxbpDzX45WxbrEgJnstM6+ Y/v9HB1FTCc6V8vliHMOGAUaUG1NJCD1pOZvlba7tDFdOLEqq7HwQIG7h7TxDwYypI Zp1iodSRa83ZV1lljNJHF4sEuI4iRxkcnRxKZ8wg=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY7P2VAON54BOEHXHV3RYRNFEVBNHHB25D7KM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3037/532251562@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3037@github.com>
References: <quicwg/base-drafts/issues/3037@github.com>
Subject: Re: [quicwg/base-drafts] Require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3037)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80f0524c1dd_7a713fd7e3ccd9681124a9"; 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/qcGMQBsSpHtuH0SjsY4Cr0c-Rys>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 14:40:27 -0000

----==_mimepart_5d80f0524c1dd_7a713fd7e3ccd9681124a9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett 
> However, if you sent NEW_CONNECTION_ID, I don't think it's optional to not correctly process RETIRE_CONNECTION_ID, and that's the question here(I copy-pasted the paragraph above).

Thank you for clarifying your position. I'd be perfectly fine if the intent of the proposed change is to  require validation _if the endpoint has sent a NEW_CONNECTION_ID frame_. My problem has been that I have been uncertain if the proposed change meant that; I'd be happy to proposed editorial tweaks to better clarify that.

@nibanks By saying "force a peer to start using new connection IDs", I think you are referring to the Retire Prior To field of the NEW_CONNECTION_ID frame. That's a SHOULD (as the text currently says), IIRC we have agreed on 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/3037#issuecomment-532251562
----==_mimepart_5d80f0524c1dd_7a713fd7e3ccd9681124a9
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></p>
<blockquote>
<p>However, if you sent NEW_CONNECTION_ID, I don't think it's optional to not correctly process RETIRE_CONNECTION_ID, and that's the question here(I copy-pasted the paragraph above).</p>
</blockquote>
<p>Thank you for clarifying your position. I'd be perfectly fine if the intent of the proposed change is to  require validation <em>if the endpoint has sent a NEW_CONNECTION_ID frame</em>. My problem has been that I have been uncertain if the proposed change meant that; I'd be happy to proposed editorial tweaks to better clarify that.</p>
<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> By saying "force a peer to start using new connection IDs", I think you are referring to the Retire Prior To field of the NEW_CONNECTION_ID frame. That's a SHOULD (as the text currently says), IIRC we have agreed on 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/3037?email_source=notifications&amp;email_token=AFTOJK7D3V54QRPVLCMN7ELQKDT5FA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64YHKQ#issuecomment-532251562">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYPE4UPDKASOYBPZW3QKDT5FANCNFSM4IXFBLRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7MITEY3WW7L226GLDQKDT5FA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64YHKQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK7D3V54QRPVLCMN7ELQKDT5FA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64YHKQ#issuecomment-532251562",
"url": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK7D3V54QRPVLCMN7ELQKDT5FA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64YHKQ#issuecomment-532251562",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80f0524c1dd_7a713fd7e3ccd9681124a9--


From nobody Tue Sep 17 07: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 E1E011208C6 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 07:43: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 McQ0NbHAPM0o for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 07:43:38 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B09871208CF for <quic-issues@ietf.org>; Tue, 17 Sep 2019 07:43:37 -0700 (PDT)
Date: Tue, 17 Sep 2019 07:43:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568731416; bh=r9/sqOkalGFMtXOC/v2U8UI7wTf900ivwMyleL+BVRQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vJClJdC65+gMbMySnQIktkRcMfz4uGcQsZkHoaiWqruAAO8uQ6EFDJ6GJyhUVDYEv mWEj+ob7ntaL/Y/KZoeHz4ROSWIk5UN+bF/0roPVLCJbNI3HW5C/h3nRTuw8wv5yPC pkIrl2kVP4+VGTMxlX3LJ2JE7sNzHEx19j1kW1x8=
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5RBUPCB3AD5CW5XBF3RYY2REVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/532252934@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80f118d2d69_cc73ff6404cd96811117e"; 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/vp9ZT8ggzCKUh7lCmS_1ANxFjOw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 14:43:41 -0000

----==_mimepart_5d80f118d2d69_cc73ff6404cd96811117e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

To quote the paper @janaiyengar links to above:

> Traces of Internet packets from the past two years show that between 1 packet in 1,100 and 1 packet in 32,000 fails the TCP checksum

That translates to less than 0.1% error rate on the high side.  We already know that a significant percentage of QUIC connections will fail -- 3%, IIRC, according to Google -- for other reasons.  <0.1% is 3% of the 3%...  Is it worth 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/3014#issuecomment-532252934
----==_mimepart_5d80f118d2d69_cc73ff6404cd96811117e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>To quote the paper <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> links to above:</p>
<blockquote>
<p>Traces of Internet packets from the past two years show that between 1 packet in 1,100 and 1 packet in 32,000 fails the TCP checksum</p>
</blockquote>
<p>That translates to less than 0.1% error rate on the high side.  We already know that a significant percentage of QUIC connections will fail -- 3%, IIRC, according to Google -- for other reasons.  &lt;0.1% is 3% of the 3%...  Is it worth 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/3014?email_source=notifications&amp;email_token=AFTOJKZPQABJHK3HV36UXOTQKDUJRA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64YSBQ#issuecomment-532252934">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYA3PCQJCTNOAXQBW3QKDUJRANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3NX3ZDHDZCBZBI2ITQKDUJRA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64YSBQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJKZPQABJHK3HV36UXOTQKDUJRA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64YSBQ#issuecomment-532252934",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJKZPQABJHK3HV36UXOTQKDUJRA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64YSBQ#issuecomment-532252934",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80f118d2d69_cc73ff6404cd96811117e--


From nobody Tue Sep 17 07:44: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 667DA1208E5 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 07:44:06 -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 9dyeIAQ6kCPE for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 07:44: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 CC906120903 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 07:44:04 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id ED0CD8C1EAA for <quic-issues@ietf.org>; Tue, 17 Sep 2019 07:44:03 -0700 (PDT)
Date: Tue, 17 Sep 2019 07:44:03 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6MN3ZH7SSPZCMP7WV3RYY4HEVBNHHB25D7KM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3037/532253120@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3037@github.com>
References: <quicwg/base-drafts/issues/3037@github.com>
Subject: Re: [quicwg/base-drafts] Require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3037)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80f133dd571_3f163fb0446cd96c13386"; 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/iubkUre6D2IygHiTJ8tezTX9C94>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 14:44:10 -0000

----==_mimepart_5d80f133dd571_3f163fb0446cd96c13386
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

If you've never sent a NEW_CONNECTION_ID, how could receiving a RETIRE_CONNECTION_ID frame ever be valid?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3037#issuecomment-532253120
----==_mimepart_5d80f133dd571_3f163fb0446cd96c13386
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>If you've never sent a NEW_CONNECTION_ID, how could receiving a RETIRE_CONNECTION_ID frame ever be valid?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications&amp;email_token=AFTOJKYUDZHPG6CHUKD7N23QKDULHA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64YTQA#issuecomment-532253120">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3YT4PSEVG7QUPANPDQKDULHANCNFSM4IXFBLRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7UBMTRC2E5OF6GEN3QKDULHA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64YTQA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJKYUDZHPG6CHUKD7N23QKDULHA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64YTQA#issuecomment-532253120",
"url": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJKYUDZHPG6CHUKD7N23QKDULHA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64YTQA#issuecomment-532253120",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80f133dd571_3f163fb0446cd96c13386--


From nobody Tue Sep 17 07:47: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 7FEAD1208D8 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 07:47:06 -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 QE8Ko0Jq-5Ja for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 07:47: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 B06AC1208EA for <quic-issues@ietf.org>; Tue, 17 Sep 2019 07:47:04 -0700 (PDT)
Date: Tue, 17 Sep 2019 07:47:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568731623; bh=SD+ke/0HEQSYFOFpRfeTdaWaCkStyEYvisW6GgpSy5U=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GrQ+ED5G7wVmva/dcb/2yYXe1/iwBYYf+l6IxuqjGhbYNKTIEg8Tx8GYgQa2AmRnX 2UfnGxLZWddReU/zDSbxYDUlLxssW4WnM3oowf3vXeXHufsTFZukP48/Qt0FcLJFlC 8mLrif+XVy0RxQ2pHr0FKX0zAV+wa39pLd1Mxg4w=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK334XKSMVEOMGU5LB53RYZHPEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/532254468@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80f1e7a0da0_4ae33fdf83acd9681222b3"; 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/rkSfZOcq4E_7FayivxA6FYkTgeM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 14:47:11 -0000

----==_mimepart_5d80f1e7a0da0_4ae33fdf83acd9681222b3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think the concern here is not that the handshake fails, but that it takes a long time to fail in a circumstance where UDP connectivity does work.  Chrome currently uses quite a short handshake timeout of 4 seconds, but if clients use longer timeouts, then users could wait a long time in this unrecoverable state.

I think UDP checksums are probably sufficient here, but these long timeout based handshake failures are very user visible.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-532254468
----==_mimepart_5d80f1e7a0da0_4ae33fdf83acd9681222b3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I think the concern here is not that the handshake fails, but that it takes a long time to fail in a circumstance where UDP connectivity does work.  Chrome currently uses quite a short handshake timeout of 4 seconds, but if clients use longer timeouts, then users could wait a long time in this unrecoverable state.</p>
<p>I think UDP checksums are probably sufficient here, but these long timeout based handshake failures are very user visible.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJK5N7K24QIGJLSQNQJ3QKDUWPA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64Y6BA#issuecomment-532254468">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ4Q2OSZMEXT44TMWTQKDUWPANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3QFHMSASW5YWUAS7LQKDUWPA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64Y6BA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK5N7K24QIGJLSQNQJ3QKDUWPA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64Y6BA#issuecomment-532254468",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK5N7K24QIGJLSQNQJ3QKDUWPA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64Y6BA#issuecomment-532254468",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80f1e7a0da0_4ae33fdf83acd9681222b3--


From nobody Tue Sep 17 07: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 06381120059 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 07:52:14 -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 18R5oCtjucvJ for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 07:52:07 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 605F2120045 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 07:52:07 -0700 (PDT)
Date: Tue, 17 Sep 2019 07:52:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568731926; bh=K+dc+2YQ9OD4lHMiYE4dJz8eebVWgFS8NXsWaFjBSSs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=PT70AK3pnz3q9jAv6AtF36GiueXsUlsLnhEWCC1L46/nkftA7thzpBmkxdcmWl+mC JDN1cMXE03TrHsy27GVWkJQUEbQkqr3Z8Lwjy5xb6/d854s4jw+6pKcMaF7UnnrdQW oR0z1zSZ5z4TPAxpOktcbwMkaAEOr8H3i+K3WuOE=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7JBD5XOCFJVEC4X353RYZ2NEVBNHHB25D7KM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3037/532256732@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3037@github.com>
References: <quicwg/base-drafts/issues/3037@github.com>
Subject: Re: [quicwg/base-drafts] Require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3037)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80f31667867_3b5c3fdbbfacd96c20302b"; 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/UhtNbXkbv5jTXCHNfPEAEF24jI8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 14:52:14 -0000

----==_mimepart_5d80f31667867_3b5c3fdbbfacd96c20302b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho sorry. You're right, I mean the NEW_CONNECTION_ID frame's Retire Prior To field. But I disagree on your interpretation of the `SHOULD`:
> 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.

The `SHOULD` is for `in a timely manner`. If you don't do it, the connection **will** eventually break, likely via a 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/3037#issuecomment-532256732
----==_mimepart_5d80f31667867_3b5c3fdbbfacd96c20302b
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> sorry. You're right, I mean the NEW_CONNECTION_ID frame's Retire Prior To field. But I disagree on your interpretation of the <code>SHOULD</code>:</p>
<blockquote>
<p>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.</p>
</blockquote>
<p>The <code>SHOULD</code> is for <code>in a timely manner</code>. If you don't do it, the connection <strong>will</strong> eventually break, likely via a 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/3037?email_source=notifications&amp;email_token=AFTOJK7I27NYUJJFN33OOQLQKDVJNA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64ZPXA#issuecomment-532256732">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3SM6HV4TSLPDKKOI3QKDVJNANCNFSM4IXFBLRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3NDMOFHEUEKRFS2L3QKDVJNA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64ZPXA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK7I27NYUJJFN33OOQLQKDVJNA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64ZPXA#issuecomment-532256732",
"url": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK7I27NYUJJFN33OOQLQKDVJNA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64ZPXA#issuecomment-532256732",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80f31667867_3b5c3fdbbfacd96c20302b--


From nobody Tue Sep 17 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 908C4120059 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 07:54:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.28
X-Spam-Level: 
X-Spam-Status: No, score=-6.28 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, 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 cxzlHAJNkqRd for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 07:54: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 C74A8120045 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 07:54:57 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id D2781C60588 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 07:54:56 -0700 (PDT)
Date: Tue, 17 Sep 2019 07:54:56 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYUJKCSKQZMYGLPM4F3RYTEBEVBNHHB25D7KM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3037/532258112@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3037@github.com>
References: <quicwg/base-drafts/issues/3037@github.com>
Subject: Re: [quicwg/base-drafts] Require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3037)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80f3c0c0428_70f43f9f2f2cd964212642"; 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/dIY_QJtn8mO1ZsWZxUE3sgKs13Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 14:55:00 -0000

----==_mimepart_5d80f3c0c0428_70f43f9f2f2cd964212642
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett The preferred_address TP. An endpoint is allowed, even though not required, to send a RETIRE_CONNECTION_ID frame to retire a CID used during handshake. Quoting from [section 19.16](https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#rfc.section.19.16): _An endpoint sends a RETIRE_CONNECTION_ID frame (type=0x19) to indicate that it will no longer use a connection ID that was issued by its peer. This may include the connection ID provided during the handshake._

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3037#issuecomment-532258112
----==_mimepart_5d80f3c0c0428_70f43f9f2f2cd964212642
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> The preferred_address TP. An endpoint is allowed, even though not required, to send a RETIRE_CONNECTION_ID frame to retire a CID used during handshake. Quoting from <a href="https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#rfc.section.19.16" rel="nofollow">section 19.16</a>: <em>An endpoint sends a RETIRE_CONNECTION_ID frame (type=0x19) to indicate that it will no longer use a connection ID that was issued by its peer. This may include the connection ID provided during the handshake.</em></p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications&amp;email_token=AFTOJK3YGBNHYIGP7SM6XF3QKDVUBA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64Z2QA#issuecomment-532258112">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3VO4VUMDVAXPVR6XLQKDVUBANCNFSM4IXFBLRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2MTPMTDZO5LUOF3NLQKDVUBA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64Z2QA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK3YGBNHYIGP7SM6XF3QKDVUBA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64Z2QA#issuecomment-532258112",
"url": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK3YGBNHYIGP7SM6XF3QKDVUBA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD64Z2QA#issuecomment-532258112",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80f3c0c0428_70f43f9f2f2cd964212642--


From nobody Tue Sep 17 08: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 D362C120801 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 08:01: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 8Pnnb-OF9rtZ for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 08:01: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 43E6F1208A5 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 08:00:50 -0700 (PDT)
Date: Tue, 17 Sep 2019 08:00:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568732449; bh=XahCwTmdFg+T0oZHgUtdh7ieZwaXEeok50IEDer6MeA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=r6w33S2MGoQGnebwi5Hgqj60grNhyedsFhaAcrlZTsgX/OPib8YKELAjTFeg42mA1 6a/8JA4YE20ZFDfRkzNXUSXBAUpjFNFou+3R8txwMElXwUQnk8UWtPl2vsh6nvHNgJ 00ljPV7gdHvEswpYAhrMTMgAh8kDqqCTB6267O+M=
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZQXSZRV3R7XCYDSKV3RY23DEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/532260949@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d80f5213fb73_7fa63fba278cd9641222b4"; 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/YqzNsanSjieYjk2lCzcCIkVxiGg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 15:01:06 -0000

----==_mimepart_5d80f5213fb73_7fa63fba278cd9641222b4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho writes:
> Therefore, IMO use of GMAC would be a reasonable choice _if we decide to give it a checksum_.

This is an overkill.  Just use CRC32, which is simple, cheap (there is a dedicated CPU instruction for it!), and does what we need.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-532260949
----==_mimepart_5d80f5213fb73_7fa63fba278cd9641222b4
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> writes:</p>
<blockquote>
<p>Therefore, IMO use of GMAC would be a reasonable choice <em>if we decide to give it a checksum</em>.</p>
</blockquote>
<p>This is an overkill.  Just use CRC32, which is simple, cheap (there is a dedicated CPU instruction for it!), and does what we need.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJKYRD7BHK4DNT5QETITQKDWKDA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD642QVI#issuecomment-532260949">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4JDOFDQ36I3A5GXTTQKDWKDANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK26DHZPHYTZD77Z5JTQKDWKDA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD642QVI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJKYRD7BHK4DNT5QETITQKDWKDA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD642QVI#issuecomment-532260949",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJKYRD7BHK4DNT5QETITQKDWKDA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD642QVI#issuecomment-532260949",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d80f5213fb73_7fa63fba278cd9641222b4--


From nobody Tue Sep 17 08:56: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 1F3151200D8 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 08:56: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 RePmpPsq8rNN for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 08:56: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 7CE3012009E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 08:56:12 -0700 (PDT)
Date: Tue, 17 Sep 2019 08:56:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568735771; bh=BJUyw/MTneTpZe5PXXzSlPakh4nG5r4q0yBxriTPLCQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DArPEIgkWJaiyJUXx+tZ3VVd4R/BX7UXS7yOrdutk9/JxkZ+LkJmoCrKtAfqAZNiW ZZgL6+xet4MxWW5DyyK7zrdSpL9axHGfWNhGbefi0h9sN1uvSOwn3Q99cI68VXUF4U SYXFIUBPNkoQtOZ3tDUcY9bD7DmVLGzr+eeLDxLU=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2FH7HKFLCKZLLXEQV3RY2JXEVBNHHB25D7KM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3037/532284657@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3037@github.com>
References: <quicwg/base-drafts/issues/3037@github.com>
Subject: Re: [quicwg/base-drafts] Require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3037)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81021b6bfc5_16f13fdc1c6cd9682030f3"; 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/eJvGHl5whgIfQq_UR7JVGzMAbz4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 15:56:14 -0000

----==_mimepart_5d81021b6bfc5_16f13fdc1c6cd9682030f3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@nibanks 
> The `SHOULD` is for `in a timely manner`. If you don't do it, the connection will eventually break, likely via a stateless reset.

The question is the intent of using "SHOULD in a timely manner" rather than "MUST in a timely manner". Yes, the connection would break, if the receiver does not migrate to a new connection ID. However, because we use a SHOULD, that is one of the expected outcomes when an endpoint sends a NEW_CONNECTION_ID frame carrying non-zero Retire Prior To field.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3037#issuecomment-532284657
----==_mimepart_5d81021b6bfc5_16f13fdc1c6cd9682030f3
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></p>
<blockquote>
<p>The <code>SHOULD</code> is for <code>in a timely manner</code>. If you don't do it, the connection will eventually break, likely via a stateless reset.</p>
</blockquote>
<p>The question is the intent of using "SHOULD in a timely manner" rather than "MUST in a timely manner". Yes, the connection would break, if the receiver does not migrate to a new connection ID. However, because we use a SHOULD, that is one of the expected outcomes when an endpoint sends a NEW_CONNECTION_ID frame carrying non-zero Retire Prior To field.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications&amp;email_token=AFTOJK36VMT3SX5LD4BP7N3QKD4ZXA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65AJ4I#issuecomment-532284657">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK56C4SFQTEFSH3YC33QKD4ZXANCNFSM4IXFBLRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3U42JTDQM7Z5UAHPDQKD4ZXA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65AJ4I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK36VMT3SX5LD4BP7N3QKD4ZXA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65AJ4I#issuecomment-532284657",
"url": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK36VMT3SX5LD4BP7N3QKD4ZXA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65AJ4I#issuecomment-532284657",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81021b6bfc5_16f13fdc1c6cd9682030f3--


From nobody Tue Sep 17 09:02: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 07BDC120113 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:02:07 -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 l9FGsvY5QoMf for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:02: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 52BC712010F for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:02:05 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 8BCFA8C1DFF for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:02:04 -0700 (PDT)
Date: Tue, 17 Sep 2019 09:02:04 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6Y2747SE4BAU2JZCF3RZCAZEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/532287119@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81037c7c9b3_54fb3f884e4cd96441899c"; 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/jizFSlnFHSsrh7ii0TPMVKTJGfo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 16:02:07 -0000

----==_mimepart_5d81037c7c9b3_54fb3f884e4cd96441899c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Not arguing against CRC but intels CRC instruction is not necessarily standard CRC checksum for reasons that elude 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/3014#issuecomment-532287119
----==_mimepart_5d81037c7c9b3_54fb3f884e4cd96441899c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Not arguing against CRC but intels CRC instruction is not necessarily standard CRC checksum for reasons that elude 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/3014?email_source=notifications&amp;email_token=AFTOJK3WO4UGX6KUVY5WRVTQKD5PZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65A5DY#issuecomment-532287119">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6R42EIRY7EG3VDMB3QKD5PZANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK52LPBNIH5AXIJW3YDQKD5PZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65A5DY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK3WO4UGX6KUVY5WRVTQKD5PZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65A5DY#issuecomment-532287119",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK3WO4UGX6KUVY5WRVTQKD5PZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65A5DY#issuecomment-532287119",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81037c7c9b3_54fb3f884e4cd96441899c--


From nobody Tue Sep 17 09:02: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 B33891208A5 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:02: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 98NaudDPpdDW for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:02: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 992AB12087E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:02:37 -0700 (PDT)
Date: Tue, 17 Sep 2019 09:02:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568736156; bh=VTJWgNAKGTaSiAk7iVXni+LQ8LycdryP00Hh6n2yeps=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BDOJkcxuXyGoiG3ZQukCnW6k4+otAQk9uNdlDW8L+GtV6iAVGlLELv5eye7OQynEE uubOQvZ7O5MP1++jVBCLNBp97vuqHb1yEqHFqf3pG+rDtu6L9ISd4mXFOJ4JEKSdwl /TSOlukQ7CuPcB3Vli5Cdc6dKON58oG4TAgkN6aY=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY5SHZCBW37KTKG6253RY3BZEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/532287312@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81039c858a2_33a63fafa14cd96c265736"; 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/0ZvdZBri9QDD0UQ--UkHXsT73AM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 16:02:43 -0000

----==_mimepart_5d81039c858a2_33a63fafa14cd96c265736
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@dtikhonov As people have been discussing, use of AES-GCM (or GMAC) is a simplification in terms of code reuse and also provides us the chance to get rid of the ODCID field. 

Clarification: GMAC is any-cipher-with-GCM with zero-byte encrypted text, so if it's going to be called AES-GCM or GMAC simply depends on if we decide to encrypt the token. If we are going to make the use of the QUIC-level checksum an optional feature, it would make more sense to not encrypt the token regardless of the QUIC-level checksum being used - which means GMAC.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-532287312
----==_mimepart_5d81039c858a2_33a63fafa14cd96c265736
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=4528576" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dtikhonov">@dtikhonov</a> As people have been discussing, use of AES-GCM (or GMAC) is a simplification in terms of code reuse and also provides us the chance to get rid of the ODCID field.</p>
<p>Clarification: GMAC is any-cipher-with-GCM with zero-byte encrypted text, so if it's going to be called AES-GCM or GMAC simply depends on if we decide to encrypt the token. If we are going to make the use of the QUIC-level checksum an optional feature, it would make more sense to not encrypt the token regardless of the QUIC-level checksum being used - which means GMAC.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJK6VNAGOUJMWZTDDGQDQKD5RZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65A6UA#issuecomment-532287312">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3XYYGDMF7AGLL6MX3QKD5RZANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7ANXQ4SWFZICWMA3TQKD5RZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65A6UA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK6VNAGOUJMWZTDDGQDQKD5RZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65A6UA#issuecomment-532287312",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK6VNAGOUJMWZTDDGQDQKD5RZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65A6UA#issuecomment-532287312",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81039c858a2_33a63fafa14cd96c265736--


From nobody Tue Sep 17 09:06: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 574CA1208C7 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:06:16 -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 wEkWGlqsojRZ for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:06: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 0DC3E1208C5 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:06:14 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 334626611BF for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:06:14 -0700 (PDT)
Date: Tue, 17 Sep 2019 09:06:14 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYZM2WP3AHMJK6VHON3RY3PNEVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/c532288795@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81047625960_3e4b3f927e8cd96c1001b5"; 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/c67BP8bjjjYj6fyYTLxfTe-_OqA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 16:06:16 -0000

----==_mimepart_5d81047625960_3e4b3f927e8cd96c1001b5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@nibanks 
> As a server, would I be required to support multi-packet client initials?

I'd point out that endpoints are already required to support muti-packet client Initials when the TLS handshake uses HRR. Therefore, IMO the PR does not add new threats.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3045#issuecomment-532288795
----==_mimepart_5d81047625960_3e4b3f927e8cd96c1001b5
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></p>
<blockquote>
<p>As a server, would I be required to support multi-packet client initials?</p>
</blockquote>
<p>I'd point out that endpoints are already required to support muti-packet client Initials when the TLS handshake uses HRR. Therefore, IMO the PR does not add new threats.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications&amp;email_token=AFTOJK7UW4CRRXXZXNKZYSTQKD57NA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65BKGY#issuecomment-532288795">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY4SDHTE7JZVNZ7LVDQKD57NANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5OTCQBDIVWLYARHT3QKD57NA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65BKGY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK7UW4CRRXXZXNKZYSTQKD57NA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65BKGY#issuecomment-532288795",
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK7UW4CRRXXZXNKZYSTQKD57NA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65BKGY#issuecomment-532288795",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81047625960_3e4b3f927e8cd96c1001b5--


From nobody Tue Sep 17 09:13: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 C86B5120890 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:13: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 TlPcOIFAx8A0 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:13: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 1A43B1208A2 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:13:08 -0700 (PDT)
Date: Tue, 17 Sep 2019 09:13:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568736787; bh=4vIyOpvzsnzkRlbYn7XFAJDNjCtUPv9Cfldibg0GKJM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=B65AxHfz5iIzC9KAVKrr90Z/LP0OR3SocRkQLmR27y7A4Hoacs5DtDgt/LETT8fts 5ovsjN1b721Ozt3wLMkrvNKx5+5dzt5KsLYAyOBN8s2ybwWQEDgXS/hY2GCcX2N+Wu e29MV0qUHdBsIYRaW7KP70n5m4xI672xnmnVpPq0=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK77V4LT4GUOFFA3RNF3RY4JFEVBNHHB257M5U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3043/review/289382937@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3043@github.com>
References: <quicwg/base-drafts/pull/3043@github.com>
Subject: Re: [quicwg/base-drafts] TLS application data isn't possible (#3043)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d810612ec1f7_681b3f9a21ccd9688442a"; 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/UCUDwgL8GNNAE1w0Av_LwQBD-6c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 16:13:10 -0000

----==_mimepart_5d810612ec1f7_681b3f9a21ccd9688442a
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/3043#pullrequestreview-289382937
----==_mimepart_5d810612ec1f7_681b3f9a21ccd9688442a
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/3043?email_source=notifications&amp;email_token=AFTOJK3UT6UMN4Y3NXJLH6TQKD6ZFA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE72EGI#pullrequestreview-289382937">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK46U5ALF3ULTREPX73QKD6ZFANCNFSM4IXKSJ7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7JXJFV5YZG6WTHUYTQKD6ZFA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE72EGI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJK3UT6UMN4Y3NXJLH6TQKD6ZFA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE72EGI#pullrequestreview-289382937",
"url": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJK3UT6UMN4Y3NXJLH6TQKD6ZFA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE72EGI#pullrequestreview-289382937",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d810612ec1f7_681b3f9a21ccd9688442a--


From nobody Tue Sep 17 09:14: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 C7C51120913 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:14: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 NbFQ9HaTujEF for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:14:33 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 72DAD12090F for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:14:17 -0700 (PDT)
Date: Tue, 17 Sep 2019 09:14:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568736856; bh=gpf0ouuzAmDdMJsVu3nNj/k+R6/vMvPNWk3NS/tEoI0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0VC25mofi5dvHNF6RETArohb9hfUPDcxnWS8HCdspY0mHbzsquL1HaAK2377op9HR VjJSZhkkdUwlQgrAn93jdRnb0J8/AS834fA5ierwFu5n2vaAuGsSgPAjxTrzzdhQeU 1lF6kbnldOrkMQJ6+gkYOBP3ZTMvo2OxVYlFydv4=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5G6TXRA422DOU64P53RZDOREVBNHHB25D7KM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3037/532291883@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3037@github.com>
References: <quicwg/base-drafts/issues/3037@github.com>
Subject: Re: [quicwg/base-drafts] Require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3037)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8106586568e_38583f882decd96c1102f8"; 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/NwoJ-qSWyDLFLoNzFuUQIfjkQIc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 16:14:35 -0000

----==_mimepart_5d8106586568e_38583f882decd96c1102f8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho it sounds like you're arguing that it's an acceptable trade off for clients that don't want to implement support for the Retire Prior To field. I hope that isn't what you're saying. As it is, I'm thinking I'm going to have to add some greasing for this feature to WinQuic.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3037#issuecomment-532291883
----==_mimepart_5d8106586568e_38583f882decd96c1102f8
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> it sounds like you're arguing that it's an acceptable trade off for clients that don't want to implement support for the Retire Prior To field. I hope that isn't what you're saying. As it is, I'm thinking I'm going to have to add some greasing for this feature to WinQuic.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications&amp;email_token=AFTOJK3UUJ2LGWJ4QS62RZ3QKD65RA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65CCKY#issuecomment-532291883">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYKGIMAYJQ4MJLMSS3QKD65RANCNFSM4IXFBLRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7UD5AU7CLNX3U6UX3QKD65RA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65CCKY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK3UUJ2LGWJ4QS62RZ3QKD65RA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65CCKY#issuecomment-532291883",
"url": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK3UUJ2LGWJ4QS62RZ3QKD65RA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65CCKY#issuecomment-532291883",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8106586568e_38583f882decd96c1102f8--


From nobody Tue Sep 17 09: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 84EDC120916 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:16:51 -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 dcRH4NzatEXN for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:16:49 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5F8AF1208FF for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:16:49 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 87D04520855 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:16:48 -0700 (PDT)
Date: Tue, 17 Sep 2019 09:16:48 -0700
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZQGWYQSICFWFKI5GN3RZDYBEVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/c532292790@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8106f0792b2_2c883f8b216cd96416017d"; 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/ppl5kTmJTFKkjJr1__omK_V4jww>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 16:16:52 -0000

----==_mimepart_5d8106f0792b2_2c883f8b216cd96416017d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

HRR is not stateless (at the QUIC layer) though, correct? The client's first packet still must completely contain ALPN and (optionally) SNI. That information is used by WinQuic to decide initially if the connection should be accepted and more server resources commit to processing the connection. Adding another point to the QUIC layer to decide if Retry is needed is additional 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/pull/3045#issuecomment-532292790
----==_mimepart_5d8106f0792b2_2c883f8b216cd96416017d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>HRR is not stateless (at the QUIC layer) though, correct? The client's first packet still must completely contain ALPN and (optionally) SNI. That information is used by WinQuic to decide initially if the connection should be accepted and more server resources commit to processing the connection. Adding another point to the QUIC layer to decide if Retry is needed is additional 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/pull/3045?email_source=notifications&amp;email_token=AFTOJK6BFITBANCAUO4W33LQKD7HBA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65CJNQ#issuecomment-532292790">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2WCR2HSC4YOAIYI6TQKD7HBANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5QSVEOBSN6IGH7FVDQKD7HBA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65CJNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK6BFITBANCAUO4W33LQKD7HBA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65CJNQ#issuecomment-532292790",
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK6BFITBANCAUO4W33LQKD7HBA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65CJNQ#issuecomment-532292790",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8106f0792b2_2c883f8b216cd96416017d--


From nobody Tue Sep 17 09:18: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 E1CF612091C for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:18: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 yiVJNYOAcmyN for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:18:07 -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 BE64A1208FF for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:18:07 -0700 (PDT)
Date: Tue, 17 Sep 2019 09:18:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568737087; bh=ORCxU5rkvQgvCsVda+ID3A9XjEFrAXd8s3EM/7IINrA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KKFnRCurdCsIQW7pT5JvkUwVXTpd2m1YrQYSCJq0jAX/dYH6HyqXmYo05KIv5dAPv pEI9YwZF08w3wIDZADK2RXJxvLbE3Wkn/ql28ZTCF6pNjuRdfH8rl0OTt2SfByXM9T 8AUxPpu5RevBMdGDQKvu09JO0qDx7K+3YGAOum6w=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK24LMYFJNDEFKSQN7N3RZD47EVBNHHB257M5U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3043/review/289386164@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3043@github.com>
References: <quicwg/base-drafts/pull/3043@github.com>
Subject: Re: [quicwg/base-drafts] TLS application data isn't possible (#3043)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81073f2086e_435a3fe9b04cd96461781"; 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/rJc4AMz2ZvETO6VtBNxHwK2Pz5k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 16:18:09 -0000

----==_mimepart_5d81073f2086e_435a3fe9b04cd96461781
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/3043#pullrequestreview-289386164
----==_mimepart_5d81073f2086e_435a3fe9b04cd96461781
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/3043?email_source=notifications&amp;email_token=AFTOJK2BB7VHR3O5A7QPLO3QKD7L7A5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE725NA#pullrequestreview-289386164">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2N74DJBEFUNDMHNCTQKD7L7ANCNFSM4IXKSJ7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4LDERK65C6RETQIDLQKD7L7A5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE725NA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJK2BB7VHR3O5A7QPLO3QKD7L7A5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE725NA#pullrequestreview-289386164",
"url": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJK2BB7VHR3O5A7QPLO3QKD7L7A5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE725NA#pullrequestreview-289386164",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81073f2086e_435a3fe9b04cd96461781--


From nobody Tue Sep 17 09:20: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 5920012091E for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:20:42 -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 sesIRKJs1bqk for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:20:40 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BE18712088C for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:20:40 -0700 (PDT)
Date: Tue, 17 Sep 2019 09:20:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568737240; bh=v/vdpoM7+fpfJDPJY92JiACWSOcgBl+RMIzgNHXItdI=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=KaGXJffK8ezZydbDNiq3SUqFB7c3dWlg6An7Ig6Ma7nPulXrQei7Gyo9QyQz7CT7o S9gu6g9vXPAZSBoLCFzELlwLRakBjwXOUfzzOpctuDuiEt7i9eMFrLrD3YvaFMZ0kC iB4llvutibxM3giDiq5GDWDNCmGVLKZUiUCxEYZg=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4KWTJC2YCR3A6UX5V3RY5FPEVBNHHB27HBVI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3046@github.com>
Subject: [quicwg/base-drafts] Handling of Retire Prior To field (#3046)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8107d7e4dd0_1e023ff2cb2cd96014375e"; 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/QK6h08e6fhWmYWtfkP3QZ9h5jd0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 16:20:42 -0000

----==_mimepart_5d8107d7e4dd0_1e023ff2cb2cd96014375e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

At the moment, [section 5.1.2](https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#rfc.section.5.1.2) states, quote: _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._

As the text uses "SHOULD" rather than a "MUST", some view it as an optional requirement to switch to using a new connection ID in such a situation. Others think that it is a mandatory requirement for an endpoint to switch to a new connection ID.

If we are to consider the latter behavior to be the case, I think the text should better be changed to "**MUST** retire the corresponding connection IDs and send the corresponding RETIRE_CONNECTION_ID frames in a timely manner".

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3046
----==_mimepart_5d8107d7e4dd0_1e023ff2cb2cd96014375e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>At the moment, <a href="https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#rfc.section.5.1.2" rel="nofollow">section 5.1.2</a> states, quote: <em>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.</em></p>
<p>As the text uses "SHOULD" rather than a "MUST", some view it as an optional requirement to switch to using a new connection ID in such a situation. Others think that it is a mandatory requirement for an endpoint to switch to a new connection ID.</p>
<p>If we are to consider the latter behavior to be the case, I think the text should better be changed to "<strong>MUST</strong> retire the corresponding connection IDs and send the corresponding RETIRE_CONNECTION_ID frames in a timely manner".</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications&amp;email_token=AFTOJK4SCY73YGRXBRSGRS3QKD7VPA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HL44GVA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK56RZC2CO337M7Y5XDQKD7VPANCNFSM4IXSLCQA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2BBM3NKN24NTK3WXTQKD7VPA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HL44GVA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJK4SCY73YGRXBRSGRS3QKD7VPA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HL44GVA",
"url": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJK4SCY73YGRXBRSGRS3QKD7VPA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HL44GVA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8107d7e4dd0_1e023ff2cb2cd96014375e--


From nobody Tue Sep 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 18315120930 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:23: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 ehTkR2gj-dW6 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:23: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 5C37D120926 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:23:54 -0700 (PDT)
Date: Tue, 17 Sep 2019 09:23:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568737433; bh=9UUYMr+/yutFZkQ0yPh1I1tiXbbhM7jdXj251uxnlCU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ytdyc5BuSjH1mfWv1QW6M+5/iza1nhc6ljdRwehIUb0kRKbU2ZdDEYwb47F05JPIJ MM6kWXveZ3vdMia6GbicAmWvWwVdvu1aRjo3Dxu+CNqp5aCy4Aac2VETD6Yqrpa3M8 qPSePIg4xMfOzZIDcpvbZxzstfEudhbcUt6UiSCk=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZEU55AEUBXSWBAVI53RY5RTEVBNHHB25D7KM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3037/532295521@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3037@github.com>
References: <quicwg/base-drafts/issues/3037@github.com>
Subject: Re: [quicwg/base-drafts] Require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3037)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8108995c18f_1e003ff2cb2cd9601438e4"; 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/rXm_f-Y3ShvYa9NcuxuXoVPXdh8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 16:23:56 -0000

----==_mimepart_5d8108995c18f_1e003ff2cb2cd9601438e4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@nibanks
> it sounds like you're arguing that it's an acceptable trade off for clients that don't want to implement support for the Retire Prior To field. I hope that isn't what you're saying.

I am saying that that is the natural way of reading the text. It seems to me that there is a disagreement on what the text implies, and I think it'd be more productive to try to polish up the intent of the text before resorting to encouraging particular behavior through greasing; hence #3046.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3037#issuecomment-532295521
----==_mimepart_5d8108995c18f_1e003ff2cb2cd9601438e4
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></p>
<blockquote>
<p>it sounds like you're arguing that it's an acceptable trade off for clients that don't want to implement support for the Retire Prior To field. I hope that isn't what you're saying.</p>
</blockquote>
<p>I am saying that that is the natural way of reading the text. It seems to me that there is a disagreement on what the text implies, and I think it'd be more productive to try to polish up the intent of the text before resorting to encouraging particular behavior through greasing; hence <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="494723498" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3046" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3046/hovercard" href="https://github.com/quicwg/base-drafts/issues/3046">#3046</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/3037?email_source=notifications&amp;email_token=AFTOJK4JFNUB3TIXFYM6GUDQKEABTA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65C6YI#issuecomment-532295521">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5E3P5EDYORI2SUEN3QKEABTANCNFSM4IXFBLRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYAO7WBRRH3EVGBLEDQKEABTA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65C6YI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK4JFNUB3TIXFYM6GUDQKEABTA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65C6YI#issuecomment-532295521",
"url": "https://github.com/quicwg/base-drafts/issues/3037?email_source=notifications\u0026email_token=AFTOJK4JFNUB3TIXFYM6GUDQKEABTA5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65C6YI#issuecomment-532295521",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8108995c18f_1e003ff2cb2cd9601438e4--


From nobody Tue Sep 17 09: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 85EB71209E9 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:38:44 -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 Ibm_q8-E2D_3 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:38:42 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BD8821209B6 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:38:42 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id B579D2C1326 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:38:41 -0700 (PDT)
Date: Tue, 17 Sep 2019 09:38:41 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6VPIDDSAYAE3MVI5N3RY7JDEVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/c532301058@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d810c11a6b8d_e7d3fcb53acd95c5447d"; 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/X27moI9O8tSYtuhuWvXCp-X8TMs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 16:38:49 -0000

----==_mimepart_5d810c11a6b8d_e7d3fcb53acd95c5447d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@nibanks I might argue that this PR does not prevent you from using the ALPN and SNI in the first packet as a way to "skip" Retry. In that hack, the difference between the status quo and this PR is that an incomplete CH in the first packet becomes a signal to send a Retry rather than an error. I do not think it adds complexity.

Considering the fact that we can remove other complexities due to the 1-packet restriction, this PR is a good simplification.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3045#issuecomment-532301058
----==_mimepart_5d810c11a6b8d_e7d3fcb53acd95c5447d
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> I might argue that this PR does not prevent you from using the ALPN and SNI in the first packet as a way to "skip" Retry. In that hack, the difference between the status quo and this PR is that an incomplete CH in the first packet becomes a signal to send a Retry rather than an error. I do not think it adds complexity.</p>
<p>Considering the fact that we can remove other complexities due to the 1-packet restriction, this PR is a good simplification.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications&amp;email_token=AFTOJKYHLTNEHACDLB5PS5LQKEBZDA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65EKAQ#issuecomment-532301058">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7YVER5TRDKA32DFLLQKEBZDANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2LVZ655IZEVTLDVFDQKEBZDA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65EKAQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJKYHLTNEHACDLB5PS5LQKEBZDA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65EKAQ#issuecomment-532301058",
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJKYHLTNEHACDLB5PS5LQKEBZDA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65EKAQ#issuecomment-532301058",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d810c11a6b8d_e7d3fcb53acd95c5447d--


From nobody Tue Sep 17 09: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 DF11E12089F for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:45:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.495
X-Spam-Level: 
X-Spam-Status: No, score=-1.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, GB_SUMOF=5, 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 kclsdaf_MFpU for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:45:18 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 481FA120A59 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:45:17 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 5463C8C1DF1 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:45:16 -0700 (PDT)
Date: Tue, 17 Sep 2019 09:45:16 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6COFGC5LZKPIWVC5F3RZHCZEVBNHHB253VH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3042/review/289402001@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3042@github.com>
References: <quicwg/base-drafts/pull/3042@github.com>
Subject: Re: [quicwg/base-drafts] Use the FRAME_ENCODING_ERROR for errors in frame encoding (#3042)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d810d9c46914_67f3fd70e2cd95c246214"; 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/VME8eZFNevb7sic8LrJWNN-tsoo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 16:45:20 -0000

----==_mimepart_5d810d9c46914_67f3fd70e2cd95c246214
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> @@ -5060,8 +5059,8 @@ the offset of the next byte that would be sent.
 The first byte in the stream has an offset of 0.  The largest offset delivered
 on a stream - the sum of the offset and data length - cannot exceed 2^62-1, as
 it is not possible to provide flow control credit for that data.  Receipt of a
-frame that exceeds this limit will be treated as a connection error of type
-FLOW_CONTROL_ERROR.
+frame that exceeds this limit MUST be treated as a connection error of type
+FRAME_ENCODING_ERROR or FLOW_CONTROL_ERROR.

I'd be inclined towards only recommending FLOW_CONTROL_ERROR 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/3042#pullrequestreview-289402001
----==_mimepart_5d810d9c46914_67f3fd70e2cd95c246214
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/3042#discussion_r325274544">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -5060,8 +5059,8 @@ the offset of the next byte that would be sent.
 The first byte in the stream has an offset of 0.  The largest offset delivered
 on a stream - the sum of the offset and data length - cannot exceed 2^62-1, as
 it is not possible to provide flow control credit for that data.  Receipt of a
-frame that exceeds this limit will be treated as a connection error of type
-FLOW_CONTROL_ERROR.
+frame that exceeds this limit MUST be treated as a connection error of type
+FRAME_ENCODING_ERROR or FLOW_CONTROL_ERROR.
</pre>
<p>I'd be inclined towards only recommending FLOW_CONTROL_ERROR 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/3042?email_source=notifications&amp;email_token=AFTOJK4CC7BK5NLEKQPQAW3QKECRZA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE76ZEI#pullrequestreview-289402001">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3OUO6LNCYTZV62RX3QKECRZANCNFSM4IXJVA2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK55Y22CTLD2TEJLNITQKECRZA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE76ZEI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJK4CC7BK5NLEKQPQAW3QKECRZA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE76ZEI#pullrequestreview-289402001",
"url": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJK4CC7BK5NLEKQPQAW3QKECRZA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCE76ZEI#pullrequestreview-289402001",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d810d9c46914_67f3fd70e2cd95c246214--


From nobody Tue Sep 17 09:50: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 AB695120108 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:50: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 eDs6j8Cs9hte for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:50: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 C8E28120112 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:50:21 -0700 (PDT)
Date: Tue, 17 Sep 2019 09:50:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568739020; bh=GYOkcfU62s7RSZZFQZ01er0p8kH9in39BoW7pg1ui30=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RdaxfEVAmFRkcqDVRqSVuXE5ENxpMFH9pVM0RrjJegkDefRDBqsM4cWxe4g8NPS4k fAaXCxIavVGZk2H5OyqX97gSizS29aBG22jcmssNuLuFvHav4jXvpNjf6jo5T8HRoM fdcCYt1ATjI2do6ZVPT4pR3rrT3YS5Vvw/rH/bTo=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZUUDWTIMCW2GBGMRN3RZAUZEVBNHHB27HBVI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3046/532305468@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3046@github.com>
References: <quicwg/base-drafts/issues/3046@github.com>
Subject: Re: [quicwg/base-drafts] Handling of Retire Prior To field (#3046)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d810ecce2b73_142e3fb52c8cd964210959"; 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/_kZiNhxSvnJjAMjUMkFM0kbpXxk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 16:50:46 -0000

----==_mimepart_5d810ecce2b73_142e3fb52c8cd964210959
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

My personal take is that it would be nice if the processing of NEW_CONNECTION_ID frame and RETIRE_CONNECTION_ID frame can be an optional feature. QUIC is already very complex, and it would be beneficial to have some features being optional, in sense that endpoints can simply discard certain frames when not implementing certain features.

IIUC, at the moment, these two frames are optional for an endpoint that do not support migration.

OTOH, from the robustness viewpoint of the protocol, it does make sense to change the text to MUST. We might have already crossed the river by introducing the Retire Prior To field.

The third option is to add a TP that indicates if an endpoint supports retirement of connection IDs...

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3046#issuecomment-532305468
----==_mimepart_5d810ecce2b73_142e3fb52c8cd964210959
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>My personal take is that it would be nice if the processing of NEW_CONNECTION_ID frame and RETIRE_CONNECTION_ID frame can be an optional feature. QUIC is already very complex, and it would be beneficial to have some features being optional, in sense that endpoints can simply discard certain frames when not implementing certain features.</p>
<p>IIUC, at the moment, these two frames are optional for an endpoint that do not support migration.</p>
<p>OTOH, from the robustness viewpoint of the protocol, it does make sense to change the text to MUST. We might have already crossed the river by introducing the Retire Prior To field.</p>
<p>The third option is to add a TP that indicates if an endpoint supports retirement of connection IDs...</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications&amp;email_token=AFTOJK6MZA5G2IXSY7UZN6DQKEDEZA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65FMPA#issuecomment-532305468">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6ICMVN2XA5FYNNLVTQKEDEZANCNFSM4IXSLCQA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZYNURNT474TPRZP2DQKEDEZA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65FMPA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJK6MZA5G2IXSY7UZN6DQKEDEZA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65FMPA#issuecomment-532305468",
"url": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJK6MZA5G2IXSY7UZN6DQKEDEZA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65FMPA#issuecomment-532305468",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d810ecce2b73_142e3fb52c8cd964210959--


From nobody Tue Sep 17 09:55: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 D0C16120108 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:55:18 -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 AioDXC-17Qnu for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:55: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 06F0D1200EC for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:55:17 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 284F1C60C9C for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:55:16 -0700 (PDT)
Date: Tue, 17 Sep 2019 09:55:16 -0700
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5BEXKNLGIW7IAHEVN3RZIIJEVBNHHB27HBVI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3046/532307370@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3046@github.com>
References: <quicwg/base-drafts/issues/3046@github.com>
Subject: Re: [quicwg/base-drafts] Handling of Retire Prior To field (#3046)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d810ff4195dd_e7f3fcb53acd95c12438"; 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/iPNqPwtAA9t-fG7q4wAl8IouOts>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 16:55:19 -0000

----==_mimepart_5d810ff4195dd_e7f3fcb53acd95c12438
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

There was a lot of discussion when the Retire Prior To feature was added. At the time, I felt it pretty clear that it could not be optional from our server's perspective. I agree the sentence with the SHOULD, if read in isolation, could be interpreted as making the feature as optional. But the sentence immediately following it makes it pretty clear that it's not option.

> 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.

I understand the desire to make things optional for simplicity's sake, but a primary point of this feature, when it was added, was that is was required. Making it optional now would, IMO, defeat the purpose of the feature.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3046#issuecomment-532307370
----==_mimepart_5d810ff4195dd_e7f3fcb53acd95c12438
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>There was a lot of discussion when the Retire Prior To feature was added. At the time, I felt it pretty clear that it could not be optional from our server's perspective. I agree the sentence with the SHOULD, if read in isolation, could be interpreted as making the feature as optional. But the sentence immediately following it makes it pretty clear that it's not option.</p>
<blockquote>
<p>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.</p>
</blockquote>
<p>I understand the desire to make things optional for simplicity's sake, but a primary point of this feature, when it was added, was that is was required. Making it optional now would, IMO, defeat the purpose of the feature.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications&amp;email_token=AFTOJK5L53ISJZB4JE3SRNLQKEDXJA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65F3KQ#issuecomment-532307370">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2H4U35OZ7YHPZL4RDQKEDXJANCNFSM4IXSLCQA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK35IUAI4XMXKLR6SNDQKEDXJA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65F3KQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJK5L53ISJZB4JE3SRNLQKEDXJA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65F3KQ#issuecomment-532307370",
"url": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJK5L53ISJZB4JE3SRNLQKEDXJA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65F3KQ#issuecomment-532307370",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d810ff4195dd_e7f3fcb53acd95c12438--


From nobody Tue Sep 17 09: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 BFBF3120849 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09: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 WIPsoSvsxtwt for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 09:58: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 1DDE1120108 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 09:58:00 -0700 (PDT)
Date: Tue, 17 Sep 2019 09:57:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568739479; bh=1ruZbJau+AVGVTvLGa9dR+c5NTf6bsxIyLlUQn0pe3M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BWit/EM3NTruhCHeDl9gemorLTlajx0FOgbJioruV9ybhlGih4D+voXkS3kricK1v Uq0vMKLfnI9oYxcnpc0SRK7FAQeQ1XjT79KvxtpM5syLrWGeBWaxfDEfg98NszGrDR /zKqJL9kzHgCBnYnKzyruRRkmDyoBBvrw2zrdaXk=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7GAJZTB6VCL3FTPYF3RZISPEVBNHHB27HBVI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3046/532308478@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3046@github.com>
References: <quicwg/base-drafts/issues/3046@github.com>
Subject: Re: [quicwg/base-drafts] Handling of Retire Prior To field (#3046)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8110971c9f5_40183fba02acd964101839"; 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/isbpHlEdgqYuE5h76_BrqlnEsdY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 16:58:02 -0000

----==_mimepart_5d8110971c9f5_40183fba02acd964101839
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

My understanding is that this is optional in the sense GOAWAY is optional.  At some point, the connection is likely to terminate abruptly if you don't follow the 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/issues/3046#issuecomment-532308478
----==_mimepart_5d8110971c9f5_40183fba02acd964101839
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>My understanding is that this is optional in the sense GOAWAY is optional.  At some point, the connection is likely to terminate abruptly if you don't follow the 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/issues/3046?email_source=notifications&amp;email_token=AFTOJK2NLWNDHBGRHTVLBO3QKEEBPA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65GD7Q#issuecomment-532308478">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6CYDJQKEUN53EHJ3LQKEEBPANCNFSM4IXSLCQA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2T2RAP3XCMGETS7HDQKEEBPA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65GD7Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJK2NLWNDHBGRHTVLBO3QKEEBPA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65GD7Q#issuecomment-532308478",
"url": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJK2NLWNDHBGRHTVLBO3QKEEBPA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65GD7Q#issuecomment-532308478",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8110971c9f5_40183fba02acd964101839--


From nobody Tue Sep 17 10:01: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 A7F39120954 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 10:01: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 qMHJrV-DFRb0 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 10:01: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 DBE431208EE for <quic-issues@ietf.org>; Tue, 17 Sep 2019 10:01:36 -0700 (PDT)
Date: Tue, 17 Sep 2019 10:01:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568739696; bh=LN8tJYc8VZIUsTKSv3dJ7jXPLig1LPPqch7tMhJe4+w=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pbkOEdnjFbqqgicW5vnj5AE/4KUWtTv68E4JwGegOszdjowLpQV3Zhcl0qqTBjji2 TQqEFp/icNL7jgUjzUdxJqHGTfe1419ePVt8zGeUyLa74J7KWgfS1tFAedPSyEIz7v 7coSMovHj0JcL3/5vqsISDQubqdjeG50pOILtP9A=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6D4HJHVO6KDHYR7CN3RZJABEVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/c532309839@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8111702c4da_56ca3fe511acd95c2607f0"; 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/qHkcEZiWitqgL6SYLwptd41cmLo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 17:01:44 -0000

----==_mimepart_5d8111702c4da_56ca3fe511acd95c2607f0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm not arguing that this PR would require loads more code, but I definitely don't agree that it's a "good simplification" of the current design. This adds additional attack surfaces that must be analyzed and implementations ensure they have adequate defense.

Again, I ask is this absolutely required for V1? What chartered requirements for QUIC deem this change necessary for 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/pull/3045#issuecomment-532309839
----==_mimepart_5d8111702c4da_56ca3fe511acd95c2607f0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'm not arguing that this PR would require loads more code, but I definitely don't agree that it's a "good simplification" of the current design. This adds additional attack surfaces that must be analyzed and implementations ensure they have adequate defense.</p>
<p>Again, I ask is this absolutely required for V1? What chartered requirements for QUIC deem this change necessary for 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/pull/3045?email_source=notifications&amp;email_token=AFTOJK7AGGABGGGYS5RRN33QKEEPBA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65GOTY#issuecomment-532309839">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7WUK5LOFMGAP6YD5LQKEEPBANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4N5S5SL3GGNQW2TE3QKEEPBA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65GOTY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK7AGGABGGGYS5RRN33QKEEPBA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65GOTY#issuecomment-532309839",
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK7AGGABGGGYS5RRN33QKEEPBA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65GOTY#issuecomment-532309839",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8111702c4da_56ca3fe511acd95c2607f0--


From nobody Tue Sep 17 10: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 9F0C0120920 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 10:02: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 nUfQrSCBg4IC for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 10:02: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 EEF7A120912 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 10:02:17 -0700 (PDT)
Date: Tue, 17 Sep 2019 10:02:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568739737; bh=JKgIBEhEXiTUq2QbTXpdGbBJk3sEi4k8ZZPj2mZBJNE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CAQear3OwmvI+eSEgsqZAil7J/mOxWPf2KuItzwh+BQ4nJnmTx+FVwJ+vYLLulyku oSxaBb2+eXoTrIZUzj4lZXFP3QVbPmcIFNlbyHTzjDQ0hahEM1k9A4S0RfNFLCjabO 1+nusC7qsEYTx4fBlHsNRAWVU7vNXySt5P8zLcCU=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK65BJKFU34C7SEV4PN3RZJCTEVBNHHB27HBVI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3046/532310133@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3046@github.com>
References: <quicwg/base-drafts/issues/3046@github.com>
Subject: Re: [quicwg/base-drafts] Handling of Retire Prior To field (#3046)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8111992073c_40893f87384cd96c2249c3"; 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/sb4YvlMtcF9J9wLyn7gTiLOTF7Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 17:02:20 -0000

----==_mimepart_5d8111992073c_40893f87384cd96c2249c3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

That's one way to look at it. The difference here is that we're not trying to kill the connection with Retire Prior 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/3046#issuecomment-532310133
----==_mimepart_5d8111992073c_40893f87384cd96c2249c3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>That's one way to look at it. The difference here is that we're not trying to kill the connection with Retire Prior 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/3046?email_source=notifications&amp;email_token=AFTOJK4CMTQVGZQPVE2DJI3QKEERTA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65GQ5I#issuecomment-532310133">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZVGX4RUPKI43EQJX3QKEERTANCNFSM4IXSLCQA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYJNIHSLSE7TE4MG2DQKEERTA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65GQ5I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJK4CMTQVGZQPVE2DJI3QKEERTA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65GQ5I#issuecomment-532310133",
"url": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJK4CMTQVGZQPVE2DJI3QKEERTA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65GQ5I#issuecomment-532310133",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8111992073c_40893f87384cd96c2249c3--


From nobody Tue Sep 17 10:16: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 E921A12008A for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 10:16: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 fqws4bWbpFmR for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 10:16: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 18983120044 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 10:16:10 -0700 (PDT)
Date: Tue, 17 Sep 2019 10:16:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568740569; bh=I+4cpYIg0JC85sfgqGYVWP7CrN+S+KGLpTngJK2d1h4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zaN43Ke98n0JCtnEErMQk1gyQbO1f3nulGL0Q48XBKtmdKFsiVKooHKVdONCKY8c4 KZC1HwjIaZJUdCvjrcm2O+9+HaHEqLG87kP3Ov+QcNcZIrZWBh1b2i9vu5xQmzy/tw SH6cs/HfsoktK+yHAfqFoM/9kLZj1dyRQQ04l+f0=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6J2YJZMD7LNJOBPLN3RZDVTEVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/c532315561@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8114d9171aa_1b33fe4922cd95c26828"; 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/peSKVeJxj-POtq2Z_zgwBwSnhSk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 17:16:12 -0000

----==_mimepart_5d8114d9171aa_1b33fe4922cd95c26828
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

At the moment, a QUIC stack is required to indicate to the TLS stack that the CH should be constructed in a way that invokes HRR (by omitting the key_share extension), if the CH is otherwise going to not fit in one packet. This requirement is not only complex but also imposes one additional roundtrip (when the rule is invoked).

Regarding the charter, we are tasked to create a protocol that minimizes connection establishment latency, while having "security and privacy properties that are at least as good as a stack composed of TLS 1.3 using TCP." We already have post-quantum extensions proposed for TLS 1.3, it is my understanding that Chrome is already doing experiments. They require use of CH that do not fit in single packet, which, without resolving this issue, imposes complexity and one extra round-trip. Considering these aspects, I might argue that we are _encouraged_ by the charter to resolve 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/3045#issuecomment-532315561
----==_mimepart_5d8114d9171aa_1b33fe4922cd95c26828
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>At the moment, a QUIC stack is required to indicate to the TLS stack that the CH should be constructed in a way that invokes HRR (by omitting the key_share extension), if the CH is otherwise going to not fit in one packet. This requirement is not only complex but also imposes one additional roundtrip (when the rule is invoked).</p>
<p>Regarding the charter, we are tasked to create a protocol that minimizes connection establishment latency, while having "security and privacy properties that are at least as good as a stack composed of TLS 1.3 using TCP." We already have post-quantum extensions proposed for TLS 1.3, it is my understanding that Chrome is already doing experiments. They require use of CH that do not fit in single packet, which, without resolving this issue, imposes complexity and one extra round-trip. Considering these aspects, I might argue that we are <em>encouraged</em> by the charter to resolve 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/3045?email_source=notifications&amp;email_token=AFTOJK5RZPI5E2WJPMYOOFLQKEGFTA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65H3KI#issuecomment-532315561">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5V5K5UCBNS5FOGR6TQKEGFTANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4M5SEYGIIXKQQSY7DQKEGFTA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65H3KI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK5RZPI5E2WJPMYOOFLQKEGFTA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65H3KI#issuecomment-532315561",
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK5RZPI5E2WJPMYOOFLQKEGFTA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65H3KI#issuecomment-532315561",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8114d9171aa_1b33fe4922cd95c26828--


From nobody Tue Sep 17 11:14: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 500B81209E0 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 11:14:15 -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 4IxpvWxKuIoK for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 11:14:13 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4C5061209A3 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 11:14:13 -0700 (PDT)
Date: Tue, 17 Sep 2019 11:14:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568744052; bh=KOELfTAxOk7ndpvjMKFc3toigJO0guBBCYNs+VXiwtQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BBv3UPtB8kU80NnKa8Fo8mFZCWrV0rhosPtmIICYdlXyQLx/sKyRcxsFApSR8/UYl iGTsB+PIzk8acIbQIe31Gl00STwUjUzTddlU+mlk+79ATiAAUgY/oR2Ps6nwy6cp1Y JYXoGxOAxEbdkFHUmr+HxZ5MZ+fc6I7nqi2eOERw=
From: David Benjamin <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6R5X7BVWT2MR32NEF3RZRQJEVBNHHB26CFR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3044/review/289453567@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3044@github.com>
References: <quicwg/base-drafts/pull/3044@github.com>
Subject: Re: [quicwg/base-drafts] Clarify why post-handshake client auth is banned (#3044)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8122745d164_33433f8163ccd96c4110c7"; 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/wfidj3wM7Zag_PeVaUaotGAH7xo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 18:14:21 -0000

----==_mimepart_5d8122745d164_33433f8163ccd96c4110c7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

davidben commented on this pull request.



> @@ -612,8 +612,13 @@ MAY refuse a connection if the client is unable to authenticate when requested.
 The requirements for client authentication vary based on application protocol
 and deployment.
 
-A server MUST NOT use post-handshake client authentication (see Section 4.6.2 of
-{{!TLS13}}).
+A server MUST NOT use post-handshake client authentication (as defined in
+Section 4.6.2 of {{!TLS13}}), because the multiplexing offered by QUIC prevents
+clients from correlating the certificate request with the application-level
+event which triggered it (see {{?HTTP2-TLS13=I-D.ietf-httpbis-http2-tls13}}).

Likewise. :-)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3044#discussion_r325314195
----==_mimepart_5d8122745d164_33433f8163ccd96c4110c7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@davidben</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3044#discussion_r325314195">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -612,8 +612,13 @@ MAY refuse a connection if the client is unable to authenticate when requested.
 The requirements for client authentication vary based on application protocol
 and deployment.
 
-A server MUST NOT use post-handshake client authentication (see Section 4.6.2 of
-{{!TLS13}}).
+A server MUST NOT use post-handshake client authentication (as defined in
+Section 4.6.2 of {{!TLS13}}), because the multiplexing offered by QUIC prevents
+clients from correlating the certificate request with the application-level
+event which triggered it (see {{?HTTP2-TLS13=I-D.ietf-httpbis-http2-tls13}}).
</pre>
<p>Likewise. :-)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3044?email_source=notifications&amp;email_token=AFTOJK75QMWQXLQSPJRGMQDQKEM7JA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFALL7Y#discussion_r325314195">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYBHSEHH7D5QCXEVK3QKEM7JANCNFSM4IXLGKXA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZSLR3UOYR63EX4NG3QKEM7JA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFALL7Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3044?email_source=notifications\u0026email_token=AFTOJK75QMWQXLQSPJRGMQDQKEM7JA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFALL7Y#discussion_r325314195",
"url": "https://github.com/quicwg/base-drafts/pull/3044?email_source=notifications\u0026email_token=AFTOJK75QMWQXLQSPJRGMQDQKEM7JA5CNFSM4IXLGKXKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFALL7Y#discussion_r325314195",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8122745d164_33433f8163ccd96c4110c7--


From nobody Tue Sep 17 12:52: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 968C5120920 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 12:52:22 -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 MaH4-XwwMjfm for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 12:52: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 D78891208C4 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 12:52:12 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 0C3F4A120E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 12:52:12 -0700 (PDT)
Date: Tue, 17 Sep 2019 12:52:11 -0700
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5NVOSAHXKQDLXG3S53RZ47XEVBNHHB27HBVI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3046/532375257@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3046@github.com>
References: <quicwg/base-drafts/issues/3046@github.com>
Subject: Re: [quicwg/base-drafts] Handling of Retire Prior To field (#3046)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81396bf1796_1bb33fda0a6cd9684954ef"; 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/SrWVTqBSCvxj_YP3pk1uOifN0ZQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 19:52:23 -0000

----==_mimepart_5d81396bf1796_1bb33fda0a6cd9684954ef
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

There was definitely lots of discussion around the requirement level here when this was added (see #2645), @nibanks asked: 
> why couldn't we make it a "MUST immediately retire" instead of a SHOULD? What reasons would an endpoint have to ACK the packets but not retire the CIDs at the same time?

There was good discussion following that ([start here](https://github.com/quicwg/base-drafts/issues/2645#issuecomment-499180920) and scroll down). 

My understanding of [where we ended up](https://github.com/quicwg/base-drafts/issues/2645#issuecomment-501041204) was that the endpoint being asked to retire a CID really SHOULD retire it or else the peer may stop responding to that CID. 

After the endpoint requesting retirement gives up on a CID and forgets about it, packets will either arrive with that CID or they will not. It has two choices, it can choose to process them if they arrive with the wrong CID, or it can drop them. The enforcement mechanism here is to stop processing the "bad" CIDs, not close the connection, especially as you take into account potentially delayed-but-valid packets.

I think the current stance of "really SHOULD stop using such a CID, but the other endpoint needs to be careful about enforcing that" is the right one, if there's a wording update that would help with understanding there, then it would be great to update the wording as an editorial 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/3046#issuecomment-532375257
----==_mimepart_5d81396bf1796_1bb33fda0a6cd9684954ef
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>There was definitely lots of discussion around the requirement level here when this was added (see <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>), <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> asked:</p>
<blockquote>
<p>why couldn't we make it a "MUST immediately retire" instead of a SHOULD? What reasons would an endpoint have to ACK the packets but not retire the CIDs at the same time?</p>
</blockquote>
<p>There was good discussion following that (<a href="https://github.com/quicwg/base-drafts/issues/2645#issuecomment-499180920" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2645/hovercard">start here</a> and scroll down).</p>
<p>My understanding of <a href="https://github.com/quicwg/base-drafts/issues/2645#issuecomment-501041204" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2645/hovercard">where we ended up</a> was that the endpoint being asked to retire a CID really SHOULD retire it or else the peer may stop responding to that CID.</p>
<p>After the endpoint requesting retirement gives up on a CID and forgets about it, packets will either arrive with that CID or they will not. It has two choices, it can choose to process them if they arrive with the wrong CID, or it can drop them. The enforcement mechanism here is to stop processing the "bad" CIDs, not close the connection, especially as you take into account potentially delayed-but-valid packets.</p>
<p>I think the current stance of "really SHOULD stop using such a CID, but the other endpoint needs to be careful about enforcing that" is the right one, if there's a wording update that would help with understanding there, then it would be great to update the wording as an editorial 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/3046?email_source=notifications&amp;email_token=AFTOJKYP3LAEONNZSQ6KW6LQKEYOXA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65WNWI#issuecomment-532375257">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6QMTY7FBHXV2DZR43QKEYOXANCNFSM4IXSLCQA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4ZPWOBJNTIEYWAGALQKEYOXA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65WNWI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJKYP3LAEONNZSQ6KW6LQKEYOXA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65WNWI#issuecomment-532375257",
"url": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJKYP3LAEONNZSQ6KW6LQKEYOXA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD65WNWI#issuecomment-532375257",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81396bf1796_1bb33fda0a6cd9684954ef--


From nobody Tue Sep 17 13:36: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 E529912013F for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 13:36: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 o6LdlIFzICQ8 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 13:36: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 DA83E12010D for <quic-issues@ietf.org>; Tue, 17 Sep 2019 13:36:08 -0700 (PDT)
Date: Tue, 17 Sep 2019 13:36:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568752567; bh=JmnNnJaYyHAAba5Nm1GC/zAykjWJHNrXaMEiSRY+cak=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TG/FEymRUJZ4TZ1hqw3YM1kcPxhsNytShVuB0Uqt0pE4NeiRhCAzKyEGGYqcqUaL9 AO3Jql5dBw07McgJl1BTqDyEBI4rTHuoGYX+NnaYdocl+u7KXBPP3K/L7mbGkEAsWg ksLv084aSAodA5w4m8PBZJlFNYoA2G/mK+4QodwM=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5Y3GNYNMIS5YTMJIV3R2CEPEVBNHHB253VH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3042/review/289531000@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3042@github.com>
References: <quicwg/base-drafts/pull/3042@github.com>
Subject: Re: [quicwg/base-drafts] Use the FRAME_ENCODING_ERROR for errors in frame encoding (#3042)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8143b7d72ff_5b693fb98a0cd96448795c"; 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/6Umf8W2Z7-0o0cS8VJr_ZRWhSng>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 20:36:11 -0000

----==_mimepart_5d8143b7d72ff_5b693fb98a0cd96448795c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

janaiyengar commented on this pull request.

I agree with @ianswett that I would prefer FLOW_CONTROL_ERROR since it is a bit more specific. Otherwise 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/3042#pullrequestreview-289531000
----==_mimepart_5d8143b7d72ff_5b693fb98a0cd96448795c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@janaiyengar</b> commented on this pull request.</p>

<p>I agree with <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> that I would prefer FLOW_CONTROL_ERROR since it is a bit more specific. Otherwise 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/3042?email_source=notifications&amp;email_token=AFTOJK2XWAKBDWQJ6XQKFELQKE5TPA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFA6I6A#pullrequestreview-289531000">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5NZGINHVN44SXWYUDQKE5TPANCNFSM4IXJVA2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZPMKCA7ELDJ4PZKIDQKE5TPA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFA6I6A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJK2XWAKBDWQJ6XQKFELQKE5TPA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFA6I6A#pullrequestreview-289531000",
"url": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJK2XWAKBDWQJ6XQKFELQKE5TPA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFA6I6A#pullrequestreview-289531000",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8143b7d72ff_5b693fb98a0cd96448795c--


From nobody Tue Sep 17 13: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 DCBE7120052 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 13:50:22 -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 x2duCNIKjhCm for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 13:50: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 87A7512004A for <quic-issues@ietf.org>; Tue, 17 Sep 2019 13:50:21 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 9BF4D520E4E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 13:50:20 -0700 (PDT)
Date: Tue, 17 Sep 2019 13:50:20 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK24SQX4WEYXM6OKPFV3R2DZZEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/532396426@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81470c8c931_1bbb3fda0a6cd96810664b"; 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/DPeZeGelAQOn4R5Kh2MiRkwle4E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 20:50:23 -0000

----==_mimepart_5d81470c8c931_1bbb3fda0a6cd96810664b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@nibanks: Do you believe that obfuscating the packet is inconvenient at this late time, or that it is a lot of work for the HW vendors?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-532396426
----==_mimepart_5d81470c8c931_1bbb3fda0a6cd96810664b
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>: Do you believe that obfuscating the packet is inconvenient at this late time, or that it is a lot of work for the HW vendors?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJK7YQ3IBP6UABK2I7O3QKE7IZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD653TCQ#issuecomment-532396426">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2BX2EFX3IMICDZH6LQKE7IZANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6VSU6WDYST5IXXWEDQKE7IZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD653TCQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK7YQ3IBP6UABK2I7O3QKE7IZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD653TCQ#issuecomment-532396426",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK7YQ3IBP6UABK2I7O3QKE7IZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD653TCQ#issuecomment-532396426",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81470c8c931_1bbb3fda0a6cd96810664b--


From nobody Tue Sep 17 13:52: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 8076D1209E6 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 13:52: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 MF3moCNMC6FI for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 13:52: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 934181209C4 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 13:52:32 -0700 (PDT)
Date: Tue, 17 Sep 2019 13:52:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568753551; bh=Bef2tkt0zhwyAeLs5QJJvPNuthuSuSEmTO4nuVU6xcE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dw+xroAJMaXFndb0ptSB7Ydj+xxmn4upzLwqgCOBrxA8aOl+Q77RmaPamrijZmWH0 NItqjXdheVWMdPYRqsCDHZyq0RxruQH5FFMtFxOXtV9LXnSp2y3d7hdCHp8o5TTBtw fXj4Ve/yCGPIerfXQPh3C5uT2396eHiN9jNWB/PU=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYGAMCZDW5UWKKN4IN3R2EB7EVBNHHB25D7KM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3037/532397251@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3037@github.com>
References: <quicwg/base-drafts/issues/3037@github.com>
Subject: Re: [quicwg/base-drafts] Require peers to check if RETIRE_CONNECTION_ID sequence number is valid (#3037)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81478fb024f_53d63fc308ecd960701823"; 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/UbdoF386-0zkXvbA40vPRGYFrms>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 20:52:39 -0000

----==_mimepart_5d81478fb024f_53d63fc308ecd960701823
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

Thanks @janaiyengar, that sounds about right, this is the other direction=
, makes sense. =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/3037#issuecomment-532397251=

----==_mimepart_5d81478fb024f_53d63fc308ecd960701823
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>Thanks <a class=3D"user-mention" data-hovercard-type=3D"user" data-hov=
ercard-url=3D"/hovercards?user_id=3D11067604" data-octo-click=3D"hovercar=
d-link-click" data-octo-dimensions=3D"link_type:self" href=3D"https://git=
hub.com/janaiyengar">@janaiyengar</a>, that sounds about right, this is t=
he other direction, makes sense. <g-emoji class=3D"g-emoji" alias=3D"+1" =
fallback-src=3D"https://github.githubassets.com/images/icons/emoji/unicod=
e/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/3037?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK2KBV2XJLDFBRAMKI3QKE7Q7A5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD653ZQY#issuecomment-532397251">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJK2FND2NU4JB4MR3LVLQKE7Q7ANCNFSM4IXFBLRQ">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJKZGXSCPDF3JIFW7Y6TQ=
KE7Q7A5CNFSM4IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD653ZQY.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/3037?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK2KBV2XJLDFBRAMKI3QKE7Q7A5CNFSM4=
IXFBLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD653ZQ=
Y#issuecomment-532397251",=0D
"url": "https://github.com/quicwg/base-drafts/issues/3037?email_source=3D=
notifications\u0026email_token=3DAFTOJK2KBV2XJLDFBRAMKI3QKE7Q7A5CNFSM4IXF=
BLR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD653ZQY#i=
ssuecomment-532397251",=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_5d81478fb024f_53d63fc308ecd960701823--


From nobody Tue Sep 17 13:55: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 AF13E120072 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 13:55:05 -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 NpePSRcfvyRm for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 13:55: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 7729D120052 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 13:55:03 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id C0F645203B2 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 13:55:02 -0700 (PDT)
Date: Tue, 17 Sep 2019 13:55:02 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5ZBBC42N6V6FUNR7F3R2ELNEVBNHHB257M5U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3043/review/289539545@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3043@github.com>
References: <quicwg/base-drafts/pull/3043@github.com>
Subject: Re: [quicwg/base-drafts] TLS application data isn't possible (#3043)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d814826b28ce_36ef3fd6576cd9606602e5"; 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/-8RoA6pC_8XAuv2KUOS_gto0Ag8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 20:55:06 -0000

----==_mimepart_5d814826b28ce_36ef3fd6576cd9606602e5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

janaiyengar commented on this pull request.



>  
 QUIC takes the unprotected content of TLS handshake records as the content of
 CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles
 CRYPTO frames into QUIC packets, which are protected using QUIC packet
 protection.
 
+QUIC is only capable of conveying TLS handshake records in CRYPTO frames.  TLS
+alerts are turned into QUIC CONNECTION_CLOSE error codes; see {{tls-errors}}.
+TLS application data and other message types cannot be carried by QUIC at any

```suggestion
TLS application data and other message types cannot be carried by QUIC
```

>  
 QUIC takes the unprotected content of TLS handshake records as the content of
 CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles
 CRYPTO frames into QUIC packets, which are protected using QUIC packet
 protection.
 
+QUIC is only capable of conveying TLS handshake records in CRYPTO frames.  TLS
+alerts are turned into QUIC CONNECTION_CLOSE error codes; see {{tls-errors}}.
+TLS application data and other message types cannot be carried by QUIC at any
+encryption level and can be treated as an error if they are received from the

```suggestion
MAY be treated as an error if they are received from the
```

>  
 QUIC takes the unprotected content of TLS handshake records as the content of
 CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles
 CRYPTO frames into QUIC packets, which are protected using QUIC packet
 protection.
 
+QUIC is only capable of conveying TLS handshake records in CRYPTO frames.  TLS
+alerts are turned into QUIC CONNECTION_CLOSE error codes; see {{tls-errors}}.
+TLS application data and other message types cannot be carried by QUIC at any
+encryption level and can be treated as an error if they are received from the

Which error type? Does this result in a CONNECTION_CLOSE? Or just drop the connection? This is a local error, and therefore does not need to be communicated to the peer, so I would suggest just drop the connection. But that should be explicitly stated.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3043#pullrequestreview-289539545
----==_mimepart_5d814826b28ce_36ef3fd6576cd9606602e5
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/3043#discussi=
on_r325380223">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
 QUIC takes the unprotected content of TLS handshake records as the conte=
nt of=0D
 CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles=
=0D
 CRYPTO frames into QUIC packets, which are protected using QUIC packet=0D=

 protection.=0D
 =0D
+QUIC is only capable of conveying TLS handshake records in CRYPTO frames=
.  TLS=0D
+alerts are turned into QUIC CONNECTION_CLOSE error codes; see {{tls-erro=
rs}}.=0D
+TLS application data and other message types cannot be carried by QUIC a=
t any=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-TLS application data and other message types =
cannot be carried by QUIC at any=0D
+TLS application data and other message types cannot be carried by QUIC=0D=

</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3043#discussi=
on_r325380401">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
 QUIC takes the unprotected content of TLS handshake records as the conte=
nt of=0D
 CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles=
=0D
 CRYPTO frames into QUIC packets, which are protected using QUIC packet=0D=

 protection.=0D
 =0D
+QUIC is only capable of conveying TLS handshake records in CRYPTO frames=
.  TLS=0D
+alerts are turned into QUIC CONNECTION_CLOSE error codes; see {{tls-erro=
rs}}.=0D
+TLS application data and other message types cannot be carried by QUIC a=
t any=0D
+encryption level and can be treated as an error if they are received fro=
m the=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-encryption level and can be treated as an err=
or if they are received from the=0D
+MAY be treated as an error if they are received from the=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3043#discussi=
on_r325380793">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
 QUIC takes the unprotected content of TLS handshake records as the conte=
nt of=0D
 CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles=
=0D
 CRYPTO frames into QUIC packets, which are protected using QUIC packet=0D=

 protection.=0D
 =0D
+QUIC is only capable of conveying TLS handshake records in CRYPTO frames=
.  TLS=0D
+alerts are turned into QUIC CONNECTION_CLOSE error codes; see {{tls-erro=
rs}}.=0D
+TLS application data and other message types cannot be carried by QUIC a=
t any=0D
+encryption level and can be treated as an error if they are received fro=
m the=0D
</pre>=0D
<p>Which error type? Does this result in a CONNECTION_CLOSE? Or just drop=
 the connection? This is a local error, and therefore does not need to be=
 communicated to the peer, so I would suggest just drop the connection. B=
ut that should be explicitly stated.</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/3043?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK55XCZOLFH6HDQH273QKE72NA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBALWI#pullrequestreview-289539545=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK7MZCXMG7UJ3FNTCUTQKE72NANCNFSM4IXKSJ7A">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJKZBHC2M=
5ACB4BQ2763QKE72NA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBALWI.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/3043?email_source=3D=
notifications\u0026email_token=3DAFTOJK55XCZOLFH6HDQH273QKE72NA5CNFSM4IXK=
SJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
FBALWI#pullrequestreview-289539545",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3043?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK55XCZOLFH6HDQH273QKE72NA5CNFSM4IXKSJ=
7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFB=
ALWI#pullrequestreview-289539545",=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_5d814826b28ce_36ef3fd6576cd9606602e5--


From nobody Tue Sep 17 14: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 B0C3C120072 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 14:00:25 -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 WxLLlyGECFlz for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 14:00: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 EC1D612004A for <quic-issues@ietf.org>; Tue, 17 Sep 2019 14:00:23 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 0E0EC2C3338 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 14:00:23 -0700 (PDT)
Date: Tue, 17 Sep 2019 14:00:22 -0700
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4VJ6OOBSUPG7G4QU53R2E7NEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/532400044@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d814966edd7e_50873fb281ecd95c565887"; 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/ETAbqXH-J7scKvybS5ghoIB_ZEM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 21:00:26 -0000

----==_mimepart_5d814966edd7e_50873fb281ecd95c565887
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

It's more about the cost per packet for the HW. With TCP, the devices handle millions, if not tens of millions of connections per second using the SYN cookie method. They won't be able to get anywhere close to that with QUIC Retry packets, and it will be even worse if every packet must be individually encrypted.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-532400044
----==_mimepart_5d814966edd7e_50873fb281ecd95c565887
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>It's more about the cost per packet for the HW. With TCP, the devices handle millions, if not tens of millions of connections per second using the SYN cookie method. They won't be able to get anywhere close to that with QUIC Retry packets, and it will be even worse if every packet must be individually encrypted.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJK74SLUDQTJJMLOZXSTQKFAONA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD654PLA#issuecomment-532400044">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYCFM5WWXJAHA7COVDQKFAONANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3S3KXPTK2D4URVZCDQKFAONA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD654PLA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK74SLUDQTJJMLOZXSTQKFAONA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD654PLA#issuecomment-532400044",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK74SLUDQTJJMLOZXSTQKFAONA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD654PLA#issuecomment-532400044",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d814966edd7e_50873fb281ecd95c565887--


From nobody Tue Sep 17 14:47: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 897AD1208C9 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 14:47: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 SOmp31Oi-GDE for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 14:47: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 B3A6F120072 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 14:47:38 -0700 (PDT)
Date: Tue, 17 Sep 2019 14:47:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568756858; bh=78xDEKYFVhk9SKVJRiB3KDSsYwvCCLwvptMmPA8EhNc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=iBIp0BP/u9n8pKCEu0mjmKg1H+t4F2u6BZOCose106uKRsdctNprFuiYT9CvZQWEx 14f2lmYpTH9gmvh17X4cCwrAykvGv6CYLqn+ldGhVC3ch0pnY/NHLaGpTR8ku1oEwv zoWK8Yvo8nNxAdQqDECw7d3MHTc/bqIsOq3+H2ZQ=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2R266CEIPRB5SD55F3R2DPTEVBNHHB257M5U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3043/review/289565486@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3043@github.com>
References: <quicwg/base-drafts/pull/3043@github.com>
Subject: Re: [quicwg/base-drafts] TLS application data isn't possible (#3043)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d815479ef4c5_6c4d3f89866cd96023802f"; 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/2BVWizciCkmNM06yQfKmZ-54jN8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 21:47:41 -0000

----==_mimepart_5d815479ef4c5_6c4d3f89866cd96023802f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

kazuho commented on this pull request.



>  
 QUIC takes the unprotected content of TLS handshake records as the content of
 CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles
 CRYPTO frames into QUIC packets, which are protected using QUIC packet
 protection.
 
+QUIC is only capable of conveying TLS handshake records in CRYPTO frames.  TLS
+alerts are turned into QUIC CONNECTION_CLOSE error codes; see {{tls-errors}}.
+TLS application data and other message types cannot be carried by QUIC at any
+encryption level and can be treated as an error if they are received from the

This is a clarification of fact, that a TLS stack can never return application data, unless there is a bug in the TLS stack or in the way the QUIC stack uses the TLS stack.

Therefore I think that "can be treated as an error" is fine. Changing it to "is an error" would be fine 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/3043#discussion_r325400514
----==_mimepart_5d815479ef4c5_6c4d3f89866cd96023802f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@kazuho</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3043#discussion_r325400514">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;  
 QUIC takes the unprotected content of TLS handshake records as the content of
 CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles
 CRYPTO frames into QUIC packets, which are protected using QUIC packet
 protection.
 
+QUIC is only capable of conveying TLS handshake records in CRYPTO frames.  TLS
+alerts are turned into QUIC CONNECTION_CLOSE error codes; see {{tls-errors}}.
+TLS application data and other message types cannot be carried by QUIC at any
+encryption level and can be treated as an error if they are received from the
</pre>
<p>This is a clarification of fact, that a TLS stack can never return application data, unless there is a bug in the TLS stack or in the way the QUIC stack uses the TLS stack.</p>
<p>Therefore I think that "can be treated as an error" is fine. Changing it to "is an error" would be fine 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/3043?email_source=notifications&amp;email_token=AFTOJK7II5ABUTW7GFMAQADQKFF7TA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBGWLQ#discussion_r325400514">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY75KGSCEKIQTF3WODQKFF7TANCNFSM4IXKSJ7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4MHHF6IOKPMZMOEQDQKFF7TA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBGWLQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJK7II5ABUTW7GFMAQADQKFF7TA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBGWLQ#discussion_r325400514",
"url": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJK7II5ABUTW7GFMAQADQKFF7TA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBGWLQ#discussion_r325400514",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d815479ef4c5_6c4d3f89866cd96023802f--


From nobody Tue Sep 17 15:10: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 ADB9A120124 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 15:10:51 -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 wCqq_ArvSQcd for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 15:10: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 037B41200B5 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 15:10:50 -0700 (PDT)
Date: Tue, 17 Sep 2019 15:10:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568758249; bh=c7MyTYcnNyGBVak2hIiAJ0pI0JZswcvRy39DALV/fS0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=U9n6w3c7PDCxueOp023+g2DxxLxLXSYfFcSh/dM4t7wHw1KsWUDSMbSK5U6QrzNT6 NHQgQUzs16nStRTo/JLJiYZDc/yYDHXbRKX+S7NC/FKjrw57x72vsi1Q11P/PcLR0F WFgoMgg5ScYd0mhWzCqUBAf1wvXFUYT0aiP/aLEE=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7ZCTGUHQGNEQ3FOAN3R2NHTEVBNHHB257M5U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3043/review/289574666@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3043@github.com>
References: <quicwg/base-drafts/pull/3043@github.com>
Subject: Re: [quicwg/base-drafts] TLS application data isn't possible (#3043)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8159e9204d1_71d03fdd672cd95c40155"; 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/vYpHRmU6qbTkTTZ1YXgKfhe7cpQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 22:10:52 -0000

----==_mimepart_5d8159e9204d1_71d03fdd672cd95c40155
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

janaiyengar commented on this pull request.



>  
 QUIC takes the unprotected content of TLS handshake records as the content of
 CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles
 CRYPTO frames into QUIC packets, which are protected using QUIC packet
 protection.
 
+QUIC is only capable of conveying TLS handshake records in CRYPTO frames.  TLS
+alerts are turned into QUIC CONNECTION_CLOSE error codes; see {{tls-errors}}.
+TLS application data and other message types cannot be carried by QUIC at any
+encryption level and can be treated as an error if they are received from the

@kazuho: Makes sense, but I think saying "is an error" is overloaded, since we have many types of errors. But, this isn't a big deal; I'm happy with @martinthomson's editorial decision 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/3043#discussion_r325407851
----==_mimepart_5d8159e9204d1_71d03fdd672cd95c40155
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/3043#discussion_r325407851">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;  
 QUIC takes the unprotected content of TLS handshake records as the content of
 CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles
 CRYPTO frames into QUIC packets, which are protected using QUIC packet
 protection.
 
+QUIC is only capable of conveying TLS handshake records in CRYPTO frames.  TLS
+alerts are turned into QUIC CONNECTION_CLOSE error codes; see {{tls-errors}}.
+TLS application data and other message types cannot be carried by QUIC at any
+encryption level and can be treated as an error if they are received from the
</pre>
<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>: Makes sense, but I think saying "is an error" is overloaded, since we have many types of errors. But, this isn't a big deal; I'm happy 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>'s editorial decision 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/3043?email_source=notifications&amp;email_token=AFTOJK5DX2ETGVEV2EI3R6TQKFIWTA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBI6CQ#discussion_r325407851">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6BQEF2M2RDBZPAQMDQKFIWTANCNFSM4IXKSJ7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6U26BHFCL22BET2VLQKFIWTA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBI6CQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJK5DX2ETGVEV2EI3R6TQKFIWTA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBI6CQ#discussion_r325407851",
"url": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJK5DX2ETGVEV2EI3R6TQKFIWTA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBI6CQ#discussion_r325407851",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8159e9204d1_71d03fdd672cd95c40155--


From nobody Tue Sep 17 15:36: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 463F41200EB for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 15:36:34 -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 H9zl617OMewA for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 15:36: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 D11151200D5 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 15:36:32 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 21D17C60593 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 15:36:32 -0700 (PDT)
Date: Tue, 17 Sep 2019 15:36:32 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5FOC4CREQKVKVTCPV3R2QIBEVBNHHBYGSUE4@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/c532428753@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_5d815ff0138a3_142c3ff217ccd96078891"; 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/MOefSzn1XlspVnWM4v3MBgMppB8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 22:36:34 -0000

----==_mimepart_5d815ff0138a3_142c3ff217ccd96078891
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

As commented on the issue, this should fix #2387 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#issuecomment-532428753
----==_mimepart_5d815ff0138a3_142c3ff217ccd96078891
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>As commented on the issue, this should fix <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> 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=AFTOJK4WJKL2ZF564CRB5G3QKFLXBA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66DPUI#issuecomment-532428753">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7ZA5W5ZVQ6JJ5HQ63QKFLXBANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3FJGJI5TKIUBMN2P3QKFLXBA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66DPUI.gif" height="1" width="1" 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=AFTOJK4WJKL2ZF564CRB5G3QKFLXBA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66DPUI#issuecomment-532428753",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK4WJKL2ZF564CRB5G3QKFLXBA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66DPUI#issuecomment-532428753",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d815ff0138a3_142c3ff217ccd96078891--


From nobody Tue Sep 17 15:59: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 3D0271208DC for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 15:59:42 -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 tixNygh1WY-O for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 15:59:40 -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 ADB0512018B for <quic-issues@ietf.org>; Tue, 17 Sep 2019 15:59:40 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 53CF9261618 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 15:59:40 -0700 (PDT)
Date: Tue, 17 Sep 2019 15:59:40 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-send-after-ack/000000-704402@github.com>
Subject: [quicwg/base-drafts] 704402: Send after receiving an 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/gfbZh92V56fNMp_WdV-rzjDtkpU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 22:59:42 -0000

  Branch: refs/heads/ianswett-send-after-ack
  Home:   https://github.com/quicwg/base-drafts
  Commit: 704402513b18fec9a1597b538d00ab8a9d1219dd
      https://github.com/quicwg/base-drafts/commit/704402513b18fec9a1597b538d00ab8a9d1219dd
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-17 (Tue, 17 Sep 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Send after receiving an ACK

Fixes #2604



From nobody Tue Sep 17 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 C1CC412018B for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 15:59:59 -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 jUnU1zXfEEOj for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 15:59:58 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C5113120133 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 15:59:57 -0700 (PDT)
Date: Tue, 17 Sep 2019 15:59:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568761196; bh=XVImu+UTRwnonc4Is833GKLJF1f0oOGbqOUn1rOW2po=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=m8KdAIxYX4QaQ9oIZ0WuhAfnzurq2vIv6Y7igoGvVRBykbhfiwflhvIXimd0oEdSa BaHYZ9b9i6a11Iy8fBoEokKCxjqjkG74CUlkv1694RXYHQkIBiPOH4vJM1eepjfjjy zbwdcR/tcP5kf4GrQLnqfgy9eHUqjbA4fQQZi6pw=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZWS6SYOZYXOBU56WF3R2S7ZEVBNHHB2737AM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3047@github.com>
Subject: [quicwg/base-drafts] Send after receiving an ACK (#3047)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81656cdf3f4_47c03fc0b4ccd968174631"; 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/NaQHjqkz_cDN8IPloiepgkUA36s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 23:00:00 -0000

----==_mimepart_5d81656cdf3f4_47c03fc0b4ccd968174631
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Fixes #2604
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3047

-- Commit Summary --

  * Send after receiving an ACK

-- File Changes --

    M draft-ietf-quic-recovery.md (5)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3047.patch
https://github.com/quicwg/base-drafts/pull/3047.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/3047

----==_mimepart_5d81656cdf3f4_47c03fc0b4ccd968174631
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 #2604.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="431327773" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2604" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2604/hovercard" href="https://github.com/quicwg/base-drafts/issues/2604">#2604</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/3047'>https://github.com/quicwg/base-drafts/pull/3047</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Send after receiving an ACK</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3047/files#diff-0">draft-ietf-quic-recovery.md</a>
    (5)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3047.patch'>https://github.com/quicwg/base-drafts/pull/3047.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3047.diff'>https://github.com/quicwg/base-drafts/pull/3047.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/3047?email_source=notifications&amp;email_token=AFTOJKZ2JQFYYNCL6DBXW2LQKFOOZA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HL7P4BQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYT4SJQ7WGTKU6H62LQKFOOZANCNFSM4IXV7ICQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZYC2AN7N7CR3T5BMDQKFOOZA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HL7P4BQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3047?email_source=notifications\u0026email_token=AFTOJKZ2JQFYYNCL6DBXW2LQKFOOZA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HL7P4BQ",
"url": "https://github.com/quicwg/base-drafts/pull/3047?email_source=notifications\u0026email_token=AFTOJKZ2JQFYYNCL6DBXW2LQKFOOZA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HL7P4BQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d81656cdf3f4_47c03fc0b4ccd968174631--


From nobody Tue Sep 17 16:00: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 069F712004F for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 16:00:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 pCMo8lYrMXdF for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 16:00: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 1B40412004A for <quic-issues@ietf.org>; Tue, 17 Sep 2019 16:00:20 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 7FD83661920 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 16:00:19 -0700 (PDT)
Date: Tue, 17 Sep 2019 16:00:19 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/981e9f-128102@github.com>
Subject: [quicwg/base-drafts] 128102: Script updating gh-pages from 70440251. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8ncPQYrPD_O17cH5XAAb7W6diG8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 23:00:22 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1281022cd2a7d12c319238bc1584f3cf33c8dcb0
      https://github.com/quicwg/base-drafts/commit/1281022cd2a7d12c319238bc1584f3cf33c8dcb0
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-17 (Tue, 17 Sep 2019)

  Changed paths:
    A ianswett-send-after-ack/draft-ietf-quic-http.html
    A ianswett-send-after-ack/draft-ietf-quic-http.txt
    A ianswett-send-after-ack/draft-ietf-quic-invariants.html
    A ianswett-send-after-ack/draft-ietf-quic-invariants.txt
    A ianswett-send-after-ack/draft-ietf-quic-qpack.html
    A ianswett-send-after-ack/draft-ietf-quic-qpack.txt
    A ianswett-send-after-ack/draft-ietf-quic-recovery.html
    A ianswett-send-after-ack/draft-ietf-quic-recovery.txt
    A ianswett-send-after-ack/draft-ietf-quic-tls.html
    A ianswett-send-after-ack/draft-ietf-quic-tls.txt
    A ianswett-send-after-ack/draft-ietf-quic-transport.html
    A ianswett-send-after-ack/draft-ietf-quic-transport.txt
    A ianswett-send-after-ack/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 70440251. [ci skip]



From nobody Tue Sep 17 16: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 6E4BA12004F for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 16:00: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 r5aDXTIrx5ZK for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 16:00: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 C032012004A for <quic-issues@ietf.org>; Tue, 17 Sep 2019 16:00:40 -0700 (PDT)
Date: Tue, 17 Sep 2019 16:00:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568761239; bh=eubGOcSonpVGW4VCGdjCXr2ZhBPdckxNX/A6Btel8V0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=y/5JtlBIN2JH/KFrphSQVaxBw7lmf0PIhctqgYqi0WidyHeAKdkY4WSfxvZ8sj4EI /gLKMazQEye3Z0ZseGVBo6VB64JTue/mmjHRguN12SRShmbl5YVuwCWquqsHitpazQ tgDO8Kfa0nyTFu4OI6hGItsYfP23eXlE2sYaqH+s=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZMHAINOSSGNSUJGKF3R2TCPEVBNHHBTNMKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2604/532434132@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2604@github.com>
References: <quicwg/base-drafts/issues/2604@github.com>
Subject: Re: [quicwg/base-drafts] Pseudocode fix: Data should be sent on loss-threshold timer (#2604)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81659794145_369a3fe5fe0cd9641778f1"; 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/jBkbZ1GmsSheLXbKCutnm7NyxJg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 23:00:42 -0000

----==_mimepart_5d81659794145_369a3fe5fe0cd9641778f1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I've thought about this more, and I really don't want to get into PRR, so I went with a simple fix to this issue which reflects what I believe code should do.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/2604#issuecomment-532434132
----==_mimepart_5d81659794145_369a3fe5fe0cd9641778f1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I've thought about this more, and I really don't want to get into PRR, so I went with a simple fix to this issue which reflects what I believe code should do.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/2604?email_source=notifications&amp;email_token=AFTOJK67UEILJ75SDFYLXATQKFORPA5CNFSM4HEY4VBKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66EZVA#issuecomment-532434132">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ63POODV6W7CVFBXTQKFORPANCNFSM4HEY4VBA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3HRLG243NQSONVUM3QKFORPA5CNFSM4HEY4VBKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66EZVA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/2604?email_source=notifications\u0026email_token=AFTOJK67UEILJ75SDFYLXATQKFORPA5CNFSM4HEY4VBKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66EZVA#issuecomment-532434132",
"url": "https://github.com/quicwg/base-drafts/issues/2604?email_source=notifications\u0026email_token=AFTOJK67UEILJ75SDFYLXATQKFORPA5CNFSM4HEY4VBKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66EZVA#issuecomment-532434132",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81659794145_369a3fe5fe0cd9641778f1--


From nobody Tue Sep 17 16: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 ECFD012003E for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 16:14:08 -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 SyY8K3XIjAWU for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 16:14:07 -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 4F5C012004A for <quic-issues@ietf.org>; Tue, 17 Sep 2019 16:14:07 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 58CB52C0EC4 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 16:14:06 -0700 (PDT)
Date: Tue, 17 Sep 2019 16:14:06 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-retransmitting-acks-is-bad-ok/000000-b7c497@github.com>
Subject: [quicwg/base-drafts] b7c497: Retransmitting ACK frames can inflate RTT
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/VzZNGr6IWnsrq7LJtmsU-jdtykk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 23:14:09 -0000

  Branch: refs/heads/ianswett-retransmitting-acks-is-bad-ok
  Home:   https://github.com/quicwg/base-drafts
  Commit: b7c497ab227828980837f176a9b6756b8adcdfb8
      https://github.com/quicwg/base-drafts/commit/b7c497ab227828980837f176a9b6756b8adcdfb8
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-17 (Tue, 17 Sep 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Retransmitting ACK frames can inflate RTT

Fixes #2748



From nobody Tue Sep 17 16: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 19D761200B2 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 16:14: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, 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 0sOqArBUqm9P for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 16:14: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 995E912003E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 16:14:37 -0700 (PDT)
Date: Tue, 17 Sep 2019 16:14:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568762076; bh=m78M3lH6EsXqH1R7SDlBB9aDYKgXXE5KZH9rqElf37g=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=2HmTZcJIWPJt930SGd3cVq41ujvHWP3z0tgzPmfmdrEHbtMfz7lTX6byoIEqLrUB9 jEmW2Ug6Wdf4RMA0k+JMIITWPld0PS6bwuQevxEm3ixkMxEIT/+Tga67gkFlvbUgab obepnUQz/Eog5HH61KyJgcrT4X3BAaeIc7RbNw5k=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3KYGJ2I6AQE3MWRHN3R2UWZEVBNHHB274N7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3048@github.com>
Subject: [quicwg/base-drafts] Retransmitting ACK frames can inflate RTT (#3048)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8168dca0796_61d73fd5958cd96c120348"; 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/mBxotUS5rb51z9vbX2-fMFygZd4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 23:14:39 -0000

----==_mimepart_5d8168dca0796_61d73fd5958cd96c120348
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Fixes #2748
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3048

-- Commit Summary --

  * Retransmitting ACK frames can inflate RTT

-- File Changes --

    M draft-ietf-quic-recovery.md (7)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3048.patch
https://github.com/quicwg/base-drafts/pull/3048.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/3048

----==_mimepart_5d8168dca0796_61d73fd5958cd96c120348
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 #2748.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="447156856" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2748" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2748/hovercard" href="https://github.com/quicwg/base-drafts/issues/2748">#2748</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/3048'>https://github.com/quicwg/base-drafts/pull/3048</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Retransmitting ACK frames can inflate RTT</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3048/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/3048.patch'>https://github.com/quicwg/base-drafts/pull/3048.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3048.diff'>https://github.com/quicwg/base-drafts/pull/3048.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/3048?email_source=notifications&amp;email_token=AFTOJKY37YZIVUCO24RLQKTQKFQFZA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HL7RX5A">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3QSZRRC325SM5AAWLQKFQFZANCNFSM4IXWCBGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2UIUPQNDOWEOP5ISTQKFQFZA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HL7RX5A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3048?email_source=notifications\u0026email_token=AFTOJKY37YZIVUCO24RLQKTQKFQFZA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HL7RX5A",
"url": "https://github.com/quicwg/base-drafts/pull/3048?email_source=notifications\u0026email_token=AFTOJKY37YZIVUCO24RLQKTQKFQFZA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HL7RX5A",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8168dca0796_61d73fd5958cd96c120348--


From nobody Tue Sep 17 16: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 7FE7612004F for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 16:14:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 XpVFuLyUUbpN for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 16:14: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 6849012004A for <quic-issues@ietf.org>; Tue, 17 Sep 2019 16:14:44 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id C911F6E11B1 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 16:14:43 -0700 (PDT)
Date: Tue, 17 Sep 2019 16:14:43 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/128102-c26f90@github.com>
Subject: [quicwg/base-drafts] c26f90: Script updating gh-pages from b7c497ab. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/X2zSi5ScYMl7kNrx715LZq2YBSI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 23:14:46 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c26f90e76a3c6d5e3cf3808e35fb8de5e9c4e821
      https://github.com/quicwg/base-drafts/commit/c26f90e76a3c6d5e3cf3808e35fb8de5e9c4e821
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-17 (Tue, 17 Sep 2019)

  Changed paths:
    A ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-http.html
    A ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-http.txt
    A ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-invariants.html
    A ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-invariants.txt
    A ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-qpack.html
    A ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-qpack.txt
    A ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-recovery.html
    A ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-recovery.txt
    A ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-tls.html
    A ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-tls.txt
    A ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-transport.html
    A ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-transport.txt
    A ianswett-retransmitting-acks-is-bad-ok/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from b7c497ab. [ci skip]



From nobody Tue Sep 17 16: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 8B8C312004F for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 16: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 frmyoxvPJeGU for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 16:18: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 BB7F012003E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 16:18:10 -0700 (PDT)
Date: Tue, 17 Sep 2019 16:18:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568762289; bh=5FOhtXAfPpyujC2/nsK+L/l7KTb0KXUNuOSR9w5lBQc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pk4v0Oo6v4cHo6N/e/6cIMsiEBTMOEwAbG3A5xnNSkp51i0tdD1CHp9iD7k5iiK9e j6GXpDDh5+CIC1VNED7rSEaLjDF3RBpl6tne6D+oz1neUeS3rC+ggvdQgzg4H0sN6A T4+xwXdlfwmh2Bb3EhR5vnrpQYijtHjPniGHRWeo=
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK62L6NYNO4M57K5G6N3R2VEDEVBNHHBTZTRJU@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/532438009@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_5d8169b1da94d_2b853fc4520cd9641159e5"; 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/DlmGK5SV-g_-gmBdeFT4228rfJc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 23:18:13 -0000

----==_mimepart_5d8169b1da94d_2b853fc4520cd9641159e5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

A different use case came up:

Consider streaming a (potentially infinite) live video as a sequence of pushes.  How does a client signal its intent to close this connection, and stop the server from pushing more video segments?

The client can send a STOP_SENDING frame on the request stream which is receiving the PUSH_PROMISEs, but this may result in less than graceful termination of that 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/2632#issuecomment-532438009
----==_mimepart_5d8169b1da94d_2b853fc4520cd9641159e5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>A different use case came up:</p>
<p>Consider streaming a (potentially infinite) live video as a sequence of pushes.  How does a client signal its intent to close this connection, and stop the server from pushing more video segments?</p>
<p>The client can send a STOP_SENDING frame on the request stream which is receiving the PUSH_PROMISEs, but this may result in less than graceful termination of that 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/2632?email_source=notifications&amp;email_token=AFTOJK25ZNOJHQ2V62T3R23QKFQTDA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66FX6I#issuecomment-532438009">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3MPZKK2YEFXCCIA6LQKFQTDANCNFSM4HGYVKSA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5OQUAS47SM5FDQSYTQKFQTDA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66FX6I.gif" height="1" width="1" 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=AFTOJK25ZNOJHQ2V62T3R23QKFQTDA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66FX6I#issuecomment-532438009",
"url": "https://github.com/quicwg/base-drafts/issues/2632?email_source=notifications\u0026email_token=AFTOJK25ZNOJHQ2V62T3R23QKFQTDA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66FX6I#issuecomment-532438009",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8169b1da94d_2b853fc4520cd9641159e5--


From nobody Tue Sep 17 16:33: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 12B10120133 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 16:33: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 dIzET67JvDFW for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 16:33: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 C66F21200D5 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 16:33:23 -0700 (PDT)
Date: Tue, 17 Sep 2019 16:33:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568763203; bh=VoMxNZopyfv5ow9nMwcYPnGIYUtFUeuHaBRHnLW8EIQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lXDSEL2m7nI/on2x3HaGB0u87e2hd9/+/c/cT+Eo/SKhJEyza266XANb5o1nDZUh5 eeYKOGK/10JUam15PV2jYgjMfdCTJBm12bpxK5e3SR4XImYXVnSnUpG0KvmhpnSl7S KAzbgPlk1FzDhzVqz2XsnAniSYwr1fTxId8g/UXU=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2EDCFLFVU4DEIUOMF3R2W5FEVBNHHBTZTRJU@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/532441217@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_5d816d42e8df2_62863ffd726cd96415541b"; 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/2RxOaFoUEnB92I5J1dG5IYsimPU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 23:33:25 -0000

----==_mimepart_5d816d42e8df2_62863ffd726cd96415541b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

In this case what do you advertise MAX_PUSH_ID as? By limiting the value and not incrementing it, you can cause the server to be unable to drive the connection, and allow the client to hit its 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/issues/2632#issuecomment-532441217
----==_mimepart_5d816d42e8df2_62863ffd726cd96415541b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>In this case what do you advertise MAX_PUSH_ID as? By limiting the value and not incrementing it, you can cause the server to be unable to drive the connection, and allow the client to hit its 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/issues/2632?email_source=notifications&amp;email_token=AFTOJK5CCJICKKRZFAP6CA3QKFSMFA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66GRAI#issuecomment-532441217">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6TQRMGVQTWCS2GYZDQKFSMFANCNFSM4HGYVKSA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYRDCP4O6K3LDTGIWLQKFSMFA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66GRAI.gif" height="1" width="1" 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=AFTOJK5CCJICKKRZFAP6CA3QKFSMFA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66GRAI#issuecomment-532441217",
"url": "https://github.com/quicwg/base-drafts/issues/2632?email_source=notifications\u0026email_token=AFTOJK5CCJICKKRZFAP6CA3QKFSMFA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66GRAI#issuecomment-532441217",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d816d42e8df2_62863ffd726cd96415541b--


From nobody Tue Sep 17 16:51: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 6A68B120133 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 16:51: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 F9iIB612faJX for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 16:51: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 C080D1200D5 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 16:51:12 -0700 (PDT)
Date: Tue, 17 Sep 2019 16:51:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568764271; bh=Z6TITD1TeM6wO40yGOmQDMJ8UMOObL4qxnSqHajY2Hw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=sBpXP7ML6uNPckSH/SUP+GmUmMI/Eu4IxWGDr3YOWwC038MYzwDK7Q1vixuYKEWpG 4ounRKEgHEiUoQqI1pCv+n7Hii1oXHc2Xm2N6K3VWZkj+fidU2Ai9qyF0CMDJWsB4v asWR+usqgzXX0HQ4fkjAbw+f4jPBDZ+c9GF7uRoE=
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7EXDASDSD2VNCISSV3R2Y77EVBNHHBTZTRJU@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/532444691@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_5d81716fbf9d8_55303fc0948cd9641615a5"; 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/F-HRQU-cGs5H38q80u8Tkdw513s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 23:51:14 -0000

----==_mimepart_5d81716fbf9d8_55303fc0948cd9641615a5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Yeah, limiting credit via MAX_PUSH_ID is one way, but I still prefer the explicit signal from GOAWAY - it's like immediately zeroing out the credit. 

-- 
You are receiving this 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-532444691
----==_mimepart_5d81716fbf9d8_55303fc0948cd9641615a5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Yeah, limiting credit via MAX_PUSH_ID is one way, but I still prefer the explicit signal from GOAWAY - it's like immediately zeroing out the credit.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK5J24GYPVG6YZJ4B63QKFUO7A5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66HMEY#issuecomment-532444691">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3NH4EHL6LWIG5JTT3QKFUO7ANCNFSM4HGYVKSA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK764UURYILRVP6ZAYTQKFUO7A5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66HMEY.gif" height="1" width="1" 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=AFTOJK5J24GYPVG6YZJ4B63QKFUO7A5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66HMEY#issuecomment-532444691",
"url": "https://github.com/quicwg/base-drafts/issues/2632?email_source=notifications\u0026email_token=AFTOJK5J24GYPVG6YZJ4B63QKFUO7A5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66HMEY#issuecomment-532444691",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81716fbf9d8_55303fc0948cd9641615a5--


From nobody Tue Sep 17 16:55: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 A3E43120133 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 16:55:43 -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 QNp9l66uFhMB for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 16:55:42 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 18B701200D5 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 16:55:42 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id EFACA2C0E57 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 16:55:40 -0700 (PDT)
Date: Tue, 17 Sep 2019 16:55:40 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3PDQ4QR4ZIXBTKAH53R2ZQZEVBNHHBTZTRJU@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/532445558@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_5d81727ce0b14_5fd93f85d18cd96c513c8"; 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/73awc6NvNjv0IhQPA5AY1YTQZmI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Sep 2019 23:55:44 -0000

----==_mimepart_5d81727ce0b14_5fd93f85d18cd96c513c8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Agree. This is like writing a cheque but asking the other side not to cash it (out of band) to avoid it bouncing and causing pain all round.

-- 
You are receiving this 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-532445558
----==_mimepart_5d81727ce0b14_5fd93f85d18cd96c513c8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Agree. This is like writing a cheque but asking the other side not to cash it (out of band) to avoid it bouncing and causing pain all round.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK2KOKTD743TFBEBGRLQKFU7ZA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66HS5Q#issuecomment-532445558">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4L6MIORTRVRPKMBETQKFU7ZANCNFSM4HGYVKSA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY5WKAH4FBWMVTG4D3QKFU7ZA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66HS5Q.gif" height="1" width="1" 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=AFTOJK2KOKTD743TFBEBGRLQKFU7ZA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66HS5Q#issuecomment-532445558",
"url": "https://github.com/quicwg/base-drafts/issues/2632?email_source=notifications\u0026email_token=AFTOJK2KOKTD743TFBEBGRLQKFU7ZA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66HS5Q#issuecomment-532445558",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81727ce0b14_5fd93f85d18cd96c513c8--


From nobody Tue Sep 17 17:41: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 34A4012008A for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 17:41: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 pEFXctmkdG1u for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 17:41: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 B287512006F for <quic-issues@ietf.org>; Tue, 17 Sep 2019 17:41:17 -0700 (PDT)
Date: Tue, 17 Sep 2019 17:41:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568767276; bh=Y7MFB7P6JxvOWrYjCTMMlwe0j1CgoxBKd5iW9PB4tQc=; h=Date:From:To:Subject:From; b=d9L7GZ0S1Zq0vFd+oRcWVw3CJc7VUGpdgXJy5JnWw9l3wHIh4bdL3Anz0iSIxNyqM DEwm9SOlSB1yKqZpXAFC43MSvwHK75WoTUexZlAMkbJfXCUIPUQXX9RKaGASUd4NVT up0yn9j5CQyydwY4ERoW3sa+0M7Uc8vU2uzTO0v4=
From: Mark Nottingham <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/wg-materials/push/refs/heads/master/863693-b5b2bc@github.com>
Subject: [quicwg/wg-materials] e40d26: Add discussion items for Interim
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ad2Co5VO5YX3MP-pYkeGjXgQfog>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 00:41:19 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/wg-materials
  Commit: e40d2676945c0e85913a4d71e76608da20723f82
      https://github.com/quicwg/wg-materials/commit/e40d2676945c0e85913a4d71e76608da20723f82
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-17 (Tue, 17 Sep 2019)

  Changed paths:
    M interim-19-10/agenda.md

  Log Message:
  -----------
  Add discussion items for Interim


  Commit: b5b2bc555ec1b7c55d06797d98915277a1eab6be
      https://github.com/quicwg/wg-materials/commit/b5b2bc555ec1b7c55d06797d98915277a1eab6be
  Author: Mark Nottingham <mnot@mnot.net>
  Date:   2019-09-18 (Wed, 18 Sep 2019)

  Changed paths:
    M interim-19-10/agenda.md

  Log Message:
  -----------
  Merge pull request #119 from janaiyengar/master

Add discussion items for Interim


Compare: https://github.com/quicwg/wg-materials/compare/863693a5c727...b5b2bc555ec1


From nobody Tue Sep 17 18:06: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 6CD87120119 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:06:03 -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 tiOg4FrokBAi for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:06: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 130FC12007A for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:06:01 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 5D23C6A01AB for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:06:00 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:06:00 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY7NSDIEVPUT5CNDFV3R2TWREVBNHHB274N7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3048/review/289622595@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3048@github.com>
References: <quicwg/base-drafts/pull/3048@github.com>
Subject: Re: [quicwg/base-drafts] Retransmitting ACK frames can inflate RTT (#3048)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8182f84d97c_1ab73fe7b2acd9688597b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/617bM2Ut1pAv5cNghmzU3CoQz2o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:06:03 -0000

----==_mimepart_5d8182f84d97c_1ab73fe7b2acd9688597b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.

This is a little weird.

We don't really retransmit frames, and have gone to some lengths to discourage people from thinking that way, so I don't quite understand how this would help.

Yes, this is true, but it's just a very specific example of how regurgitating frames is a bad choice.

> @@ -291,6 +291,13 @@ are received within an RTT.  As suggested in {{?RFC6298}}, doing so might result
 in inadequate history in smoothed_rtt and rttvar.  Ensuring that RTT estimates
 retain sufficient history is an open research question.
 
+### Retransmitted ACK frames
+
+Section 13.3 of {{QUIC-TRANSPORT}} recommends sending the most recent set of
+acknowledgements in ACK frames, but if ACK frames are retransmitted, an inflated
+RTT can be measured.  Some incorrect RTT samples are prevented by only measuring
+RTT when the largest acked increases.

Type the entire word:

```suggestion
RTT when the largest acknowledged increases.
```

> @@ -291,6 +291,13 @@ are received within an RTT.  As suggested in {{?RFC6298}}, doing so might result
 in inadequate history in smoothed_rtt and rttvar.  Ensuring that RTT estimates
 retain sufficient history is an open research question.
 
+### Retransmitted ACK frames
+
+Section 13.3 of {{QUIC-TRANSPORT}} recommends sending the most recent set of
+acknowledgements in ACK frames, but if ACK frames are retransmitted, an inflated

```suggestion
acknowledgements in ACK frames, but if ACK frames are retransmitted without adjusting the Ack Delay, an inflated
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3048#pullrequestreview-289622595
----==_mimepart_5d8182f84d97c_1ab73fe7b2acd9688597b
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>This is a little weird.</p>=0D
<p>We don't really retransmit frames, and have gone to some lengths to di=
scourage people from thinking that way, so I don't quite understand how t=
his would help.</p>=0D
<p>Yes, this is true, but it's just a very specific example of how regurg=
itating frames is a bad choice.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3048#discussi=
on_r325444811">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -291,6 +291,13 @@ are received within a=
n RTT.  As suggested in {{?RFC6298}}, doing so might result=0D
 in inadequate history in smoothed_rtt and rttvar.  Ensuring that RTT est=
imates=0D
 retain sufficient history is an open research question.=0D
 =0D
+### Retransmitted ACK frames=0D
+=0D
+Section 13.3 of {{QUIC-TRANSPORT}} recommends sending the most recent se=
t of=0D
+acknowledgements in ACK frames, but if ACK frames are retransmitted, an =
inflated=0D
+RTT can be measured.  Some incorrect RTT samples are prevented by only m=
easuring=0D
+RTT when the largest acked increases.=0D
</pre>=0D
<p>Type the entire word:</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-RTT when the largest acked increases.=0D
+RTT when the largest acknowledged increases.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3048#discussi=
on_r325444868">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -291,6 +291,13 @@ are received within a=
n RTT.  As suggested in {{?RFC6298}}, doing so might result=0D
 in inadequate history in smoothed_rtt and rttvar.  Ensuring that RTT est=
imates=0D
 retain sufficient history is an open research question.=0D
 =0D
+### Retransmitted ACK frames=0D
+=0D
+Section 13.3 of {{QUIC-TRANSPORT}} recommends sending the most recent se=
t of=0D
+acknowledgements in ACK frames, but if ACK frames are retransmitted, an =
inflated=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-acknowledgements in ACK frames, but if ACK fr=
ames are retransmitted, an inflated=0D
+acknowledgements in ACK frames, but if ACK frames are retransmitted with=
out adjusting the Ack Delay, an inflated=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/3048?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK6BJPK2GWA6WTV5V4TQKF5HRA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBUUQY#pullrequestreview-289622595=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK47WT7H4LCBRW4N6XLQKF5HRANCNFSM4IXWCBGA">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK5YGD5Z=
VLF54WJJ3OLQKF5HRA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBUUQY.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/3048?email_source=3D=
notifications\u0026email_token=3DAFTOJK6BJPK2GWA6WTV5V4TQKF5HRA5CNFSM4IXW=
CBGKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
FBUUQY#pullrequestreview-289622595",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3048?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK6BJPK2GWA6WTV5V4TQKF5HRA5CNFSM4IXWCB=
GKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFB=
UUQY#pullrequestreview-289622595",=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_5d8182f84d97c_1ab73fe7b2acd9688597b--


From nobody Tue Sep 17 18: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 7E35412007A for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:18: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_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 spxUrYa9JIP8 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:18: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 1BEBB12012D for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:18:08 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:18:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568769487; bh=TOyPAqGAz6NFzAwr3C85XOcGuXr2w3O1OUytZzBHrpM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KyqMvcjPbsp6A2D/XpWvvQN21UqCT/wkcTEjLBWT5PCJKYFCS9Gh1TH/c7HEElU1E d20+V5Q9Uen56J9vj68Cmj+bJ9nWwY6/29t4lwP7gPjzZI/I4d6QQ0ujVVEwyZt4NM Tz2MN4SAebpWctROqyKqsvSjHU0HuJRSjeRz+rq0=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2I55OM5UD5MKVJQFF3R2VD7EVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/review/289624058@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8185cf4379d_53da3f82dbacd9681074e9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EMhqZLpmlnrVdJlAla8xvfne1zc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:18:14 -0000

----==_mimepart_5d8185cf4379d_53da3f82dbacd9681074e9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson requested changes on this pull request.

There is [text in the transport draft](https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#packet-initial) that needs updating as well.

> -cryptographic handshake message, which for TLS is the ClientHello.  Though a
-packet larger than 1200 bytes might be supported by the path, a client improves
-the likelihood that a packet is accepted if it ensures that the first
-ClientHello message is small enough to stay within this limit.
+The first Initial packet from a client starts with its first cryptographic
+handshake message, which for TLS is the ClientHello.  Servers might need to
+parse the entire ClientHello (e.g., to access extensions such as Server Name
+Identification (SNI) or Application Layer Protocol Negotiation (ALPN)) in order
+to decide whether to accept the new incoming QUIC connection.  If the
+ClientHello spans multiple Initial packets, such servers would need to buffer
+the first received fragments, which could consume excessive resources if the
+client's address has not yet been validated.  To avoid this, servers MAY use
+the Retry feature (see Section 8.1 of {{QUIC-TRANSPORT}}) to only buffer
+partial ClientHellos from clients with a validated address.  Though a packet
+larger than 1200 bytes might be supported by the path, a client improves the
+likelihood that a packet is accepted if it ensures that the first ClientHello

I think that acceptance and loss are two separate things and what we're talking about here is acceptance.  The predicate on the statement is that the path supports packets of that size.  This is speculating about a server's willingness to buffer the ClientHello bytes.

To that end, this isn't about the 1200 byte minimum MTU, it's about making the ClientHello *as acceptable as possible*.  Fragments are immediately less acceptable, and while smaller fragments are easier to hold, what matters is the size of the entire message, because that's the upper limit on what the server might have to buffer.  Non-fragmented ClientHello can be as large as the path will support, because the server doesn't have to save them.

I think that we can strike this last sentence and things will be clearer.

> @@ -565,11 +565,19 @@ older than 1.3 is negotiated.
 
 ## ClientHello Size {#clienthello-size}
 
-QUIC requires that the first Initial packet from a client contain an entire
-cryptographic handshake message, which for TLS is the ClientHello.  Though a
-packet larger than 1200 bytes might be supported by the path, a client improves
-the likelihood that a packet is accepted if it ensures that the first
-ClientHello message is small enough to stay within this limit.
+The first Initial packet from a client starts with its first cryptographic
+handshake message, which for TLS is the ClientHello.  Servers might need to
+parse the entire ClientHello (e.g., to access extensions such as Server Name
+Identification (SNI) or Application Layer Protocol Negotiation (ALPN)) in order
+to decide whether to accept the new incoming QUIC connection.  If the
+ClientHello spans multiple Initial packets, such servers would need to buffer
+the first received fragments, which could consume excessive resources if the
+client's address has not yet been validated.  To avoid this, servers MAY use
+the Retry feature (see Section 8.1 of {{QUIC-TRANSPORT}}) to only buffer
+partial ClientHellos from clients with a validated address.  Though a packet

```suggestion
partial ClientHello messages from clients with a validated address.  Though a packet
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3045#pullrequestreview-289624058
----==_mimepart_5d8185cf4379d_53da3f82dbacd9681074e9
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>There is <a href=3D"https://quicwg.org/base-drafts/draft-ietf-quic-tra=
nsport.html#packet-initial" rel=3D"nofollow">text in the transport draft<=
/a> that needs updating as well.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3045#discussi=
on_r325445999">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -cryptographic handshake message, which fo=
r TLS is the ClientHello.  Though a=0D
-packet larger than 1200 bytes might be supported by the path, a client i=
mproves=0D
-the likelihood that a packet is accepted if it ensures that the first=0D=

-ClientHello message is small enough to stay within this limit.=0D
+The first Initial packet from a client starts with its first cryptograph=
ic=0D
+handshake message, which for TLS is the ClientHello.  Servers might need=
 to=0D
+parse the entire ClientHello (e.g., to access extensions such as Server =
Name=0D
+Identification (SNI) or Application Layer Protocol Negotiation (ALPN)) i=
n order=0D
+to decide whether to accept the new incoming QUIC connection.  If the=0D=

+ClientHello spans multiple Initial packets, such servers would need to b=
uffer=0D
+the first received fragments, which could consume excessive resources if=
 the=0D
+client&#39;s address has not yet been validated.  To avoid this, servers=
 MAY use=0D
+the Retry feature (see Section 8.1 of {{QUIC-TRANSPORT}}) to only buffer=
=0D
+partial ClientHellos from clients with a validated address.  Though a pa=
cket=0D
+larger than 1200 bytes might be supported by the path, a client improves=
 the=0D
+likelihood that a packet is accepted if it ensures that the first Client=
Hello=0D
</pre>=0D
<p>I think that acceptance and loss are two separate things and what we'r=
e talking about here is acceptance.  The predicate on the statement is th=
at the path supports packets of that size.  This is speculating about a s=
erver's willingness to buffer the ClientHello bytes.</p>=0D
<p>To that end, this isn't about the 1200 byte minimum MTU, it's about ma=
king the ClientHello <em>as acceptable as possible</em>.  Fragments are i=
mmediately less acceptable, and while smaller fragments are easier to hol=
d, what matters is the size of the entire message, because that's the upp=
er limit on what the server might have to buffer.  Non-fragmented ClientH=
ello can be as large as the path will support, because the server doesn't=
 have to save them.</p>=0D
<p>I think that we can strike this last sentence and things will be clear=
er.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3045#discussi=
on_r325446296">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -565,11 +565,19 @@ older than 1.3 is ne=
gotiated.=0D
 =0D
 ## ClientHello Size {#clienthello-size}=0D
 =0D
-QUIC requires that the first Initial packet from a client contain an ent=
ire=0D
-cryptographic handshake message, which for TLS is the ClientHello.  Thou=
gh a=0D
-packet larger than 1200 bytes might be supported by the path, a client i=
mproves=0D
-the likelihood that a packet is accepted if it ensures that the first=0D=

-ClientHello message is small enough to stay within this limit.=0D
+The first Initial packet from a client starts with its first cryptograph=
ic=0D
+handshake message, which for TLS is the ClientHello.  Servers might need=
 to=0D
+parse the entire ClientHello (e.g., to access extensions such as Server =
Name=0D
+Identification (SNI) or Application Layer Protocol Negotiation (ALPN)) i=
n order=0D
+to decide whether to accept the new incoming QUIC connection.  If the=0D=

+ClientHello spans multiple Initial packets, such servers would need to b=
uffer=0D
+the first received fragments, which could consume excessive resources if=
 the=0D
+client&#39;s address has not yet been validated.  To avoid this, servers=
 MAY use=0D
+the Retry feature (see Section 8.1 of {{QUIC-TRANSPORT}}) to only buffer=
=0D
+partial ClientHellos from clients with a validated address.  Though a pa=
cket=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-partial ClientHellos from clients with a vali=
dated address.  Though a packet=0D
+partial ClientHello messages from clients with a validated address.  Tho=
ugh a packet=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/3045?email_source=3Dnotifications&amp;email_token=3DA=
FTOJKYCIXGEQ6M7TA5DTATQKF6U7A5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBU76Q#pullrequestreview-289624058=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJKYYFV3VS4OHQ4VLVN3QKF6U7ANCNFSM4IXMS4DA">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK7PGOZN=
TKR77DRA7B3QKF6U7A5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBU76Q.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/3045?email_source=3D=
notifications\u0026email_token=3DAFTOJKYCIXGEQ6M7TA5DTATQKF6U7A5CNFSM4IXM=
S4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
FBU76Q#pullrequestreview-289624058",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=3Dno=
tifications\u0026email_token=3DAFTOJKYCIXGEQ6M7TA5DTATQKF6U7A5CNFSM4IXMS4=
DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFB=
U76Q#pullrequestreview-289624058",=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_5d8185cf4379d_53da3f82dbacd9681074e9--


From nobody Tue Sep 17 18:22: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 6B5AF12011E for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:22: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 iq2YIjHN1g7s for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:22:27 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8382312012D for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:22:26 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:22:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568769745; bh=G2ivMhavnKqaxOM2VwBaWpsZMdDbBCtmfAk8Rn7Eh/Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=p92TpgHf0dBc0vbTMOUTsoY6C0On/IUrnlrOxtWZMZDL5vVd3Stp9pVie75XCFHwe j4a1C1rrbsnSoy6UVi97O62jSGfD9SNJtL9YbQ3CSKHpMHvAuONfx9zgg2qhm55cW/ LdzHsRwriPBMUjIQdhhcxUpTaPgFi+vCR4ZyJUq4=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7TVRADKIIMZ4ZK2IV3R2VUDEVBNHHB27HBVI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3046/532477898@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3046@github.com>
References: <quicwg/base-drafts/issues/3046@github.com>
Subject: Re: [quicwg/base-drafts] Handling of Retire Prior To field (#3046)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8186d1c3728_51013fd5b1acd96c5336a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5onEpOFHW28qS4yJQ2ut8yrJnTw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:22:28 -0000

----==_mimepart_5d8186d1c3728_51013fd5b1acd96c5336a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Whatever the answer here, the SHOULD was chosen because "timely manner" isn't defined in a testable fashion.  If someone wants to argue for MUST, then we need a firmer definition of the reaction.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3046#issuecomment-532477898
----==_mimepart_5d8186d1c3728_51013fd5b1acd96c5336a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Whatever the answer here, the SHOULD was chosen because "timely manner" isn't defined in a testable fashion.  If someone wants to argue for MUST, then we need a firmer definition of the reaction.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications&amp;email_token=AFTOJK5A33ECOUWE6E5HR6LQKF7FDA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66PPSQ#issuecomment-532477898">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYXZDASRJ7FDWYIZF3QKF7FDANCNFSM4IXSLCQA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7XGS6RD7TQSFGGMS3QKF7FDA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66PPSQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJK5A33ECOUWE6E5HR6LQKF7FDA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66PPSQ#issuecomment-532477898",
"url": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJK5A33ECOUWE6E5HR6LQKF7FDA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66PPSQ#issuecomment-532477898",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8186d1c3728_51013fd5b1acd96c5336a--


From nobody Tue Sep 17 18:24: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 135EC12093C for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:24:30 -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 cZdpKUu-Q4Sj for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:24:28 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4F8F4120880 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:24:28 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 8E5862C137D for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:24:27 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:24:27 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK36LVNLSYOQ64RC3V53R2V3XEVBNHHB27HBVI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3046/532478272@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3046@github.com>
References: <quicwg/base-drafts/issues/3046@github.com>
Subject: Re: [quicwg/base-drafts] Handling of Retire Prior To field (#3046)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81874b7fe01_5e843fcbd18cd96c23785a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/pZylIp_yCxp-LRZIxW1AWLqj6HI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:24:37 -0000

----==_mimepart_5d81874b7fe01_5e843fcbd18cd96c23785a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

And to agree with @erickinnear, the squishiness here only exists up until the point that this is "do this or else".  We should make it clearer that the cost of non-compliance is losing the connection.  Not always, but a endpoint is entitled to cut and run if their peer doesn't comply.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3046#issuecomment-532478272
----==_mimepart_5d81874b7fe01_5e843fcbd18cd96c23785a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>And to agree with <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>, the squishiness here only exists up until the point that this is "do this or else".  We should make it clearer that the cost of non-compliance is losing the connection.  Not always, but a endpoint is entitled to cut and run if their peer doesn't comply.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications&amp;email_token=AFTOJK7JP2KAQI5QKJ7VL6DQKF7MXA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66PSQA#issuecomment-532478272">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5QD24KQ6Y2UQXEOPDQKF7MXANCNFSM4IXSLCQA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3R2HCA4EV3S4EXRI3QKF7MXA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66PSQA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJK7JP2KAQI5QKJ7VL6DQKF7MXA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66PSQA#issuecomment-532478272",
"url": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJK7JP2KAQI5QKJ7VL6DQKF7MXA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66PSQA#issuecomment-532478272",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81874b7fe01_5e843fcbd18cd96c23785a--


From nobody Tue Sep 17 18:28: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 0408512011E for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:28: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 e5-nU3M8X8KM for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:28:08 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 722EB12007A for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:28:08 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:28:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568770087; bh=HouoN8eLqHqnLqOuo92jp4cUUApVOm/cNdSwrpNYpcU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yYY8NoZqLfyDZGgtKV680XElxezswYflVKyrjeONzS4PY4ndjJNjdODIHqCvYIv/C W9dfspHWM+nmnnED3euuvEQrVxjh34tgFuz2/7Sz+yqBY664hrWd/4ZAfBNec2+2Yg DO7MpYKLRGJ5aK0PhN15ehFhP9HCXJqNY8GLENvc=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2C4ORVLGERZNPKV753R3ELPEVBNHHB2737AM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3047/c532478955@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3047@github.com>
References: <quicwg/base-drafts/pull/3047@github.com>
Subject: Re: [quicwg/base-drafts] Send after receiving an ACK (#3047)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d818827a9259_3a013fa6bd8cd9641148b5"; 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/fl3QuNqwDB7FphY_JZaBZBgLgRY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:28:10 -0000

----==_mimepart_5d818827a9259_3a013fa6bd8cd9641148b5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I would be inclined to having "SendOnePacket" before "SendAsCwndAllows" as we discussed on the issue. WDYT?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3047#issuecomment-532478955
----==_mimepart_5d818827a9259_3a013fa6bd8cd9641148b5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I would be inclined to having "SendOnePacket" before "SendAsCwndAllows" as we discussed on the issue. WDYT?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3047?email_source=notifications&amp;email_token=AFTOJK55NSM674TTJPE24QLQKF72PA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66PX2Y#issuecomment-532478955">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK66SQ3YL6I6NJAHRCTQKF72PANCNFSM4IXV7ICQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3X35N2FG2Y6WJQFQDQKF72PA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66PX2Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3047?email_source=notifications\u0026email_token=AFTOJK55NSM674TTJPE24QLQKF72PA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66PX2Y#issuecomment-532478955",
"url": "https://github.com/quicwg/base-drafts/pull/3047?email_source=notifications\u0026email_token=AFTOJK55NSM674TTJPE24QLQKF72PA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66PX2Y#issuecomment-532478955",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d818827a9259_3a013fa6bd8cd9641148b5--


From nobody Tue Sep 17 18: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 8E28112012E for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:29:55 -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 aCNZNFz0fZXI for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:29: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 459C012011E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:29:53 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:29:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568770192; bh=8OxLlBQX7yV9KoN28ZJu3VWWjDeVTiYJQALNjMKxsyM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XV0RTCSsqKIfh1eHIQqQ24PLxnrdLXwcG9hdoiH/5tOX2MM6ktuvpZT7u7lUDfUak yD53v+J51li9qwbmU7K9jdJbtHPnaikNtBVLQJHcOEKNGpZSIZOnUU3Z4eGkULa5So ZgX5NfV+ZLzDNiBSC3YWUI9dCcRpFvHzf95KTXVA=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2PDLN6TX6LJWU35LV3R2WQBEVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/review/289626822@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d818890923f7_4c833f97d8ecd95c7369a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2DW_wpQ52dH-T_rpWFcAqmPBctI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:29:55 -0000

----==_mimepart_5d818890923f7_4c833f97d8ecd95c7369a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.

I think that we're still maybe talking past each other.

> @@ -84,7 +85,7 @@ informative:
       - ins: R. Ng
       - ins: B. Tackmann
     date: 2019-06-01
-    target: https://eprint.iacr.org/2019/624
+    target: "http://dx.doi.org/10.1007/978-3-030-26948-7_9"

With a DOI, you can just cite this as: `{{?NAN=DOI.10.1007/978-3-030-26948-7_9}}` and save all that typing.  Same for the above.

> @@ -1440,12 +1441,13 @@ Header protection uses the output of the packet protection AEAD to derive
 protected_field = field XOR PRF(hp_key, sample)
 ~~~
 
-Assuming hp_key is distinct from the packet protection key, this construction
-(HN1) achieves AE2 security and therefore guarantees privacy of `field`, the
-protected packet header. One important distinction between HN1 and the header
-protection construction in this document is that the latter uses an AEAD
-algorithm as the PRF. However, since the encrypted output of an AEAD is
-pseudorandom {{DefnAEAD}}, this achieves the properties desired from a PRF.
+As `hp_key` is distinct from the packet protection key, this construction
+(HN1) achieves AE2 security as defined in {{NAN}} and therefore guarantees
+privacy of `field`, the protected packet header. One important distinction
+between HN1 and the header protection construction in this document is that
+the latter uses an AEAD algorithm as the PRF. However, since the encrypted
+output of an AEAD is pseudorandom {{DefnAEAD}}, this achieves the properties
+desired from a PRF.

This last sentence doesn't wash well for me still.

The reason that we care about the AEAD output being pseudorandom is that this is the way we select the key we use for header protection.  But that is something that the Nonces are Noticed paper should worry about in its proofs.  The important factor for us here is that we are using the HN1 construction properly.  For that, we only need to show that we are using a PRF.  To support that we just need to say that both AES-ECB and ChaCha20 are PRFs.  If that claim needs support, that requires a different paper.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3031#pullrequestreview-289626822
----==_mimepart_5d818890923f7_4c833f97d8ecd95c7369a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> commented on this pull request.</p>

<p>I think that we're still maybe talking past each other.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3031#discussion_r325448220">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -84,7 +85,7 @@ informative:
       - ins: R. Ng
       - ins: B. Tackmann
     date: 2019-06-01
-    target: https://eprint.iacr.org/2019/624
+    target: &quot;http://dx.doi.org/10.1007/978-3-030-26948-7_9&quot;
</pre>
<p>With a DOI, you can just cite this as: <code>{{?NAN=DOI.10.1007/978-3-030-26948-7_9}}</code> and save all that typing.  Same for the above.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3031#discussion_r325448841">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1440,12 +1441,13 @@ Header protection uses the output of the packet protection AEAD to derive
 protected_field = field XOR PRF(hp_key, sample)
 ~~~
 
-Assuming hp_key is distinct from the packet protection key, this construction
-(HN1) achieves AE2 security and therefore guarantees privacy of `field`, the
-protected packet header. One important distinction between HN1 and the header
-protection construction in this document is that the latter uses an AEAD
-algorithm as the PRF. However, since the encrypted output of an AEAD is
-pseudorandom {{DefnAEAD}}, this achieves the properties desired from a PRF.
+As `hp_key` is distinct from the packet protection key, this construction
+(HN1) achieves AE2 security as defined in {{NAN}} and therefore guarantees
+privacy of `field`, the protected packet header. One important distinction
+between HN1 and the header protection construction in this document is that
+the latter uses an AEAD algorithm as the PRF. However, since the encrypted
+output of an AEAD is pseudorandom {{DefnAEAD}}, this achieves the properties
+desired from a PRF.
</pre>
<p>This last sentence doesn't wash well for me still.</p>
<p>The reason that we care about the AEAD output being pseudorandom is that this is the way we select the key we use for header protection.  But that is something that the Nonces are Noticed paper should worry about in its proofs.  The important factor for us here is that we are using the HN1 construction properly.  For that, we only need to show that we are using a PRF.  To support that we just need to say that both AES-ECB and ChaCha20 are PRFs.  If that claim needs support, that requires a different paper.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications&amp;email_token=AFTOJK3UOSNIZIYW273HGE3QKGABBA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBVVRQ#pullrequestreview-289626822">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK35BOB2WJF7QVJ7USTQKGABBANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6FMHF26RV5J5MOHYTQKGABBA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBVVRQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK3UOSNIZIYW273HGE3QKGABBA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBVVRQ#pullrequestreview-289626822",
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK3UOSNIZIYW273HGE3QKGABBA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBVVRQ#pullrequestreview-289626822",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d818890923f7_4c833f97d8ecd95c7369a--


From nobody Tue Sep 17 18:31: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 03B9512011E for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:31:01 -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 H4aVN4bHJlzE for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:30:59 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 98F8A12007A for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:30:59 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id A49A9960481 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:30:58 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:30:58 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4KKXEMMXRH33FHQRV3R3EWFEVBNHHB2737AM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3047/c532479549@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3047@github.com>
References: <quicwg/base-drafts/pull/3047@github.com>
Subject: Re: [quicwg/base-drafts] Send after receiving an ACK (#3047)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8188d296521_6a0f3fc6b3acd960796f0"; 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/rPOHrubwqdBOjPsm6WrsgJ_h1yY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:31:01 -0000

----==_mimepart_5d8188d296521_6a0f3fc6b3acd960796f0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

In a world governed by congestion controllers with pacing, I'm not sure that makes sense?  It seems to pull over some TCP ideas, but I'm not sure they're relevant here?  Certainly a congestion controller could decide to always send a packet after loss, but can we leave that up to 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/3047#issuecomment-532479549
----==_mimepart_5d8188d296521_6a0f3fc6b3acd960796f0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>In a world governed by congestion controllers with pacing, I'm not sure that makes sense?  It seems to pull over some TCP ideas, but I'm not sure they're relevant here?  Certainly a congestion controller could decide to always send a packet after loss, but can we leave that up to 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/3047?email_source=notifications&amp;email_token=AFTOJK5L3NSKWBT5EOXKUMLQKGAFFA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66P4PI#issuecomment-532479549">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6DDHNQRIXZSDGSAMDQKGAFFANCNFSM4IXV7ICQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZF75HQOOIKHMJLSMTQKGAFFA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66P4PI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3047?email_source=notifications\u0026email_token=AFTOJK5L3NSKWBT5EOXKUMLQKGAFFA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66P4PI#issuecomment-532479549",
"url": "https://github.com/quicwg/base-drafts/pull/3047?email_source=notifications\u0026email_token=AFTOJK5L3NSKWBT5EOXKUMLQKGAFFA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66P4PI#issuecomment-532479549",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8188d296521_6a0f3fc6b3acd960796f0--


From nobody Tue Sep 17 18: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 9F30A12013B for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:32:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.495
X-Spam-Level: 
X-Spam-Status: No, score=-1.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, GB_SUMOF=5, 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 sAzZvErXHyqz for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:32: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 A63D812011E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:32:08 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id D02566600A0 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:32:07 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:32:07 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4LVHR6X2NQL3QAA6F3R25ZPEVBNHHB253VH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3042/review/289628217@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3042@github.com>
References: <quicwg/base-drafts/pull/3042@github.com>
Subject: Re: [quicwg/base-drafts] Use the FRAME_ENCODING_ERROR for errors in frame encoding (#3042)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d818917c156e_f773fb83f6cd9641108e6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/rS7y_VNST_y6nraQyVgoNOXCEds>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:32:11 -0000

----==_mimepart_5d818917c156e_f773fb83f6cd9641108e6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.



> @@ -5060,8 +5059,8 @@ the offset of the next byte that would be sent.
 The first byte in the stream has an offset of 0.  The largest offset delivered
 on a stream - the sum of the offset and data length - cannot exceed 2^62-1, as
 it is not possible to provide flow control credit for that data.  Receipt of a
-frame that exceeds this limit will be treated as a connection error of type
-FLOW_CONTROL_ERROR.
+frame that exceeds this limit MUST be treated as a connection error of type
+FRAME_ENCODING_ERROR or FLOW_CONTROL_ERROR.

I think that permitting either is in line with principles.  I mean, sure, this can be flow control, but if someone has code that validates frames and that code all directs into a FRAME_ENCODING_ERROR code path, that's fine.  Checking that `x+y>=2^62` might be redundant, but I don't want to say that that code can't run that 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/pull/3042#discussion_r325449290
----==_mimepart_5d818917c156e_f773fb83f6cd9641108e6
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/3042#discussion_r325449290">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -5060,8 +5059,8 @@ the offset of the next byte that would be sent.
 The first byte in the stream has an offset of 0.  The largest offset delivered
 on a stream - the sum of the offset and data length - cannot exceed 2^62-1, as
 it is not possible to provide flow control credit for that data.  Receipt of a
-frame that exceeds this limit will be treated as a connection error of type
-FLOW_CONTROL_ERROR.
+frame that exceeds this limit MUST be treated as a connection error of type
+FRAME_ENCODING_ERROR or FLOW_CONTROL_ERROR.
</pre>
<p>I think that permitting either is in line with principles.  I mean, sure, this can be flow control, but if someone has code that validates frames and that code all directs into a FRAME_ENCODING_ERROR code path, that's fine.  Checking that <code>x+y&gt;=2^62</code> might be redundant, but I don't want to say that that code can't run that 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/pull/3042?email_source=notifications&amp;email_token=AFTOJK5QYI7UCBNY4AFLGUDQKGAJPA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBWAOI#discussion_r325449290">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK24BTNIQLANSWKQ3BLQKGAJPANCNFSM4IXJVA2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2QQIL6T6BSXAMXJN3QKGAJPA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBWAOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJK5QYI7UCBNY4AFLGUDQKGAJPA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBWAOI#discussion_r325449290",
"url": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJK5QYI7UCBNY4AFLGUDQKGAJPA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBWAOI#discussion_r325449290",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d818917c156e_f773fb83f6cd9641108e6--


From nobody Tue Sep 17 18:33: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 2D43D12012E for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:33:10 -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 rMxJhzW0YWPt for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:33:08 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5D15612011E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:33:08 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:33:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568770387; bh=zg3Ldwa0C7UIIKfPqj6yxLrlYhzyO6Ofy9xgjlN2CPA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tqZI4mO+OBJodpHpB5vm+G2cgPD2BAjb4tG2ZTBRxAGPXUKfSARigJi3s7pFSR4Gv 5zeBwrMGR49G151rRZ03bKp3x38JBNaoaxPC8mGXFJEqwDGZD+3v2Y6Z25a8YjxFdD AWtfNGWnigJNTu0sp627H780rzZZtoWJA05Z1dvo=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK32A47JPCD73OFNK3F3R3E6HEVBNHHB274N7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3048/c532480012@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3048@github.com>
References: <quicwg/base-drafts/pull/3048@github.com>
Subject: Re: [quicwg/base-drafts] Retransmitting ACK frames can inflate RTT (#3048)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d818953a66fb_1d433f86b54cd9682129b4"; 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/qmRJRzrxlIxUw_znnFIAsSANhoo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:33:10 -0000

----==_mimepart_5d818953a66fb_1d433f86b54cd9682129b4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I agree with @martinthomson. Perhaps it's better to add some text where we discourage retransmitting of frames (at the end of [Section 13.3](https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#rfc.section.13.3)) instead of in 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/pull/3048#issuecomment-532480012
----==_mimepart_5d818953a66fb_1d433f86b54cd9682129b4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I 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>. Perhaps it's better to add some text where we discourage retransmitting of frames (at the end of <a href="https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#rfc.section.13.3" rel="nofollow">Section 13.3</a>) instead of in 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/pull/3048?email_source=notifications&amp;email_token=AFTOJKZ7JCSKJMTSVXURFG3QKGANHA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66QADA#issuecomment-532480012">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2LFZAR7P75IE23GDTQKGANHANCNFSM4IXWCBGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZIQSKNS3B47GHU37TQKGANHA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66QADA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3048?email_source=notifications\u0026email_token=AFTOJKZ7JCSKJMTSVXURFG3QKGANHA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66QADA#issuecomment-532480012",
"url": "https://github.com/quicwg/base-drafts/pull/3048?email_source=notifications\u0026email_token=AFTOJKZ7JCSKJMTSVXURFG3QKGANHA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66QADA#issuecomment-532480012",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d818953a66fb_1d433f86b54cd9682129b4--


From nobody Tue Sep 17 18:40: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 9B4F112007A for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:40:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.495
X-Spam-Level: 
X-Spam-Status: No, score=-1.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, GB_SUMOF=5, 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 z_jlsxC5UivT for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:40: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 941C11200D6 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:40:25 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 79D0A1C0288 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:40:24 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:40:24 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYZCDH6HEDKLPPRGPN3R3FZREVBNHHB253VH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3042/review/289630013@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3042@github.com>
References: <quicwg/base-drafts/pull/3042@github.com>
Subject: Re: [quicwg/base-drafts] Use the FRAME_ENCODING_ERROR for errors in frame encoding (#3042)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d818b086a7b4_351b3fe07cccd96c150091"; 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/hASLNlT7ZS3Ehi2FcQMYRwoxAvk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:40:28 -0000

----==_mimepart_5d818b086a7b4_351b3fe07cccd96c150091
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> @@ -5060,8 +5059,8 @@ the offset of the next byte that would be sent.
 The first byte in the stream has an offset of 0.  The largest offset delivered
 on a stream - the sum of the offset and data length - cannot exceed 2^62-1, as
 it is not possible to provide flow control credit for that data.  Receipt of a
-frame that exceeds this limit will be treated as a connection error of type
-FLOW_CONTROL_ERROR.
+frame that exceeds this limit MUST be treated as a connection error of type
+FRAME_ENCODING_ERROR or FLOW_CONTROL_ERROR.

I don't think options are helpful here, so I'd prefer the more specific error.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3042#discussion_r325450606
----==_mimepart_5d818b086a7b4_351b3fe07cccd96c150091
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/3042#discussion_r325450606">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -5060,8 +5059,8 @@ the offset of the next byte that would be sent.
 The first byte in the stream has an offset of 0.  The largest offset delivered
 on a stream - the sum of the offset and data length - cannot exceed 2^62-1, as
 it is not possible to provide flow control credit for that data.  Receipt of a
-frame that exceeds this limit will be treated as a connection error of type
-FLOW_CONTROL_ERROR.
+frame that exceeds this limit MUST be treated as a connection error of type
+FRAME_ENCODING_ERROR or FLOW_CONTROL_ERROR.
</pre>
<p>I don't think options are helpful here, so I'd prefer the more specific 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/pull/3042?email_source=notifications&amp;email_token=AFTOJK5KCEAZDFEIXRE7O6DQKGBIRA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBWOPI#discussion_r325450606">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2PNVK2VVIT3TARDNLQKGBIRANCNFSM4IXJVA2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK73YIUQOGQTKZMDGWTQKGBIRA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBWOPI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJK5KCEAZDFEIXRE7O6DQKGBIRA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBWOPI#discussion_r325450606",
"url": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJK5KCEAZDFEIXRE7O6DQKGBIRA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBWOPI#discussion_r325450606",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d818b086a7b4_351b3fe07cccd96c150091--


From nobody Tue Sep 17 18: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 D2C401200D6 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:45: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 FqARB2uXLixi for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:45: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 55ACC12007A for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:45:40 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:45:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568771139; bh=O//PXsDzrKFYXSoMSJ2UOiL1FwvHzfFqWGtT3Og+1HQ=; h=Date:From:To:Subject:From; b=kthkiq0jcc1X4TrEJRgMnpokMm2SsYNPCMSRAw82WYLu+ecJcZthuEi4QXJpgvuCP ZdiVCzEpOi9Dc64yVXVxAj4EsHc5GGN6BtYnT60211HCz+JTwSO/4jCv2Db0ww39qf JjqKBg28KgOFzUaHDdZgFgB9QCaYhv6RNqJlvVHg=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/no-appdata/3a813c-df5d9f@github.com>
Subject: [quicwg/base-drafts] df5d9f: is an 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/Pzo9ocF69F5c-HVbeJ3yFmHZ60I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:45:42 -0000

  Branch: refs/heads/no-appdata
  Home:   https://github.com/quicwg/base-drafts
  Commit: df5d9f102587b8fbcce1f3d815698774042bea26
      https://github.com/quicwg/base-drafts/commit/df5d9f102587b8fbcce1f3d815698774042bea26
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-18 (Wed, 18 Sep 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  is an error



From nobody Tue Sep 17 18: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 4C72412011E for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:45: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 o4OxtZM-RHOW for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:45: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 ABC6E1200D6 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:45:48 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:45:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568771147; bh=i66/iTNyoxEk91i6SfxZdi/AQ7LVVg75l6rK9hBCfrg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NcqDbxx4LSp4r+pOx4Lds7w1iWaWnCEFHqsPriWkRgIXARmbB7FrB2zzadxGzMS2+ RRNoWjQ0e1Wr5NwWsrpDfB/lAYH7VmJBgR1n9VyR391FVbUQK8Yb+42XAidD38bjsa y0ACZLJLr5cR+0QjJOWQGgBhQ7fdjDx/PhthyuFM=
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/3043/push/4045999326@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3043@github.com>
References: <quicwg/base-drafts/pull/3043@github.com>
Subject: Re: [quicwg/base-drafts] TLS application data isn't possible (#3043)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d818c4bccc96_6803f8a616cd95c2641c4"; 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/yuxLHFedng47EiIfvTxVqabB6A4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:45:50 -0000

----==_mimepart_5d818c4bccc96_6803f8a616cd95c2641c4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

df5d9f102587b8fbcce1f3d815698774042bea26  is an error


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3043/files/3a813cdab5b53aeb5cbb3064f9046dcf6179eddd..df5d9f102587b8fbcce1f3d815698774042bea26

----==_mimepart_5d818c4bccc96_6803f8a616cd95c2641c4
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/df5d9f102587b8fbcce1f3d815698774042bea26">df5d9f1</a>  is an error</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3043/files/3a813cdab5b53aeb5cbb3064f9046dcf6179eddd..df5d9f102587b8fbcce1f3d815698774042bea26?email_source=notifications&amp;email_token=AFTOJK4IMD6ZLQIVHXLDOWDQKGB4XA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMJVHAYDOOCQOVZWQIZUGA2DKOJZHEZTENQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4UXVJUKE4WQB2IEATQKGB4XANCNFSM4IXKSJ7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4XN6JEJZTOQW2BJHTQKGB4XA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMJVHAYDOOCQOVZWQIZUGA2DKOJZHEZTENQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3043/files/3a813cdab5b53aeb5cbb3064f9046dcf6179eddd..df5d9f102587b8fbcce1f3d815698774042bea26?email_source=notifications\u0026email_token=AFTOJK4IMD6ZLQIVHXLDOWDQKGB4XA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMJVHAYDOOCQOVZWQIZUGA2DKOJZHEZTENQ",
"url": "https://github.com/quicwg/base-drafts/pull/3043/files/3a813cdab5b53aeb5cbb3064f9046dcf6179eddd..df5d9f102587b8fbcce1f3d815698774042bea26?email_source=notifications\u0026email_token=AFTOJK4IMD6ZLQIVHXLDOWDQKGB4XA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMJVHAYDOOCQOVZWQIZUGA2DKOJZHEZTENQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d818c4bccc96_6803f8a616cd95c2641c4--


From nobody Tue Sep 17 18:46: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 72DBC12011E for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:46:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 6JPnmjt-vOwd for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:46:14 -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 EB1B01200D6 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:46:13 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 1E8C66E0071 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:46:13 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:46:13 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c26f90-66ee45@github.com>
Subject: [quicwg/base-drafts] 66ee45: Script updating gh-pages from df5d9f10. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gvS1o-KOefDF8uhEy15Xbrzo6nc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:46:16 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 66ee45f5be7158d2586e1cfc799e3cd225356a32
      https://github.com/quicwg/base-drafts/commit/66ee45f5be7158d2586e1cfc799e3cd225356a32
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-18 (Wed, 18 Sep 2019)

  Changed paths:
    M index.html
    M no-appdata/draft-ietf-quic-http.html
    M no-appdata/draft-ietf-quic-http.txt
    M no-appdata/draft-ietf-quic-invariants.html
    M no-appdata/draft-ietf-quic-invariants.txt
    M no-appdata/draft-ietf-quic-qpack.html
    M no-appdata/draft-ietf-quic-qpack.txt
    M no-appdata/draft-ietf-quic-recovery.html
    M no-appdata/draft-ietf-quic-recovery.txt
    M no-appdata/draft-ietf-quic-tls.html
    M no-appdata/draft-ietf-quic-tls.txt
    M no-appdata/draft-ietf-quic-transport.html
    M no-appdata/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from df5d9f10. [ci skip]



From nobody Tue Sep 17 18:47: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 D1CB612012E for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:47:26 -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 G1zEDTWlsYk0 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:47: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 EC3A4120880 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:47:24 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 17253C6074E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:47:24 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:47:24 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6LGYY6EUT3TNDNSPN3R3GTZEVBNHHBTZTRJU@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/532482980@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_5d818cac77f3_1e0a3fd4176cd95c132592"; 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/sI_qS93VPlvGgE49v3CC-HFhzpw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:47:33 -0000

----==_mimepart_5d818cac77f3_1e0a3fd4176cd95c132592
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Even with a client sent GOAWAY, you'd receive a few more pushes within the next RTT.  If you managed MAX_PUSH_ID like flow control and only gave out enough extra for the time window you wanted to shut down within(ie: 1-2RTTs), I believe this achieves the desired behavior?  If that time window is <1RTT, then your only real option is CONNECTION_CLOSE?

-- 
You are receiving this 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-532482980
----==_mimepart_5d818cac77f3_1e0a3fd4176cd95c132592
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Even with a client sent GOAWAY, you'd receive a few more pushes within the next RTT.  If you managed MAX_PUSH_ID like flow control and only gave out enough extra for the time window you wanted to shut down within(ie: 1-2RTTs), I believe this achieves the desired behavior?  If that time window is &lt;1RTT, then your only real option is CONNECTION_CLOSE?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK2HC73DYQTK27WXUSTQKGCCZA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66QXJA#issuecomment-532482980">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3SMQCZZZ4O6RKJ6V3QKGCCZANCNFSM4HGYVKSA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5RZHYGKV3BQ7KEZWLQKGCCZA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66QXJA.gif" height="1" width="1" 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=AFTOJK2HC73DYQTK27WXUSTQKGCCZA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66QXJA#issuecomment-532482980",
"url": "https://github.com/quicwg/base-drafts/issues/2632?email_source=notifications\u0026email_token=AFTOJK2HC73DYQTK27WXUSTQKGCCZA5CNFSM4HGYVKSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66QXJA#issuecomment-532482980",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d818cac77f3_1e0a3fd4176cd95c132592--


From nobody Tue Sep 17 18: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 0D94712012E for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:47:49 -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 HIJ26usefMzz for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:47:47 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 798A612011E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:47:47 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:47:46 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568771266; bh=YAmgw7RowgtIAq4Tl+vgzeZKoltvkld/1dTcna8Msx0=; h=Date:From:To:Subject:From; b=Cwy+/KIpBvASmlmf2DMrZKkvkUqJU8PixXSS7/nPjuf3uwif3MECWj+KZc3j9vpyi G22s7y80BvMwrxqBid6ZTEu/4O0a1hNUBhAz7PZBmkWTrbwBnvXrgAimTE8KBgXW4t w9H74HrrtIW3l5uMuBA/gHlaz0JsqXXGpHR6s5FE=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-retransmitting-acks-is-bad-ok/b7c497-8ca608@github.com>
Subject: [quicwg/base-drafts] 8ca608: 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/dQF9pGpvPTSMLgR-sglPScNUZJE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:47:49 -0000

  Branch: refs/heads/ianswett-retransmitting-acks-is-bad-ok
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8ca6082686923931376d316a760573b1ce36d238
      https://github.com/quicwg/base-drafts/commit/8ca6082686923931376d316a760573b1ce36d238
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-17 (Tue, 17 Sep 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 Tue Sep 17 18: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 074BF12012E for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:47: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, HTML_IMAGE_ONLY_24=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 9IIC9kmL5FOS for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:47:55 -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 4C84812011E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:47:55 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:47:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568771274; bh=tbs1TwcqfXwcqx9Yz5g0kNkdw2hE23Nj4G/qdnEfDIo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=r5JVMkJ6glj4dndvVBYT9FR1VUFd+LkRrgpTA7vRH/suJlgwtlwZmuSDABJNdQycL YTmq6bOzoMdZ6YWuS/2N9RpFsiOpM0Diy6/UKZvmYFklOsAu9kvGP0Q8JU7eJqaxok aBZw/gDgHtu4pnosNnQwH1adMxMVnHH+xJuSYKDY=
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/3048/push/4046003851@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3048@github.com>
References: <quicwg/base-drafts/pull/3048@github.com>
Subject: Re: [quicwg/base-drafts] Retransmitting ACK frames can inflate RTT (#3048)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d818cca59f07_6bd73f95efccd96c142777"; 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/ycr0gmolTQ2ZFURwRbkaT4xyYPk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:47:57 -0000

----==_mimepart_5d818cca59f07_6bd73f95efccd96c142777
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

8ca6082686923931376d316a760573b1ce36d238  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/3048/files/b7c497ab227828980837f176a9b6756b8adcdfb8..8ca6082686923931376d316a760573b1ce36d238

----==_mimepart_5d818cca59f07_6bd73f95efccd96c142777
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/8ca6082686923931376d316a760573b1ce36d238">8ca6082</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/3048/files/b7c497ab227828980837f176a9b6756b8adcdfb8..8ca6082686923931376d316a760573b1ce36d238?email_source=notifications&amp;email_token=AFTOJK5CDILV5RNLNK5XOMLQKGCEVA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQNJWGUYTCMCQOVZWQIZUGA2DMMBQGM4DKMI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2EAULFGLJMHYZ3SGLQKGCEVANCNFSM4IXWCBGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK465E3SXTLHSIW46BTQKGCEVA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQNJWGUYTCMCQOVZWQIZUGA2DMMBQGM4DKMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3048/files/b7c497ab227828980837f176a9b6756b8adcdfb8..8ca6082686923931376d316a760573b1ce36d238?email_source=notifications\u0026email_token=AFTOJK5CDILV5RNLNK5XOMLQKGCEVA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQNJWGUYTCMCQOVZWQIZUGA2DMMBQGM4DKMI",
"url": "https://github.com/quicwg/base-drafts/pull/3048/files/b7c497ab227828980837f176a9b6756b8adcdfb8..8ca6082686923931376d316a760573b1ce36d238?email_source=notifications\u0026email_token=AFTOJK5CDILV5RNLNK5XOMLQKGCEVA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQNJWGUYTCMCQOVZWQIZUGA2DMMBQGM4DKMI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d818cca59f07_6bd73f95efccd96c142777--


From nobody Tue Sep 17 18:48: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 DAB661209BE for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:48: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, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id puIm1OEOtE7x for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:48:04 -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 3259F1208F9 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:48:04 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:48:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568771283; bh=IySUW7mOR127BEZu5nhRc+Mu57u3iaYYXM/ym6nh2fo=; h=Date:From:To:Subject:From; b=pJWPHqheUMIHdOlH7qM3YTarA6narHgvxUR2v9ad6KwJOFfn+hOzcSbyd/s896Nv6 kNyqL4Is27SBFwiXaKqlU5f4q3fo1ig8iW90IUwPMvVSfPeGQbNxFXxYdVpGMj6akT Un7LIiz/XnnPh0bplhyppChKH0oH4UZ+Iv03BDYo=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/926438-aa14f0@github.com>
Subject: [quicwg/base-drafts] 629996: Remove 'given'
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PK5W-6dQkqGJ6lkivqBxVMlwoFw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:48:12 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 629996a63ee2e859713ab40a80dce300f302b8b5
      https://github.com/quicwg/base-drafts/commit/629996a63ee2e859713ab40a80dce300f302b8b5
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-17 (Tue, 17 Sep 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Remove 'given'


  Commit: 136cd0176ad9815a42f7ae6fb484956efcc74873
      https://github.com/quicwg/base-drafts/commit/136cd0176ad9815a42f7ae6fb484956efcc74873
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-17 (Tue, 17 Sep 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  QUIC only carries TLS handshake and alert


  Commit: 3a813cdab5b53aeb5cbb3064f9046dcf6179eddd
      https://github.com/quicwg/base-drafts/commit/3a813cdab5b53aeb5cbb3064f9046dcf6179eddd
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-17 (Tue, 17 Sep 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  received from TLS


  Commit: df5d9f102587b8fbcce1f3d815698774042bea26
      https://github.com/quicwg/base-drafts/commit/df5d9f102587b8fbcce1f3d815698774042bea26
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-18 (Wed, 18 Sep 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  is an error


  Commit: aa14f0eb42f8ba8da26c97c252d0bf5639f0e88d
      https://github.com/quicwg/base-drafts/commit/aa14f0eb42f8ba8da26c97c252d0bf5639f0e88d
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-18 (Wed, 18 Sep 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Merge pull request #3043 from quicwg/no-appdata

TLS application data isn't possible


Compare: https://github.com/quicwg/base-drafts/compare/9264380046d3...aa14f0eb42f8


From nobody Tue Sep 17 18: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 636FA1209DB for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:48:07 -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, TVD_SPACE_RATIO=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 ZD1CBGRsootM for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:48:04 -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 CA5C8120920 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:48:04 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 155CBA054A for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:48:04 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:48:04 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/no-appdata/df5d9f-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/xdBqqpJwXmAqEVrpGyJ1BCByuOw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:48:13 -0000

  Branch: refs/heads/no-appdata
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue Sep 17 18: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 D79FF120131 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:48:10 -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 Stqey_5LsxhU for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:48:08 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 945FA12094F for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:48:08 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id BC12A521222 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:48:07 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:48:07 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6ODN3LVZXCSQCJBH53R27VPEVBNHHB257M5U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3043/review/289631635@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3043@github.com>
References: <quicwg/base-drafts/pull/3043@github.com>
Subject: Re: [quicwg/base-drafts] TLS application data isn't possible (#3043)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d818cd7ad4fa_7473f81c92cd96013928d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9l4rT1TkiRwJEnNXhvre5Id06aM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:48:14 -0000

----==_mimepart_5d818cd7ad4fa_7473f81c92cd96013928d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.



>  
 QUIC takes the unprotected content of TLS handshake records as the content of
 CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles
 CRYPTO frames into QUIC packets, which are protected using QUIC packet
 protection.
 
+QUIC is only capable of conveying TLS handshake records in CRYPTO frames.  TLS
+alerts are turned into QUIC CONNECTION_CLOSE error codes; see {{tls-errors}}.
+TLS application data and other message types cannot be carried by QUIC at any
+encryption level and can be treated as an error if they are received from the

I'll take Kazuho's "is an error" to avoid triggering the usual "treat X as an error of type" thinking that goes along with generating CONNECTION_CLOSE.  This is just wrong.

To Marten's point about how stacks can do this - I don't think that we generate any application_data records in our stack, but we certainly have assertions in place in case we get some.  If someone accidentally writes to the TLS socket, then we'll at catch that at the earliest possible moment.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3043#discussion_r325451959
----==_mimepart_5d818cd7ad4fa_7473f81c92cd96013928d
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/3043#discussion_r325451959">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;  
 QUIC takes the unprotected content of TLS handshake records as the content of
 CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles
 CRYPTO frames into QUIC packets, which are protected using QUIC packet
 protection.
 
+QUIC is only capable of conveying TLS handshake records in CRYPTO frames.  TLS
+alerts are turned into QUIC CONNECTION_CLOSE error codes; see {{tls-errors}}.
+TLS application data and other message types cannot be carried by QUIC at any
+encryption level and can be treated as an error if they are received from the
</pre>
<p>I'll take Kazuho's "is an error" to avoid triggering the usual "treat X as an error of type" thinking that goes along with generating CONNECTION_CLOSE.  This is just wrong.</p>
<p>To Marten's point about how stacks can do this - I don't think that we generate any application_data records in our stack, but we certainly have assertions in place in case we get some.  If someone accidentally writes to the TLS socket, then we'll at catch that at the earliest possible moment.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications&amp;email_token=AFTOJKYORF5ZX3XFNL27QSLQKGCFPA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBW3EY#discussion_r325451959">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6XPH5LDBKGWOVAVGLQKGCFPANCNFSM4IXKSJ7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7YFWUMNOTDG3VY5JLQKGCFPA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBW3EY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJKYORF5ZX3XFNL27QSLQKGCFPA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBW3EY#discussion_r325451959",
"url": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJKYORF5ZX3XFNL27QSLQKGCFPA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBW3EY#discussion_r325451959",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d818cd7ad4fa_7473f81c92cd96013928d--


From nobody Tue Sep 17 18: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 908B9120131 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:48: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 3FPXLtxfg5BZ for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:48: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 CBEDF1209E5 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:48:12 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:48:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568771292; bh=4m1yf5uUYWYt06ERcSdl/zeDTmjamRQ7F4gvc/d+P98=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GfcbFNUzAVQGAQRSbVF3GF7YCW7bKNnFA6fUdEK9700QV9IKM7XnrnzKJCknAAfm1 uRlxbl88umiyNRWxk/9i7cHTY8acCSubXsA0cbTXixumJzBrXsmA5vErsWoZpDIWeZ t9vYYECOynNxtIM8qvYBKadjSKNZqoEQ63Za3B6s=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY4WGBC3B3YILU23453R2YUZEVBNHHB257M5U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3043/issue_event/2641886099@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3043@github.com>
References: <quicwg/base-drafts/pull/3043@github.com>
Subject: Re: [quicwg/base-drafts] TLS application data isn't possible (#3043)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d818cdc2228b_4c893f97d8ecd95c10877f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/D4w6WLP3tPQcj3w3uYgeQOBV_3k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:48:15 -0000

----==_mimepart_5d818cdc2228b_4c893f97d8ecd95c10877f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3043 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/3043#event-2641886099
----==_mimepart_5d818cdc2228b_4c893f97d8ecd95c10877f
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="494398701" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3043" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3043/hovercard" href="https://github.com/quicwg/base-drafts/pull/3043">#3043</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/3043?email_source=notifications&amp;email_token=AFTOJKYBVYRJODXM7CMO5CLQKGCFZA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTV37XEY#event-2641886099">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK62YDU6PUHK3KOMBMDQKGCFZANCNFSM4IXKSJ7A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7V2WYJVBLKWYZSCLLQKGCFZA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTV37XEY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJKYBVYRJODXM7CMO5CLQKGCFZA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTV37XEY#event-2641886099",
"url": "https://github.com/quicwg/base-drafts/pull/3043?email_source=notifications\u0026email_token=AFTOJKYBVYRJODXM7CMO5CLQKGCFZA5CNFSM4IXKSJ7KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTV37XEY#event-2641886099",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d818cdc2228b_4c893f97d8ecd95c10877f--


From nobody Tue Sep 17 18:48: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 6078412012E for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:48: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 uV-MnCiLr7Gz for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:48:27 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D6EC612011E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:48:27 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:48:27 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568771307; bh=/jrAThD4vBnofznY3aag4ix5A5RVJzZTacsDy6xsfd0=; h=Date:From:To:Subject:From; b=kyuR/0ujHwc+9zRPE/g4oAmF7ky3MsirZI+++ONNyuCBjzktk0bIjjR3U9sFhaV3L jyPWdT8UpRxxpIcIxT4t4lJ0sQdV5NI2tXbwBFGAxQgacr2mmvKEybzR6vkU8YEMbE jA+d5cl+GfpR43d8wxTbHklA7MLNmbO9LZpY+j/M=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/66ee45-e605b0@github.com>
Subject: [quicwg/base-drafts] e605b0: Script updating gh-pages from 8ca60826. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lsDKgQem07By9ELCPlpmAOGOFd8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:48:30 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: e605b01fd15421bcc0e6d0d996426ebf8ce2a7a2
      https://github.com/quicwg/base-drafts/commit/e605b01fd15421bcc0e6d0d996426ebf8ce2a7a2
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-18 (Wed, 18 Sep 2019)

  Changed paths:
    M ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-http.html
    M ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-http.txt
    M ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-invariants.html
    M ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-invariants.txt
    M ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-qpack.html
    M ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-qpack.txt
    M ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-recovery.html
    M ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-recovery.txt
    M ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-tls.html
    M ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-tls.txt
    M ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-transport.html
    M ianswett-retransmitting-acks-is-bad-ok/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 8ca60826. [ci skip]



From nobody Tue Sep 17 18:48: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 1CB5712012E for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:48: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 0Y2ttDv6AOhg for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:48: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 E1E0E12011E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:48:47 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:48:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568771327; bh=RYxOkMFcBwxIchldf7XgHdP8ywF93Ic5rVJlFegnJOE=; h=Date:From:To:Subject:From; b=GNE1CfTUML5bSxhCWtnLLX51EhOqvt22YmPMs6khGXpDkX+I7ZKU+LywAnyCCAu2I TMCzt1aQUribaaIhAvMWAJXljXpPVYtlyfSfp23mdW4K/RazOCRllTTSwf0swkDx7R dRF0GBts6+WHzAQiFfRLIPahlsy2KWPJotnegd0k=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/e605b0-09cf50@github.com>
Subject: [quicwg/base-drafts] 09cf50: Script updating gh-pages from aa14f0eb. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Cd_-49WRYl64PV1s5T-g-NaXxRs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:48:49 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 09cf5079efa5ef62cf5cb60fa4e4c128edc09f4d
      https://github.com/quicwg/base-drafts/commit/09cf5079efa5ef62cf5cb60fa4e4c128edc09f4d
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-18 (Wed, 18 Sep 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 aa14f0eb. [ci skip]



From nobody Tue Sep 17 18:49: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 8D201120131 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:49: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 kP25P65MuqOH for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:49: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 B976112012E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:49:09 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:49:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568771349; bh=6Fg0T8KEx9v1SxbAcQJCpwYv5w1pNe7P7PxGv+ug4Uw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TrzzrCs1kG81zILh4VaN95j7TrMMPtidLshXOGtNb/a3T+5YHo62buB8i7S3PDZ7c uipjRX7nD8bLbQzMBKIiFfeiEZlf2DuV81snVUzxO3inZOUnmQyi32yBNpIaY2u6Yj B+dCfhNk1M+pUz8vHrJKSoj0ZO0Ef5+yWQ8etwaU=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3JLCELRDIQJ3WTPKN3R3G2LEVBNHHB274N7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3048/review/289631857@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3048@github.com>
References: <quicwg/base-drafts/pull/3048@github.com>
Subject: Re: [quicwg/base-drafts] Retransmitting ACK frames can inflate RTT (#3048)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d818d15fc73_1d473f86b54cd9681336d6"; 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/HTEw2jb8lUwFWW0bkcpeLb9utiQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:49:12 -0000

----==_mimepart_5d818d15fc73_1d473f86b54cd9681336d6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> @@ -291,6 +291,13 @@ are received within an RTT.  As suggested in {{?RFC6298}}, doing so might result
 in inadequate history in smoothed_rtt and rttvar.  Ensuring that RTT estimates
 retain sufficient history is an open research question.
 
+### Retransmitted ACK frames
+
+Section 13.3 of {{QUIC-TRANSPORT}} recommends sending the most recent set of
+acknowledgements in ACK frames, but if ACK frames are retransmitted, an inflated

I originally wrote that, but it's likely to be inflated anyway, particularly if max_ack_delay is < RTT.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3048#discussion_r325452115
----==_mimepart_5d818d15fc73_1d473f86b54cd9681336d6
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/3048#discussion_r325452115">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -291,6 +291,13 @@ are received within an RTT.  As suggested in {{?RFC6298}}, doing so might result
 in inadequate history in smoothed_rtt and rttvar.  Ensuring that RTT estimates
 retain sufficient history is an open research question.
 
+### Retransmitted ACK frames
+
+Section 13.3 of {{QUIC-TRANSPORT}} recommends sending the most recent set of
+acknowledgements in ACK frames, but if ACK frames are retransmitted, an inflated
</pre>
<p>I originally wrote that, but it's likely to be inflated anyway, particularly if max_ack_delay is &lt; RTT.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3048?email_source=notifications&amp;email_token=AFTOJK5BKJ6A4R64P3PFQVTQKGCJLA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBW44I#discussion_r325452115">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZATPWL444L2CO4IYDQKGCJLANCNFSM4IXWCBGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZLDMAOR5X7W74WVULQKGCJLA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBW44I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3048?email_source=notifications\u0026email_token=AFTOJK5BKJ6A4R64P3PFQVTQKGCJLA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBW44I#discussion_r325452115",
"url": "https://github.com/quicwg/base-drafts/pull/3048?email_source=notifications\u0026email_token=AFTOJK5BKJ6A4R64P3PFQVTQKGCJLA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBW44I#discussion_r325452115",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d818d15fc73_1d473f86b54cd9681336d6--


From nobody Tue Sep 17 18:50: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 9E7DC12012E for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:50:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.28
X-Spam-Level: 
X-Spam-Status: No, score=-6.28 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, 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 5mKyC06Kikbg for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:50: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 CCA2C12011E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:50:50 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 3C7FD8C09F9 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:50:50 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:50:50 -0700
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2X252W2FUPEKW33AV3R3HAVEVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/review/289632190@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d818d7a2e0f6_e033f9e8c2cd96c129420"; 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/sMeWiEOoCi9N36EdBAiCX3h0zok>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:50:53 -0000

----==_mimepart_5d818d7a2e0f6_e033f9e8c2cd96c129420
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

chris-wood commented on this pull request.



> @@ -84,7 +85,7 @@ informative:
       - ins: R. Ng
       - ins: B. Tackmann
     date: 2019-06-01
-    target: https://eprint.iacr.org/2019/624
+    target: "http://dx.doi.org/10.1007/978-3-030-26948-7_9"

Awesome! Thanks for that tip.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3031#discussion_r325452359
----==_mimepart_5d818d7a2e0f6_e033f9e8c2cd96c129420
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@chris-wood</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3031#discussion_r325452359">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -84,7 +85,7 @@ informative:
       - ins: R. Ng
       - ins: B. Tackmann
     date: 2019-06-01
-    target: https://eprint.iacr.org/2019/624
+    target: &quot;http://dx.doi.org/10.1007/978-3-030-26948-7_9&quot;
</pre>
<p>Awesome! Thanks for that tip.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications&amp;email_token=AFTOJK6MPDPZUNFFPQI5FJDQKGCPVA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBW7PQ#discussion_r325452359">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZT6PHVG3TDWVPZVCLQKGCPVANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK756YDX2M6V4U5WOY3QKGCPVA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBW7PQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK6MPDPZUNFFPQI5FJDQKGCPVA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBW7PQ#discussion_r325452359",
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK6MPDPZUNFFPQI5FJDQKGCPVA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBW7PQ#discussion_r325452359",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d818d7a2e0f6_e033f9e8c2cd96c129420--


From nobody Tue Sep 17 18:51: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 71A38120131 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:51:45 -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 tXXAiQbuR1ks for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:51:43 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 432CA12011E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:51:43 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id A5D206E005C for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:51:42 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:51:42 -0700
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2CFKBZW3FLZVI75U53R3HD5EVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/review/289632396@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d818dae950d5_1abd3fe7b2acd968224460"; 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/fGYiWLJtVNwId3lbnsE9L6Z7c-4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:51:46 -0000

----==_mimepart_5d818dae950d5_1abd3fe7b2acd968224460
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

chris-wood commented on this pull request.



> @@ -1440,12 +1441,13 @@ Header protection uses the output of the packet protection AEAD to derive
 protected_field = field XOR PRF(hp_key, sample)
 ~~~
 
-Assuming hp_key is distinct from the packet protection key, this construction
-(HN1) achieves AE2 security and therefore guarantees privacy of `field`, the
-protected packet header. One important distinction between HN1 and the header
-protection construction in this document is that the latter uses an AEAD
-algorithm as the PRF. However, since the encrypted output of an AEAD is
-pseudorandom {{DefnAEAD}}, this achieves the properties desired from a PRF.
+As `hp_key` is distinct from the packet protection key, this construction
+(HN1) achieves AE2 security as defined in {{NAN}} and therefore guarantees
+privacy of `field`, the protected packet header. One important distinction
+between HN1 and the header protection construction in this document is that
+the latter uses an AEAD algorithm as the PRF. However, since the encrypted
+output of an AEAD is pseudorandom {{DefnAEAD}}, this achieves the properties
+desired from a PRF.

Ah, right! I was operating under the assumption that we used AEADs for the mask, but we use the primitives. Since those are PRPs and therefore PRFs, this becomes much simpler. Stay tuned for an 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/pull/3031#discussion_r325452531
----==_mimepart_5d818dae950d5_1abd3fe7b2acd968224460
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@chris-wood</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3031#discussion_r325452531">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1440,12 +1441,13 @@ Header protection uses the output of the packet protection AEAD to derive
 protected_field = field XOR PRF(hp_key, sample)
 ~~~
 
-Assuming hp_key is distinct from the packet protection key, this construction
-(HN1) achieves AE2 security and therefore guarantees privacy of `field`, the
-protected packet header. One important distinction between HN1 and the header
-protection construction in this document is that the latter uses an AEAD
-algorithm as the PRF. However, since the encrypted output of an AEAD is
-pseudorandom {{DefnAEAD}}, this achieves the properties desired from a PRF.
+As `hp_key` is distinct from the packet protection key, this construction
+(HN1) achieves AE2 security as defined in {{NAN}} and therefore guarantees
+privacy of `field`, the protected packet header. One important distinction
+between HN1 and the header protection construction in this document is that
+the latter uses an AEAD algorithm as the PRF. However, since the encrypted
+output of an AEAD is pseudorandom {{DefnAEAD}}, this achieves the properties
+desired from a PRF.
</pre>
<p>Ah, right! I was operating under the assumption that we used AEADs for the mask, but we use the primitives. Since those are PRPs and therefore PRFs, this becomes much simpler. Stay tuned for an update!</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications&amp;email_token=AFTOJK5UDGZZBS3G7SVUALDQKGCS5A5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBXBDA#discussion_r325452531">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5XYYNPCE25JTRI233QKGCS5ANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7K5ULEFDGY47B3JWDQKGCS5A5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBXBDA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK5UDGZZBS3G7SVUALDQKGCS5A5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBXBDA#discussion_r325452531",
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK5UDGZZBS3G7SVUALDQKGCS5A5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBXBDA#discussion_r325452531",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d818dae950d5_1abd3fe7b2acd968224460--


From nobody Tue Sep 17 18: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 BAB2812013B for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:55:59 -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 uqwCB2nFcETr for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:55: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 1D207120131 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:55:58 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 4EBC49602B5 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:55:57 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:55:57 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-retransmitting-acks/000000-721d42@github.com>
Subject: [quicwg/base-drafts] 721d42: Retransmitting an ACK frame warning
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EQ7Etgdcf2MowOWXB-6YEPlZ4J4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:56:00 -0000

  Branch: refs/heads/ianswett-retransmitting-acks
  Home:   https://github.com/quicwg/base-drafts
  Commit: 721d42f89c0f739dc8514363856328c9adcecc35
      https://github.com/quicwg/base-drafts/commit/721d42f89c0f739dc8514363856328c9adcecc35
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-17 (Tue, 17 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Retransmitting an ACK frame warning

It can result in an inflated RTT, as well as being a waste of bytes.

Fixes #2748



From nobody Tue Sep 17 18:56: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 DF79412012E for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:56:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.897
X-Spam-Level: 
X-Spam-Status: No, score=-7.897 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, 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 jzuwOYGeC3e5 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:56:27 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7627612011E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:56:27 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id C82495200DB for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:56:26 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:56:26 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYRYA2T6QTQD7KAZLN3R3HVVEVBNHHB3ABZO4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3049@github.com>
Subject: [quicwg/base-drafts] Retransmitting an ACK frame warning (#3049)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d818ecab8e8a_dc63f9e8c2cd96c16922"; 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/n6_lbtSKqzvBVU5ad9UYyptT8_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: Wed, 18 Sep 2019 01:56:29 -0000

----==_mimepart_5d818ecab8e8a_dc63f9e8c2cd96c16922
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

It can result in an inflated RTT, as well as being a waste of bytes.

Fixes #2748
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3049

-- Commit Summary --

  * Retransmitting an ACK frame warning

-- File Changes --

    M draft-ietf-quic-transport.md (3)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3049.patch
https://github.com/quicwg/base-drafts/pull/3049.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/3049

----==_mimepart_5d818ecab8e8a_dc63f9e8c2cd96c16922
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>It can result in an inflated RTT, as well as being a waste of bytes.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #2748.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="447156856" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/2748" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2748/hovercard" href="https://github.com/quicwg/base-drafts/issues/2748">#2748</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/3049'>https://github.com/quicwg/base-drafts/pull/3049</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Retransmitting an ACK frame warning</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3049/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/3049.patch'>https://github.com/quicwg/base-drafts/pull/3049.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3049.diff'>https://github.com/quicwg/base-drafts/pull/3049.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/3049?email_source=notifications&amp;email_token=AFTOJK33ZT3YL3OZRY2HGLDQKGDEVA5CNFSM4IXX3UKKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMAHF3Q">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3AJKOOHAS2M4YHAK3QKGDEVANCNFSM4IXX3UKA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK24B2GACFBAIB3Y2PDQKGDEVA5CNFSM4IXX3UKKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMAHF3Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3049?email_source=notifications\u0026email_token=AFTOJK33ZT3YL3OZRY2HGLDQKGDEVA5CNFSM4IXX3UKKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMAHF3Q",
"url": "https://github.com/quicwg/base-drafts/pull/3049?email_source=notifications\u0026email_token=AFTOJK33ZT3YL3OZRY2HGLDQKGDEVA5CNFSM4IXX3UKKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMAHF3Q",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d818ecab8e8a_dc63f9e8c2cd96c16922--


From nobody Tue Sep 17 18:56: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 ADC9D12012E for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:56: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 iGPS_Al2t6eW for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:56:46 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 194BE12011E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:56:46 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:56:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568771805; bh=0fZ3D5A2FCZt2un6oea1YwRoKU6HAVd5GKA1B9QC5bc=; h=Date:From:To:Subject:From; b=KN7Dbt28phfRitbwq6+uvFDJ58Iraid8x26FpQBVnw46ox0zlzc4x9ee1pTUUtWkJ LTzP3LWdXQH6eTbC26Bgm965U8hlg58dl/PixuMUa5u+N9oqGmgtX8S9tTHJ0+ICIC 4cI5JoS2X+ll0sgYnXpEftnvyhuyJmvJRiG76jRg=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/09cf50-1f7cf7@github.com>
Subject: [quicwg/base-drafts] 1f7cf7: Script updating gh-pages from 721d42f8. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4zHS-KH7gV88_ZAhrlSXuGfN300>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:56:48 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1f7cf77281d56de257a14454b280d6d107fc8300
      https://github.com/quicwg/base-drafts/commit/1f7cf77281d56de257a14454b280d6d107fc8300
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-18 (Wed, 18 Sep 2019)

  Changed paths:
    A ianswett-retransmitting-acks/draft-ietf-quic-http.html
    A ianswett-retransmitting-acks/draft-ietf-quic-http.txt
    A ianswett-retransmitting-acks/draft-ietf-quic-invariants.html
    A ianswett-retransmitting-acks/draft-ietf-quic-invariants.txt
    A ianswett-retransmitting-acks/draft-ietf-quic-qpack.html
    A ianswett-retransmitting-acks/draft-ietf-quic-qpack.txt
    A ianswett-retransmitting-acks/draft-ietf-quic-recovery.html
    A ianswett-retransmitting-acks/draft-ietf-quic-recovery.txt
    A ianswett-retransmitting-acks/draft-ietf-quic-tls.html
    A ianswett-retransmitting-acks/draft-ietf-quic-tls.txt
    A ianswett-retransmitting-acks/draft-ietf-quic-transport.html
    A ianswett-retransmitting-acks/draft-ietf-quic-transport.txt
    A ianswett-retransmitting-acks/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 721d42f8. [ci skip]



From nobody Tue Sep 17 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 4519F12012E for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:58: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 UXy42nBLXacP for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 18:58: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 92CAD12011E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 18:58:03 -0700 (PDT)
Date: Tue, 17 Sep 2019 18:58:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568771882; bh=7rlD7BMnpILm+9ASFi1I+xT+ut5+uXWBF1SniAtU+l4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=b0Ce20667Ts8G4lRMoXH8+GOc5arwGHv8Wz2q6khdZftIse+h5QRMzYX1muU2QC7m MHXa0/zxNMHxZ6MJGLeSw3qR+WNK2NzO0g5KtztRTjWOhvk8kScFmfiCNtcw6jzi/r tJNbfJ+ibWzjrbI2Wqr91xG+Ii5YoU8QDo6TAoJQ=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK72G2PW77VB7V5LC5N3R3H3VEVBNHHB274N7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3048/c532485106@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3048@github.com>
References: <quicwg/base-drafts/pull/3048@github.com>
Subject: Re: [quicwg/base-drafts] Retransmitting ACK frames can inflate RTT (#3048)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d818f2aa7f2b_25c33f90202cd9641758bf"; 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/g2st2RaH04_cgsmtmTiNQD69Cx0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 01:58:05 -0000

----==_mimepart_5d818f2aa7f2b_25c33f90202cd9641758bf
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I created #3049 as an alternative.  Or we can close this issue and move on.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3048#issuecomment-532485106
----==_mimepart_5d818f2aa7f2b_25c33f90202cd9641758bf
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I created <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="494942583" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3049" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3049/hovercard" href="https://github.com/quicwg/base-drafts/pull/3049">#3049</a> as an alternative.  Or we can close this issue and move on.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3048?email_source=notifications&amp;email_token=AFTOJK53Q5FE4ZMVVNLDR7DQKGDKVA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66RH4Q#issuecomment-532485106">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3DVCENOTFVGL2EMXTQKGDKVANCNFSM4IXWCBGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYZDFW6OEVL2LRLH6LQKGDKVA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66RH4Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3048?email_source=notifications\u0026email_token=AFTOJK53Q5FE4ZMVVNLDR7DQKGDKVA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66RH4Q#issuecomment-532485106",
"url": "https://github.com/quicwg/base-drafts/pull/3048?email_source=notifications\u0026email_token=AFTOJK53Q5FE4ZMVVNLDR7DQKGDKVA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66RH4Q#issuecomment-532485106",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d818f2aa7f2b_25c33f90202cd9641758bf--


From nobody Tue Sep 17 19:20: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 EE7AB1201DE for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 19:20:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 BzPM_b3Qpv7r for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 19:20: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 3544012013B for <quic-issues@ietf.org>; Tue, 17 Sep 2019 19:20:53 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id C7604261643 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 19:20:52 -0700 (PDT)
Date: Tue, 17 Sep 2019 19:20:52 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3AI2U4Z7TI7CVGYMV3R3KRJEVBNHHB3ABZO4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3049/review/289638816@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3049@github.com>
References: <quicwg/base-drafts/pull/3049@github.com>
Subject: Re: [quicwg/base-drafts] Retransmitting an ACK frame warning (#3049)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d819484813e5_1e083fd4176cd95c2779a2"; 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/shSPX-HxIsep2CGrsBQg0d9emuM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 02:20:55 -0000

----==_mimepart_5d819484813e5_1e083fd4176cd95c2779a2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

janaiyengar commented on this pull request.



> @@ -3183,7 +3183,8 @@ containing that information is acknowledged.
 
 * The most recent set of acknowledgments are sent in ACK frames.  An ACK frame
   SHOULD contain all unacknowledged acknowledgments, as described in
-  {{sending-ack-frames}}.
+  {{sending-ack-frames}}.  Retransmitting an ACK frame can result in an

This para is not great. That second sentence totally doesn't belong here. Suggested rewrite:

"ACK frames carry the most recent set of acknowledgements and the current Ack Delay estimate. Retransmitting an old ACK frame with stale Ack Delay can cause the peer to generate an inflated RTT sample."

Then in 13.2.1 (sending-ack-frames), add this as the first paragraph:
"ACK frames SHOULD acknowledge both ack-eliciting and non-ack-eliciting packets that have been received but not yet 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/3049#pullrequestreview-289638816
----==_mimepart_5d819484813e5_1e083fd4176cd95c2779a2
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/3049#discussion_r325457830">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3183,7 +3183,8 @@ containing that information is acknowledged.
 
 * The most recent set of acknowledgments are sent in ACK frames.  An ACK frame
   SHOULD contain all unacknowledged acknowledgments, as described in
-  {{sending-ack-frames}}.
+  {{sending-ack-frames}}.  Retransmitting an ACK frame can result in an
</pre>
<p>This para is not great. That second sentence totally doesn't belong here. Suggested rewrite:</p>
<p>"ACK frames carry the most recent set of acknowledgements and the current Ack Delay estimate. Retransmitting an old ACK frame with stale Ack Delay can cause the peer to generate an inflated RTT sample."</p>
<p>Then in 13.2.1 (sending-ack-frames), add this as the first paragraph:<br>
"ACK frames SHOULD acknowledge both ack-eliciting and non-ack-eliciting packets that have been received but not yet 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/3049?email_source=notifications&amp;email_token=AFTOJKYIKGUX65FQMJ3OG7DQKGGAJA5CNFSM4IXX3UKKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBYTIA#pullrequestreview-289638816">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2JI4LMRDMFNGNFDWTQKGGAJANCNFSM4IXX3UKA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6OSXXDQL4R6LWFDYLQKGGAJA5CNFSM4IXX3UKKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBYTIA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3049?email_source=notifications\u0026email_token=AFTOJKYIKGUX65FQMJ3OG7DQKGGAJA5CNFSM4IXX3UKKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBYTIA#pullrequestreview-289638816",
"url": "https://github.com/quicwg/base-drafts/pull/3049?email_source=notifications\u0026email_token=AFTOJKYIKGUX65FQMJ3OG7DQKGGAJA5CNFSM4IXX3UKKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBYTIA#pullrequestreview-289638816",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d819484813e5_1e083fd4176cd95c2779a2--


From nobody Tue Sep 17 19:29: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 81C6B1201A3 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 19:29: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 HlswDc0w-8iz for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 19:29:30 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9CCBD120096 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 19:29:30 -0700 (PDT)
Date: Tue, 17 Sep 2019 19:29:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568773769; bh=ykYcJ5UkLRLcz4PCF96uOXc721kVcWX3gfEMGuNN+rc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=v1kdah2nksflxT7cFJkdG3XwNmxiEgzImbWSeb10XzGU5C8BWP7aBRL0ctC+Tyr/H HCJz8V+PiDrj/ntj8Pbu6NZB6yJ5gPGt/aRCGX3TcY83gpKz3Q8IHaDQ+mCQQGbeCV uH1SqHYMji8Ox9/kR6YQO8U6D9+A5Pdqr5knXWzQ=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK34T3S2KTZCRMJDD3V3R3LRTEVBNHHB2737AM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3047/c532491358@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3047@github.com>
References: <quicwg/base-drafts/pull/3047@github.com>
Subject: Re: [quicwg/base-drafts] Send after receiving an ACK (#3047)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d819689c7f8a_6be33f95efccd96c469977"; 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/YKRF5xuQtcc1clWBxcSu-MC77B4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 02:29:33 -0000

----==_mimepart_5d819689c7f8a_6be33f95efccd96c469977
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

So, yes to pacing, but there are impls that won't do pacing. Even with pacing, there's now an additional delay in recovering from this packet loss -- loss recovery time is increased by pacing_delay (which will be higher now that the loss has occurred). Allowing the sender to send out 1 packet immediately minimizes the chances of loss repair delay at the receiver.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3047#issuecomment-532491358
----==_mimepart_5d819689c7f8a_6be33f95efccd96c469977
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>So, yes to pacing, but there are impls that won't do pacing. Even with pacing, there's now an additional delay in recovering from this packet loss -- loss recovery time is increased by pacing_delay (which will be higher now that the loss has occurred). Allowing the sender to send out 1 packet immediately minimizes the chances of loss repair delay at the receiver.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3047?email_source=notifications&amp;email_token=AFTOJK7IQJGZALUX6DHFIY3QKGHATA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66SYXQ#issuecomment-532491358">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7IVLFRSOCE6RMHBNDQKGHATANCNFSM4IXV7ICQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2W6YTLXSRZ7RKAF4TQKGHATA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66SYXQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3047?email_source=notifications\u0026email_token=AFTOJK7IQJGZALUX6DHFIY3QKGHATA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66SYXQ#issuecomment-532491358",
"url": "https://github.com/quicwg/base-drafts/pull/3047?email_source=notifications\u0026email_token=AFTOJK7IQJGZALUX6DHFIY3QKGHATA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66SYXQ#issuecomment-532491358",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d819689c7f8a_6be33f95efccd96c469977--


From nobody Tue Sep 17 19:31: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 6F0081201A3 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 19:31: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 JNQGaExGk7Pq for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 19:31: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 AEAF9120096 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 19:31:38 -0700 (PDT)
Date: Tue, 17 Sep 2019 19:31:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568773897; bh=uvqr3pkwKapNfro+BGzQ2dIT8Y8Z9mjOJPr2roEwdcA=; h=Date:From:To:Subject:From; b=YyKMq8ZOmzJL5LT7HNm+Sfd+MNCfNUIGG/U7q5suuMAV5Mg2wNychh0MFp553L9U/ VZU/gJ++xDLkpXFpSiwpGg5J+b2NWz0aanNEtBFgMB4HJsmn5QhSuIjJXoESPT1tzX ncZ9j7ksmq2T3xuK604P9Q6B1TWmcdHKptlPh/+E=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-retransmitting-acks/721d42-1d7aba@github.com>
Subject: [quicwg/base-drafts] 1d7aba: Jana'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/GwgaIDwN9eeQP_WoS5S9yXvG1H8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 02:31:40 -0000

  Branch: refs/heads/ianswett-retransmitting-acks
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1d7abab6b77b9ea678143b12c0d308d89362cfa0
      https://github.com/quicwg/base-drafts/commit/1d7abab6b77b9ea678143b12c0d308d89362cfa0
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-17 (Tue, 17 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Jana's suggestion



From nobody Tue Sep 17 19:31: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 5BF0B120219 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 19:31: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 G4j8zeAlUWVJ for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 19:31: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 AA62E1201A3 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 19:31:46 -0700 (PDT)
Date: Tue, 17 Sep 2019 19:31:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568773905; bh=yXdWd013uDjRpvh9nTZjhpxdEzlEP8SyiNxH2ry/dPw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UlRZarLcICz+j5Wf4sNSmMAXBVvGOc0xb91/gfA1KcUuMhD4OE4T8VavluUG9ZN3e xXoKjpiBuCP4zwgExjT98UgxBItRuoL9GjZNyIPado9Okuj98+fNlt7tXq+UxmlO8Y dWXXWu8Cm2QgIKP7RkNVx2joWGdsmZFRkynSLo5Y=
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/3049/push/4046102352@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3049@github.com>
References: <quicwg/base-drafts/pull/3049@github.com>
Subject: Re: [quicwg/base-drafts] Retransmitting an ACK frame warning (#3049)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d819711be34a_6d893f9472ccd968251511"; 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/SUVqndMGTA11JOKwacXkPqj-20I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 02:31:49 -0000

----==_mimepart_5d819711be34a_6d893f9472ccd968251511
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

1d7abab6b77b9ea678143b12c0d308d89362cfa0  Jana's suggestion


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3049/files/721d42f89c0f739dc8514363856328c9adcecc35..1d7abab6b77b9ea678143b12c0d308d89362cfa0

----==_mimepart_5d819711be34a_6d893f9472ccd968251511
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/1d7abab6b77b9ea678143b12c0d308d89362cfa0">1d7abab</a>  Jana&#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/3049/files/721d42f89c0f739dc8514363856328c9adcecc35..1d7abab6b77b9ea678143b12c0d308d89362cfa0?email_source=notifications&amp;email_token=AFTOJK2MFO6Z2LO6PU3JNCLQKGHJDA5CNFSM4IXX3UKKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQNJZGQZTEN2QOVZWQIZUGA2DMMJQGIZTKMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYVZO3KL3IECEF4HNLQKGHJDANCNFSM4IXX3UKA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5WW42XBRILXNMDKXTQKGHJDA5CNFSM4IXX3UKKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQNJZGQZTEN2QOVZWQIZUGA2DMMJQGIZTKMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3049/files/721d42f89c0f739dc8514363856328c9adcecc35..1d7abab6b77b9ea678143b12c0d308d89362cfa0?email_source=notifications\u0026email_token=AFTOJK2MFO6Z2LO6PU3JNCLQKGHJDA5CNFSM4IXX3UKKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQNJZGQZTEN2QOVZWQIZUGA2DMMJQGIZTKMQ",
"url": "https://github.com/quicwg/base-drafts/pull/3049/files/721d42f89c0f739dc8514363856328c9adcecc35..1d7abab6b77b9ea678143b12c0d308d89362cfa0?email_source=notifications\u0026email_token=AFTOJK2MFO6Z2LO6PU3JNCLQKGHJDA5CNFSM4IXX3UKKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQNJZGQZTEN2QOVZWQIZUGA2DMMJQGIZTKMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d819711be34a_6d893f9472ccd968251511--


From nobody Tue Sep 17 19: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 3EE0B1201A3 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 19:32:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 g7QYUXB61WQ8 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 19:32: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 C7C80120096 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 19:32:14 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 14C8E2C153D for <quic-issues@ietf.org>; Tue, 17 Sep 2019 19:32:14 -0700 (PDT)
Date: Tue, 17 Sep 2019 19:32:14 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/1f7cf7-42ed02@github.com>
Subject: [quicwg/base-drafts] 42ed02: Script updating gh-pages from 1d7abab6. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bgvgc6pLFR3GY6lj0f4_iRT-Mqg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 02:32:16 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 42ed02493eaf773f26934ae4fe1e62540ad60e7c
      https://github.com/quicwg/base-drafts/commit/42ed02493eaf773f26934ae4fe1e62540ad60e7c
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-18 (Wed, 18 Sep 2019)

  Changed paths:
    M ianswett-retransmitting-acks/draft-ietf-quic-transport.html
    M ianswett-retransmitting-acks/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 1d7abab6. [ci skip]



From nobody Tue Sep 17 19:33: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 D55E91201A3 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 19:33: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 li3zVolgyZAc for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 19:33: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 77C97120096 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 19:33:36 -0700 (PDT)
Date: Tue, 17 Sep 2019 19:33:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568774015; bh=Bc3Q+PJ+YfoWOOo89XGdiPndJ/Q+IyZ2f3g/CWh3Mjk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bJZ/RSXhmTBToQmELFh3NUd/SFh4x0+HIe7BbqbZTm5kXyhCD2AjtQ/4IF6ByUN+D hi6kxPwl3W0rBu3iRnI4KrlkX5vlZE768SRT/3E6I0Ou1r7T9Ovf4W+VCqRL1ACmb2 HsGRfUDEWY3MvJebbjxVzLMudtcDT6+bEtxSFcf8=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY74PYHK37DRH4V5HV3R3MA7EVBNHHB3ABZO4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3049/review/289641465@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3049@github.com>
References: <quicwg/base-drafts/pull/3049@github.com>
Subject: Re: [quicwg/base-drafts] Retransmitting an ACK frame warning (#3049)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81977fa34e7_670b3fcff82cd960386382"; 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/aWHPP5d1f_8g3CnndVtsjgmzGjk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 02:33:38 -0000

----==_mimepart_5d81977fa34e7_670b3fcff82cd960386382
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> @@ -3183,7 +3183,8 @@ containing that information is acknowledged.
 
 * The most recent set of acknowledgments are sent in ACK frames.  An ACK frame
   SHOULD contain all unacknowledged acknowledgments, as described in
-  {{sending-ack-frames}}.
+  {{sending-ack-frames}}.  Retransmitting an ACK frame can result in an

There is already text that says "When only non-ACK-eliciting packets need to be acknowledged, an endpoint MAY wait until an ACK-eliciting packet has been received to bundle an ACK frame with outgoing frames."  I'm not sure that's sufficient, but your suggestion adds a SHOULD, which makes this change no longer editorial.  The ACK generation text needs a full rewrite, and I'd rather tackle that suggestion as part of that 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/3049#discussion_r325459906
----==_mimepart_5d81977fa34e7_670b3fcff82cd960386382
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/3049#discussion_r325459906">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3183,7 +3183,8 @@ containing that information is acknowledged.
 
 * The most recent set of acknowledgments are sent in ACK frames.  An ACK frame
   SHOULD contain all unacknowledged acknowledgments, as described in
-  {{sending-ack-frames}}.
+  {{sending-ack-frames}}.  Retransmitting an ACK frame can result in an
</pre>
<p>There is already text that says "When only non-ACK-eliciting packets need to be acknowledged, an endpoint MAY wait until an ACK-eliciting packet has been received to bundle an ACK frame with outgoing frames."  I'm not sure that's sufficient, but your suggestion adds a SHOULD, which makes this change no longer editorial.  The ACK generation text needs a full rewrite, and I'd rather tackle that suggestion as part of that 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/3049?email_source=notifications&amp;email_token=AFTOJK3YACNB7U2J4BD4WSLQKGHP7A5CNFSM4IXX3UKKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBZH6I#discussion_r325459906">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYFN2Z4EYCXB5ANR6TQKGHP7ANCNFSM4IXX3UKA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6PRU2MZJFPMIHATO3QKGHP7A5CNFSM4IXX3UKKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBZH6I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3049?email_source=notifications\u0026email_token=AFTOJK3YACNB7U2J4BD4WSLQKGHP7A5CNFSM4IXX3UKKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBZH6I#discussion_r325459906",
"url": "https://github.com/quicwg/base-drafts/pull/3049?email_source=notifications\u0026email_token=AFTOJK3YACNB7U2J4BD4WSLQKGHP7A5CNFSM4IXX3UKKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFBZH6I#discussion_r325459906",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81977fa34e7_670b3fcff82cd960386382--


From nobody Tue Sep 17 19:38: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 824E5120096 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 19:38: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 h6TmI5Vb7kzg for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 19:38: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 D74FD120026 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 19:38:40 -0700 (PDT)
Date: Tue, 17 Sep 2019 19:38:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568774319; bh=8omF/ALUqvnbQoABw6dR5iN/q5dQoUlSlnfBEdXhKkE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xnL7oV3feZKj/HTWrnrN1X+bhOdxRBEIyZqB/e94SYKnCJMlzB/9WZ7sgkMWXF7Vj VTEFQlbZX8EPZVhW2+2Wl3dZd0yIQ+BclE8AtwdMcmcAknqx5Fxqa90DHKte5goVCm byFGUCwtxiVQqgVGOlDADJm4myP11GB7IewNZPpE=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3YJ5TTQMDV6XH6PFF3R3MT7EVBNHHB2737AM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3047/c532493156@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3047@github.com>
References: <quicwg/base-drafts/pull/3047@github.com>
Subject: Re: [quicwg/base-drafts] Send after receiving an ACK (#3047)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8198afdfb11_7bab3f81e2ecd9681832d8"; 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/3gtIc2g9z5GnYGQopFMBfjVTTPc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 02:38:43 -0000

----==_mimepart_5d8198afdfb11_7bab3f81e2ecd9681832d8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

There is a section for the congestion controller below.  I think this is a response it can choose to have, rather than incorporating it into the loss recovery/detection pseudocode?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3047#issuecomment-532493156
----==_mimepart_5d8198afdfb11_7bab3f81e2ecd9681832d8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>There is a section for the congestion controller below.  I think this is a response it can choose to have, rather than incorporating it into the loss recovery/detection pseudocode?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3047?email_source=notifications&amp;email_token=AFTOJK5DTHVNSIFCW5LIDTTQKGIC7A5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66TGZA#issuecomment-532493156">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK46TFVGPYPAUBFZW6TQKGIC7ANCNFSM4IXV7ICQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4QRY3P7G43O6R3YQDQKGIC7A5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66TGZA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3047?email_source=notifications\u0026email_token=AFTOJK5DTHVNSIFCW5LIDTTQKGIC7A5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66TGZA#issuecomment-532493156",
"url": "https://github.com/quicwg/base-drafts/pull/3047?email_source=notifications\u0026email_token=AFTOJK5DTHVNSIFCW5LIDTTQKGIC7A5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD66TGZA#issuecomment-532493156",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8198afdfb11_7bab3f81e2ecd9681832d8--


From nobody Tue Sep 17 21:35: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 878BF1208F9 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 21:34: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, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vc3XKETKkB7P for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 21:34: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 160FF12006E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 21:34:57 -0700 (PDT)
Date: Tue, 17 Sep 2019 21:34:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568781296; bh=03BOYLpS84/tvDpMA0rwFqfOWU7vIakTAhFe6VRyiXQ=; h=Date:From:To:Subject:From; b=CClxu8ML91GLOMibV0aQpyhF554p4UAABNUqjZvjLmzt8URSxUDNO0hzeRTp9gGqn bja0SS94zr6ok/w9Ic/KJRKkOC+umZ8XYsDs4JcCjjCsMY/So5q48ag0wqR9VzlMjp PmToBKbmkYGkpgOfHjxf5tak2Y/FbN0wIjsH/SLk=
From: Mark Nottingham <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/aa14f0-b30151@github.com>
Subject: [quicwg/base-drafts] b30151: mention the draft index
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5H6JNzm9A6mHg9deAbWdhq2pEHQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 04:35:00 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: b301514aec72f9f7d69aea421feb43cb96459a25
      https://github.com/quicwg/base-drafts/commit/b301514aec72f9f7d69aea421feb43cb96459a25
  Author: Mark Nottingham <mnot@mnot.net>
  Date:   2019-09-18 (Wed, 18 Sep 2019)

  Changed paths:
    M README.md

  Log Message:
  -----------
  mention the draft index



From nobody Tue Sep 17 21:35: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 8C6B01208F9 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 21:35: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 Nt1A4G9Zr8zB for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 21:35: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 2589212006E for <quic-issues@ietf.org>; Tue, 17 Sep 2019 21:35:40 -0700 (PDT)
Date: Tue, 17 Sep 2019 21:35:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568781339; bh=NGZsDAYBYxfmn8qlGeEFkSejSWxmXYKrX3i44fmvu7M=; h=Date:From:To:Subject:From; b=KHxDxGpidYRcunuZaIdp6afVFHwU+YpDCQnDiaPSOXRh7/eavnVU4UXgsdHaY+9q9 X220Hf4Icyk14AD5tgkGmbI3c1n+D5LGmY5Rehu/Vc4QEHU6WrSb/i6o2k+nBk7GRx SeaplNdofrTzCaOk8qc0BTx2gx32m4Ju+lp5fK5o=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/42ed02-8c85bb@github.com>
Subject: [quicwg/base-drafts] 8c85bb: Script updating gh-pages from b301514a. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/I66hUFj4zbWsL41sgmfOR4dxDPI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 04:35:42 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8c85bb1ba481333b0667aa534e2f7e21eab895c5
      https://github.com/quicwg/base-drafts/commit/8c85bb1ba481333b0667aa534e2f7e21eab895c5
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-18 (Wed, 18 Sep 2019)

  Changed paths:
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from b301514a. [ci skip]



From nobody Tue Sep 17 22:20: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 B6E8C1200D7 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 22:20: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 YLawp_BA073S for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 22:20: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 316A612006D for <quic-issues@ietf.org>; Tue, 17 Sep 2019 22:20:53 -0700 (PDT)
Date: Tue, 17 Sep 2019 22:20:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568784052; bh=+OGoIykxpsR0YcVH7NoFfNBv6GSUlTmVmoHpbenlolU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=2QoZTilyHNniakynWtXsO4bYwvIr6BZwTs+vaBic5xZrd70uReA8taakFn8lif0Tz soUhGtrWUR7Pt0EK+TmYTVm58+A7Hf9z1ziZ9ucdWVr4Sy6Abh4VYifNPOY/zlyPyA hd4GaeXih4i/c4kjIBLLSjs69zTyNyUb3q/Oa+7k=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZS6CUC4UP2YK7BMYN3R37UJEVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/c532522918@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81beb43b106_3cd93f9b534cd960356096"; 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/AdmbdD4RL479m7yoCwyxfW1zzhw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 05:20:55 -0000

----==_mimepart_5d81beb43b106_3cd93f9b534cd960356096
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Regardless of post-quantum and HRR, I agree with @nibanks that it is problematic to commit multiple packets before any kind of validation. If that is already the case due to HRR, I hope there is a way to avoid that without relying on client generated content. Otherwise the server is wide open to slow loris connection attacks.

As to post-quantum - fine to have an experimental setting - in a real post-quantum world, perhaps min MTU can be larger?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3045#issuecomment-532522918
----==_mimepart_5d81beb43b106_3cd93f9b534cd960356096
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Regardless of post-quantum and HRR, I agree with <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> that it is problematic to commit multiple packets before any kind of validation. If that is already the case due to HRR, I hope there is a way to avoid that without relying on client generated content. Otherwise the server is wide open to slow loris connection attacks.</p>
<p>As to post-quantum - fine to have an experimental setting - in a real post-quantum world, perhaps min MTU can be larger?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications&amp;email_token=AFTOJK54EZWVRELJXNLB5V3QKG3DJA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD662PJQ#issuecomment-532522918">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2T4IQJIABRGAM2QC3QKG3DJANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK747P7P37DEWFORE53QKG3DJA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD662PJQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK54EZWVRELJXNLB5V3QKG3DJA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD662PJQ#issuecomment-532522918",
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK54EZWVRELJXNLB5V3QKG3DJA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD662PJQ#issuecomment-532522918",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81beb43b106_3cd93f9b534cd960356096--


From nobody Tue Sep 17 22:27: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 70ABE1200D7 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 22:27:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.596
X-Spam-Level: 
X-Spam-Status: No, score=-1.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, GB_SUMOF=5, 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 dePssPhhsIf8 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 22:27:12 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9859D12006D for <quic-issues@ietf.org>; Tue, 17 Sep 2019 22:27:12 -0700 (PDT)
Date: Tue, 17 Sep 2019 22:27:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568784431; bh=IvrK8kRzcdQa4a1YmBDkHUTzi0i82OMIrlLS13K9HIw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KGPfr/JKUyzHOasL6AVnPoNTPD6ZdN1hbnt122sSvOpolqy6EgU/8c29qN063IpAq BbCL/O67tLCKTeOCICJMlZHEd7FYdjSdsfbabfLN72X6FVn2JkBg+n0+zFV0MaHK1O aCjF3Xf/xD+X1g/40+s/n/wv8cQGKL5S4JUYa8wQ=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4U7KZLVSTTSUI7BUV3R4AL7EVBNHHB253VH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3042/review/289675691@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3042@github.com>
References: <quicwg/base-drafts/pull/3042@github.com>
Subject: Re: [quicwg/base-drafts] Use the FRAME_ENCODING_ERROR for errors in frame encoding (#3042)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81c02fc49b2_5b423fb4946cd968330599"; 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/Z4zgKBjAL-jXtH6rrndEFa_Xpj8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 05:27:15 -0000

----==_mimepart_5d81c02fc49b2_5b423fb4946cd968330599
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mikkelfj commented on this pull request.



> @@ -5060,8 +5059,8 @@ the offset of the next byte that would be sent.
 The first byte in the stream has an offset of 0.  The largest offset delivered
 on a stream - the sum of the offset and data length - cannot exceed 2^62-1, as
 it is not possible to provide flow control credit for that data.  Receipt of a
-frame that exceeds this limit will be treated as a connection error of type
-FLOW_CONTROL_ERROR.
+frame that exceeds this limit MUST be treated as a connection error of type
+FRAME_ENCODING_ERROR or FLOW_CONTROL_ERROR.

If there is a flow control limit < 2^62 then presumably you would check against that and not a theoretical max limits. Thus having two different errors would needlessly add an extra 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/pull/3042#discussion_r325487224
----==_mimepart_5d81c02fc49b2_5b423fb4946cd968330599
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/3042#discussion_r325487224">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -5060,8 +5059,8 @@ the offset of the next byte that would be sent.
 The first byte in the stream has an offset of 0.  The largest offset delivered
 on a stream - the sum of the offset and data length - cannot exceed 2^62-1, as
 it is not possible to provide flow control credit for that data.  Receipt of a
-frame that exceeds this limit will be treated as a connection error of type
-FLOW_CONTROL_ERROR.
+frame that exceeds this limit MUST be treated as a connection error of type
+FRAME_ENCODING_ERROR or FLOW_CONTROL_ERROR.
</pre>
<p>If there is a flow control limit &lt; 2^62 then presumably you would check against that and not a theoretical max limits. Thus having two different errors would needlessly add an extra 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/pull/3042?email_source=notifications&amp;email_token=AFTOJKYAT6CWVXOS6DLLSW3QKG327A5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCBTKY#discussion_r325487224">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3CJVGDTTVPIKFCORLQKG327ANCNFSM4IXJVA2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK44YUTEKBTHJ7FFTKDQKG327A5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCBTKY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJKYAT6CWVXOS6DLLSW3QKG327A5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCBTKY#discussion_r325487224",
"url": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJKYAT6CWVXOS6DLLSW3QKG327A5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCBTKY#discussion_r325487224",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81c02fc49b2_5b423fb4946cd968330599--


From nobody Tue Sep 17 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 DAA701200E7 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 22:30: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 sRYQeCDrQUff for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 22:30:07 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D9EAA1200D7 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 22:30:06 -0700 (PDT)
Date: Tue, 17 Sep 2019 22:30:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568784606; bh=XdofPcz4TvaJVTcLtwOHPvH9fnW+pCxf4FpaFe74Qpo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TWZ5LBiTvyqf/HRFToMdpdqKooDf8PwpOsLKA0/FxeybV2fDRKXONilWdIGZ3gzl1 2BvESK7oNOa6CNFcSNM1mcI8ThqrrE8l0N0YEIxoronNaveBGBhG4yiH2NNW99o2RM k8A/ZeyLiomeS6911mcCiKaHcay02vRCVNgs1VLI=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZMWCZDNXRGJ3YMO5N3R4AW5EVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/review/289676298@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81c0de1b118_3cd53f9b534cd96044705f"; 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/8dsvogGRUn5ocP_kzf2d6P7_Oow>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 05:30:09 -0000

----==_mimepart_5d81c0de1b118_3cd53f9b534cd96044705f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mikkelfj commented on this pull request.



> @@ -84,7 +85,7 @@ informative:
       - ins: R. Ng
       - ins: B. Tackmann
     date: 2019-06-01
-    target: https://eprint.iacr.org/2019/624
+    target: "http://dx.doi.org/10.1007/978-3-030-26948-7_9"

That link is behind a springer paywall - the former wasn'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/pull/3031#discussion_r325487758
----==_mimepart_5d81c0de1b118_3cd53f9b534cd96044705f
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/3031#discussion_r325487758">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -84,7 +85,7 @@ informative:
       - ins: R. Ng
       - ins: B. Tackmann
     date: 2019-06-01
-    target: https://eprint.iacr.org/2019/624
+    target: &quot;http://dx.doi.org/10.1007/978-3-030-26948-7_9&quot;
</pre>
<p>That link is behind a springer paywall - the former wasn'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/pull/3031?email_source=notifications&amp;email_token=AFTOJK2UJ7MB6K2WVYOJB4LQKG4F5A5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCBYCQ#discussion_r325487758">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5LDHFY6IXYOTQ6OETQKG4F5ANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK73GZ26DQPVPPSLJEDQKG4F5A5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCBYCQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK2UJ7MB6K2WVYOJB4LQKG4F5A5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCBYCQ#discussion_r325487758",
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK2UJ7MB6K2WVYOJB4LQKG4F5A5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCBYCQ#discussion_r325487758",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81c0de1b118_3cd53f9b534cd96044705f--


From nobody Tue Sep 17 22:36: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 345DD1200E5 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 22:36:07 -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 b87Dcti5o8h6 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 22:36:06 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E116312006D for <quic-issues@ietf.org>; Tue, 17 Sep 2019 22:36:05 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id B8E8E2C12C8 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 22:36:04 -0700 (PDT)
Date: Tue, 17 Sep 2019 22:36:04 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK77PMRPCXTTYBPIEUF3R4BNJEVBNHHB274N7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3048/c532526200@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3048@github.com>
References: <quicwg/base-drafts/pull/3048@github.com>
Subject: Re: [quicwg/base-drafts] Retransmitting ACK frames can inflate RTT (#3048)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81c244a8f2a_4cb93fb5872cd96465933d"; 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/fTHIQUU4TRvq9yJqrf_4ngZd2Bk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 05:36:07 -0000

----==_mimepart_5d81c244a8f2a_4cb93fb5872cd96465933d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I agree that ACKs should be sent up to date, but I also think it makes sense the the receiver to protect itself in this regard. Some implementations will mindlessly repeat frames and it is not enough to cause a protocol violation.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3048#issuecomment-532526200
----==_mimepart_5d81c244a8f2a_4cb93fb5872cd96465933d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I agree that ACKs should be sent up to date, but I also think it makes sense the the receiver to protect itself in this regard. Some implementations will mindlessly repeat frames and it is not enough to cause a protocol violation.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3048?email_source=notifications&amp;email_token=AFTOJKY34VYNYY7M5OTV3ATQKG44JA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD663I6A#issuecomment-532526200">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4JIOL2A2DT22WHHZDQKG44JANCNFSM4IXWCBGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYSE7V3LIGBDWGVWG3QKG44JA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD663I6A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3048?email_source=notifications\u0026email_token=AFTOJKY34VYNYY7M5OTV3ATQKG44JA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD663I6A#issuecomment-532526200",
"url": "https://github.com/quicwg/base-drafts/pull/3048?email_source=notifications\u0026email_token=AFTOJKY34VYNYY7M5OTV3ATQKG44JA5CNFSM4IXWCBGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD663I6A#issuecomment-532526200",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81c244a8f2a_4cb93fb5872cd96465933d--


From nobody Tue Sep 17 22:48: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 1AA4C1200F6 for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 22:48:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.738
X-Spam-Level: 
X-Spam-Status: No, score=-2.738 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, GB_SUMOF=5, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, HTML_OBFUSCATE_05_10=0.26, 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 ZA37LljR3qVV for <quic-issues@ietfa.amsl.com>; Tue, 17 Sep 2019 22:48: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 03E9A1200E7 for <quic-issues@ietf.org>; Tue, 17 Sep 2019 22:48:12 -0700 (PDT)
Date: Tue, 17 Sep 2019 22:48:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568785690; bh=hcGcF8BExx+AU2NsahQUIUMdSlLJFdFsm5+4XeLBg6Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lXC5qIxzwKog3N5ntuP54knkYSl6CObLQFQvZeKnEWorVhCWd3pGZ9bH80FoF8TXz X6wM1P8HPf1RkvTfItrJlqaThLhCwGXAND2SeCjmL/jhy/HL+MPNqbw/3k+daGd9E1 +k4C0Qe3qg4ID7MmkhuvREvK3Elk5lWvpvazpP8E=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6O7FUB5HJ5HOCCFZV3R33ZVEVBNHHB253VH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3042/review/289680726@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3042@github.com>
References: <quicwg/base-drafts/pull/3042@github.com>
Subject: Re: [quicwg/base-drafts] Use the FRAME_ENCODING_ERROR for errors in frame encoding (#3042)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81c51ac5862_58b13fc8948cd95c447297"; 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/4yYLxKV2z3E7WhPVJ2tOd1o7Fno>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 05:48:14 -0000

----==_mimepart_5d81c51ac5862_58b13fc8948cd95c447297
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

kazuho commented on this pull request.



> @@ -5060,8 +5059,8 @@ the offset of the next byte that would be sent.
 The first byte in the stream has an offset of 0.  The largest offset delivered
 on a stream - the sum of the offset and data length - cannot exceed 2^62-1, as
 it is not possible to provide flow control credit for that data.  Receipt of a
-frame that exceeds this limit will be treated as a connection error of type
-FLOW_CONTROL_ERROR.
+frame that exceeds this limit MUST be treated as a connection error of type
+FRAME_ENCODING_ERROR or FLOW_CONTROL_ERROR.

Note that there is a similar issue with MAX_STREAMS and STREAMS_BLOCKED. They communicate the cumulative count of streams of particular type using varint. It is possible to express numbers up to 2<sup>62</sup> however it is always an error to indicate a value above 2<sup>60</sup>.

[Section 4.5](https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#rfc.section.4.5) currently states that STREAM_LIMIT_ERROR is to be used for communicating such error (for MAX_STREAMS, there is no mention of STREAMS_BLOCKED).

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3042#discussion_r325491130
----==_mimepart_5d81c51ac5862_58b13fc8948cd95c447297
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@kazuho</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3042#discussion_r325491130">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -5060,8 +5059,8 @@ the offset of the next byte that would be sent.
 The first byte in the stream has an offset of 0.  The largest offset delivered
 on a stream - the sum of the offset and data length - cannot exceed 2^62-1, as
 it is not possible to provide flow control credit for that data.  Receipt of a
-frame that exceeds this limit will be treated as a connection error of type
-FLOW_CONTROL_ERROR.
+frame that exceeds this limit MUST be treated as a connection error of type
+FRAME_ENCODING_ERROR or FLOW_CONTROL_ERROR.
</pre>
<p>Note that there is a similar issue with MAX_STREAMS and STREAMS_BLOCKED. They communicate the cumulative count of streams of particular type using varint. It is possible to express numbers up to 2<sup>62</sup> however it is always an error to indicate a value above 2<sup>60</sup>.</p>
<p><a href="https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#rfc.section.4.5" rel="nofollow">Section 4.5</a> currently states that STREAM_LIMIT_ERROR is to be used for communicating such error (for MAX_STREAMS, there is no mention of STREAMS_BLOCKED).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications&amp;email_token=AFTOJK4YPXOM5T5U3LG6QYLQKG6JVA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCC2VQ#discussion_r325491130">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3OJBSXWMM7NUZ5MSTQKG6JVANCNFSM4IXJVA2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK74M5ZCOFYLCM4M4YLQKG6JVA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCC2VQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJK4YPXOM5T5U3LG6QYLQKG6JVA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCC2VQ#discussion_r325491130",
"url": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJK4YPXOM5T5U3LG6QYLQKG6JVA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCC2VQ#discussion_r325491130",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81c51ac5862_58b13fc8948cd95c447297--


From nobody Wed Sep 18 00:17: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 372ED120125 for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 00:17:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.495
X-Spam-Level: 
X-Spam-Status: No, score=-1.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, GB_SUMOF=5, 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 T9Pd1lQxa130 for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 00:17:51 -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 4AB94120819 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 00:17:51 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 781336E03B2 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 00:17:50 -0700 (PDT)
Date: Wed, 18 Sep 2019 00:17:50 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK54S3IPBY3IAA43FXN3R4GJ5EVBNHHB253VH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3042/review/289712479@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3042@github.com>
References: <quicwg/base-drafts/pull/3042@github.com>
Subject: Re: [quicwg/base-drafts] Use the FRAME_ENCODING_ERROR for errors in frame encoding (#3042)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81da1e69433_72933f82f24cd95c8795a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FTT7Uy3h77IliqwAAiMne_ljH38>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 07:17:53 -0000

----==_mimepart_5d81da1e69433_72933f82f24cd95c8795a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.



> @@ -5060,8 +5059,8 @@ the offset of the next byte that would be sent.
 The first byte in the stream has an offset of 0.  The largest offset delivered
 on a stream - the sum of the offset and data length - cannot exceed 2^62-1, as
 it is not possible to provide flow control credit for that data.  Receipt of a
-frame that exceeds this limit will be treated as a connection error of type
-FLOW_CONTROL_ERROR.
+frame that exceeds this limit MUST be treated as a connection error of type
+FRAME_ENCODING_ERROR or FLOW_CONTROL_ERROR.

That was done before this proposed principle.  Do you think that we should be aiming to have more specific error codes where possible 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/3042#discussion_r325516339
----==_mimepart_5d81da1e69433_72933f82f24cd95c8795a
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/3042#discussion_r325516339">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -5060,8 +5059,8 @@ the offset of the next byte that would be sent.
 The first byte in the stream has an offset of 0.  The largest offset delivered
 on a stream - the sum of the offset and data length - cannot exceed 2^62-1, as
 it is not possible to provide flow control credit for that data.  Receipt of a
-frame that exceeds this limit will be treated as a connection error of type
-FLOW_CONTROL_ERROR.
+frame that exceeds this limit MUST be treated as a connection error of type
+FRAME_ENCODING_ERROR or FLOW_CONTROL_ERROR.
</pre>
<p>That was done before this proposed principle.  Do you think that we should be aiming to have more specific error codes where possible 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/3042?email_source=notifications&amp;email_token=AFTOJK5IXZMZJF5ILZJYNULQKHIZ5A5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCKSXY#discussion_r325516339">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3DW2JKBR7DFJW6TN3QKHIZ5ANCNFSM4IXJVA2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZZWABV3CWLDXX2N6LQKHIZ5A5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCKSXY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJK5IXZMZJF5ILZJYNULQKHIZ5A5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCKSXY#discussion_r325516339",
"url": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJK5IXZMZJF5ILZJYNULQKHIZ5A5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCKSXY#discussion_r325516339",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81da1e69433_72933f82f24cd95c8795a--


From nobody Wed Sep 18 00:20: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 390E0120819 for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 00:20: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 qJnfVeTE_IAL for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 00:20: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 29679120800 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 00:20:41 -0700 (PDT)
Date: Wed, 18 Sep 2019 00:20:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568791240; bh=B5GuunZt7yVLlBOsJlNk20waxtDsQhrhZNWKXAmHw0U=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=s+BDw9Q3IsBfHoatCmwdJe4VbpTZfw8ZgvXn9JMnlmYbqVvQrX+cVJG9zEJrea7WX dVD4YVXKyVxN4uVEvP6/Af8gfES6Hmrf7iyTMo6nMgjI0yoBEoseoj5zasK/pds5dh Kxt8HyrVK5e8yl9FQodrsX6cp4SO9jzvCyUZErP8=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK45UJFHWQSZBEKFHAF3R4GUREVBNHHB27HBVI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3046/532555231@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3046@github.com>
References: <quicwg/base-drafts/issues/3046@github.com>
Subject: Re: [quicwg/base-drafts] Handling of Retire Prior To field (#3046)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81dac846056_235f3fd78b2cd95c1444d8"; 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/Wy8lHKUNM1QE-OOt8XN3H_O6Cs8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 07:20:43 -0000

----==_mimepart_5d81dac846056_235f3fd78b2cd95c1444d8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@erickinnear Thank you for the explanation and the links. They help a lot in understanding how we ended up here.

> Whatever the answer here, the SHOULD was chosen because "timely manner" isn't defined in a testable fashion. If someone wants to argue for MUST, then we need a firmer definition of the reaction.

Yeah we already state that "_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._" So I think it's testable.

Considering that we have a MAY on the side that initiates the retirement, I think we can have a MUST on the receiver side (assuming that we want 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/3046#issuecomment-532555231
----==_mimepart_5d81dac846056_235f3fd78b2cd95c1444d8
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=32474881" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/erickinnear">@erickinnear</a> Thank you for the explanation and the links. They help a lot in understanding how we ended up here.</p>
<blockquote>
<p>Whatever the answer here, the SHOULD was chosen because "timely manner" isn't defined in a testable fashion. If someone wants to argue for MUST, then we need a firmer definition of the reaction.</p>
</blockquote>
<p>Yeah we already state that "<em>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.</em>" So I think it's testable.</p>
<p>Considering that we have a MAY on the side that initiates the retirement, I think we can have a MUST on the receiver side (assuming that we want 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/3046?email_source=notifications&amp;email_token=AFTOJK2XTFSSMYPWLT2OZ7DQKHJERA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD67CLXY#issuecomment-532555231">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2YBNXCX3GXH5HBMG3QKHJERANCNFSM4IXSLCQA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2EVBL6WP6NDLGDUXTQKHJERA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD67CLXY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJK2XTFSSMYPWLT2OZ7DQKHJERA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD67CLXY#issuecomment-532555231",
"url": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJK2XTFSSMYPWLT2OZ7DQKHJERA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD67CLXY#issuecomment-532555231",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81dac846056_235f3fd78b2cd95c1444d8--


From nobody Wed Sep 18 00:26: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 41D281208F9 for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 00:25:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.739
X-Spam-Level: 
X-Spam-Status: No, score=-2.739 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, GB_SUMOF=5, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, HTML_OBFUSCATE_05_10=0.26, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id IArXJy6t955F for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 00:25:57 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2C562120125 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 00:25:57 -0700 (PDT)
Date: Wed, 18 Sep 2019 00:25:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568791556; bh=u2QQCUxfObp2ICb36Ktz3cJImUAIc8/Lp/0rk08zlDY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=h7q3t0K58xxDy1yfgm6gPZydWxIZBSaVbbWeR3luImbpbYMH0mkxnhuugE4OQaZ2Q rSB04JPMpJtUB7jV9uvrVaGqD2EmK/rzeJc3Sp/lLPqgkEMZBPIpFbtpFEB4XcdxDR Z7wjN/FalflchLXMs1WCtJoqDAopbhA3pcJrqYkw=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7KZ3WACMQ2IELW2ZF3R4HIJEVBNHHB253VH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3042/review/289716321@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3042@github.com>
References: <quicwg/base-drafts/pull/3042@github.com>
Subject: Re: [quicwg/base-drafts] Use the FRAME_ENCODING_ERROR for errors in frame encoding (#3042)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d81dc0456ea8_38c03fbdef2cd96c987f9"; 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/jM1dp0_oxQTxXjV_Jx1v1oCZj48>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 07:25:59 -0000

----==_mimepart_5d81dc0456ea8_38c03fbdef2cd96c987f9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

kazuho commented on this pull request.



> @@ -5060,8 +5059,8 @@ the offset of the next byte that would be sent.
 The first byte in the stream has an offset of 0.  The largest offset delivered
 on a stream - the sum of the offset and data length - cannot exceed 2^62-1, as
 it is not possible to provide flow control credit for that data.  Receipt of a
-frame that exceeds this limit will be treated as a connection error of type
-FLOW_CONTROL_ERROR.
+frame that exceeds this limit MUST be treated as a connection error of type
+FRAME_ENCODING_ERROR or FLOW_CONTROL_ERROR.

My point is that if we are going to permit the use of FRAME_ENCODING_ERROR when the STREAM frame exceeds the 2<sup>62</sup> boundary, then we should also permit the use of FRAME_ENCODING_ERROR for MAX_STREAMS frame carrying a count exceeding 2<sup>60</sup>.

My weak preference is to not do either of the two, as we'd be losing a clear signal. IMO, this discussion is about the error code to be used when integrity check for certain frames fail. We can argue that integrity check is not part of frame decoding. Then, it would be natural to use the more specific error codes.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3042#discussion_r325519338
----==_mimepart_5d81dc0456ea8_38c03fbdef2cd96c987f9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@kazuho</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3042#discussion_r325519338">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -5060,8 +5059,8 @@ the offset of the next byte that would be sent.
 The first byte in the stream has an offset of 0.  The largest offset delivered
 on a stream - the sum of the offset and data length - cannot exceed 2^62-1, as
 it is not possible to provide flow control credit for that data.  Receipt of a
-frame that exceeds this limit will be treated as a connection error of type
-FLOW_CONTROL_ERROR.
+frame that exceeds this limit MUST be treated as a connection error of type
+FRAME_ENCODING_ERROR or FLOW_CONTROL_ERROR.
</pre>
<p>My point is that if we are going to permit the use of FRAME_ENCODING_ERROR when the STREAM frame exceeds the 2<sup>62</sup> boundary, then we should also permit the use of FRAME_ENCODING_ERROR for MAX_STREAMS frame carrying a count exceeding 2<sup>60</sup>.</p>
<p>My weak preference is to not do either of the two, as we'd be losing a clear signal. IMO, this discussion is about the error code to be used when integrity check for certain frames fail. We can argue that integrity check is not part of frame decoding. Then, it would be natural to use the more specific error codes.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications&amp;email_token=AFTOJK47DMIZKWMEDD6MNP3QKHJYJA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCLQYI#discussion_r325519338">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5752E4SK4EWXTQ5WDQKHJYJANCNFSM4IXJVA2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5AVLDHJY7I7HHUD23QKHJYJA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCLQYI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJK47DMIZKWMEDD6MNP3QKHJYJA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCLQYI#discussion_r325519338",
"url": "https://github.com/quicwg/base-drafts/pull/3042?email_source=notifications\u0026email_token=AFTOJK47DMIZKWMEDD6MNP3QKHJYJA5CNFSM4IXJVA22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFCLQYI#discussion_r325519338",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d81dc0456ea8_38c03fbdef2cd96c987f9--


From nobody Wed Sep 18 03:04: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 9152F1200DE for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 03:04:40 -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 qcuOyY1UNHk9 for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 03:04: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 BA48E120033 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 03:04:38 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 086FA1C0A0A for <quic-issues@ietf.org>; Wed, 18 Sep 2019 03:04:38 -0700 (PDT)
Date: Wed, 18 Sep 2019 03:04:37 -0700
From: Alexis La Goutte <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7HZ4KVBOEKVQ7UXUF3R5A4LEVBNHHB2WTA7U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3020/532616269@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3020@github.com>
References: <quicwg/base-drafts/issues/3020@github.com>
Subject: Re: [quicwg/base-drafts] Transport parameter registry is too constraining for innovation (#3020)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d820135edb5e_5f143ff3248cd9601174c9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: alagoutte
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wj7MNZUAkL7Xpq8UJFM9zDPPkDE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 10:04:41 -0000

----==_mimepart_5d820135edb5e_5f143ff3248cd9601174c9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> 
> 
> I agree with @ianswett, and I don't think we need to go varint here, that seems like a bit of an overkill. How about reserving 4096 codepoints for spec required, and leaving the rest (2^16 - 2^12 = 61440) for experimentation:
> [0x0000 - 0x0fff] uses the RFC8128 Specification Required policy
> [0x1000 - 0xffff] is reserved for experimentation

Split in two ? what the same size ?

Don't forget there is also GREASE TP now

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3020#issuecomment-532616269
----==_mimepart_5d820135edb5e_5f143ff3248cd9601174c9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>I agree with <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>, and I don't think we need to go varint here, that seems like a bit of an overkill. How about reserving 4096 codepoints for spec required, and leaving the rest (2^16 - 2^12 = 61440) for experimentation:<br>
[0x0000 - 0x0fff] uses the RFC8128 Specification Required policy<br>
[0x1000 - 0xffff] is reserved for experimentation</p>
</blockquote>
<p>Split in two ? what the same size ?</p>
<p>Don't forget there is also GREASE TP now</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications&amp;email_token=AFTOJKZWHFEKQHRWSQ5XUITQKH4LLA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD67RITI#issuecomment-532616269">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK37G377OD2ELL3WYC3QKH4LLANCNFSM4IVYZAZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZEI47OIEBMMBJHRMLQKH4LLA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD67RITI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJKZWHFEKQHRWSQ5XUITQKH4LLA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD67RITI#issuecomment-532616269",
"url": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJKZWHFEKQHRWSQ5XUITQKH4LLA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD67RITI#issuecomment-532616269",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d820135edb5e_5f143ff3248cd9601174c9--


From nobody Wed Sep 18 04:06: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 972A91201E5 for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 04:06: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 dwmWutUJglnk for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 04:06:20 -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 6273F120104 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 04:06:20 -0700 (PDT)
Date: Wed, 18 Sep 2019 04:06:19 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568804780; bh=owT2Rq+ip0cOprnTis1Cxqkbw3VLwZs9fGDZ5semXWw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=O36yqDB5k6phOr3wV8LR/4YoRUXnW0oPuB7od2VxDiT8fNBvpEA0F6Hr8c/oPEL1e Y7gNY4kTv3XWlnkCXaP6Po57dKpDpzgevKqZe3BvNtajWY2d5j1EX/LsPO8HlKhHzA pTMvoOjWlpT6/HWpHzcclkA6pmdePEaaZRGsqVGA=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYETXMSQSQKFN6HZ2F3R42BXEVBNHHB27HBVI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3046/532635972@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3046@github.com>
References: <quicwg/base-drafts/issues/3046@github.com>
Subject: Re: [quicwg/base-drafts] Handling of Retire Prior To field (#3046)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d820faba6f3f_37133fa5cf2cd968107046"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kQfn_3pFFy8jLY9K7vb737kV-HQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 11:06:22 -0000

----==_mimepart_5d820faba6f3f_37133fa5cf2cd968107046
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

That almost works, except that PTO isn't a shared variable.  It's subjective and so endpoints might disagree on where this line is.  At 3PTO, that's probably not a disagreement worth having, but you are effectively recommending instant compliance if you set the bar that low, as packet loss on any packet sent that attempts to comply might cause it to take up to 3PTO to get through.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3046#issuecomment-532635972
----==_mimepart_5d820faba6f3f_37133fa5cf2cd968107046
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>That almost works, except that PTO isn't a shared variable.  It's subjective and so endpoints might disagree on where this line is.  At 3PTO, that's probably not a disagreement worth having, but you are effectively recommending instant compliance if you set the bar that low, as packet loss on any packet sent that attempts to comply might cause it to take up to 3PTO to get through.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications&amp;email_token=AFTOJKZ4PRCYRH5S3MYLJT3QKIDSXA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD67WCRA#issuecomment-532635972">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3KJIAVS3LU74UOK4TQKIDSXANCNFSM4IXSLCQA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6TD6Q5I5Y3WUOXFG3QKIDSXA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD67WCRA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJKZ4PRCYRH5S3MYLJT3QKIDSXA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD67WCRA#issuecomment-532635972",
"url": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJKZ4PRCYRH5S3MYLJT3QKIDSXA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD67WCRA#issuecomment-532635972",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d820faba6f3f_37133fa5cf2cd968107046--


From nobody Wed Sep 18 04:30: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 C275E12004D for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 04:30: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 Vl5rOzeivUuv for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 04:30:35 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3E434120024 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 04:30:35 -0700 (PDT)
Date: Wed, 18 Sep 2019 04:30:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568806234; bh=X12T4HdxmrmGZFZsVmHXkDHy40bxXwzrqFC0whbHefM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Gse/IyA2+RiqQEgZOwRIQL3ZO6Ek6iD6MeKUh0JTWsdhGCX0/iPSE3UNiU2Iut5Q0 7xSjNsKECaKsfGTBFQSNn+/oKwIevV6hz0pjV36KQPwCASc+j4jZLX+nCA3x8so74D a9p8/dlblWGJGPT9q0fkWy1pavhFTRurY5dcZDFI=
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/push/4047775772@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d82155a5555d_1953fe1a0ecd96819768"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chris-wood
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vNcw826jxHEcwBvAlL-qYcds_H0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 11:30:37 -0000

----==_mimepart_5d82155a5555d_1953fe1a0ecd96819768
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@chris-wood pushed 1 commit.

6040f5f6419fbdbea8b014d318407dc0bb4fd27e  Remove AEAD mask generation with a PRP(=PRF), and update references accordingly.


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3031/files/d86243037a40c9a5f4e31fea55bd7f97b83b53bb..6040f5f6419fbdbea8b014d318407dc0bb4fd27e

----==_mimepart_5d82155a5555d_1953fe1a0ecd96819768
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/chris-wood" class="user-mention">@chris-wood</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/6040f5f6419fbdbea8b014d318407dc0bb4fd27e">6040f5f</a>  Remove AEAD mask generation with a PRP(=PRF), and update references accordingly.</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3031/files/d86243037a40c9a5f4e31fea55bd7f97b83b53bb..6040f5f6419fbdbea8b014d318407dc0bb4fd27e?email_source=notifications&amp;email_token=AFTOJK6EC5OMIJM5P5N4QLDQKIGNVA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTONBYG44DQN2QOVZWQIZUGA2DONZXGU3TOMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2RWUL5CEEA2BNPDGDQKIGNVANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYHWMNCJDZNJNLMENLQKIGNVA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTONBYG44DQN2QOVZWQIZUGA2DONZXGU3TOMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031/files/d86243037a40c9a5f4e31fea55bd7f97b83b53bb..6040f5f6419fbdbea8b014d318407dc0bb4fd27e?email_source=notifications\u0026email_token=AFTOJK6EC5OMIJM5P5N4QLDQKIGNVA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTONBYG44DQN2QOVZWQIZUGA2DONZXGU3TOMQ",
"url": "https://github.com/quicwg/base-drafts/pull/3031/files/d86243037a40c9a5f4e31fea55bd7f97b83b53bb..6040f5f6419fbdbea8b014d318407dc0bb4fd27e?email_source=notifications\u0026email_token=AFTOJK6EC5OMIJM5P5N4QLDQKIGNVA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTONBYG44DQN2QOVZWQIZUGA2DONZXGU3TOMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d82155a5555d_1953fe1a0ecd96819768--


From nobody Wed Sep 18 04: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 B1FD91201C6 for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 04:31:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.28
X-Spam-Level: 
X-Spam-Status: No, score=-6.28 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, 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 iDc0rB9d2_oN for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 04:31:43 -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 3A57B12004D for <quic-issues@ietf.org>; Wed, 18 Sep 2019 04:31:43 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id E1F9F2600D9 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 04:31:42 -0700 (PDT)
Date: Wed, 18 Sep 2019 04:31:42 -0700
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7Q3BCWJ5EE7XU6GKN3R5LC5EVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/review/289849520@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d82159e9b94e_69993fd18e6cd960106760"; 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/5Ip6UDJd-1TN_Z2ZYGm1weSWzMI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 11:31:45 -0000

----==_mimepart_5d82159e9b94e_69993fd18e6cd960106760
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

chris-wood commented on this pull request.



> @@ -84,7 +85,7 @@ informative:
       - ins: R. Ng
       - ins: B. Tackmann
     date: 2019-06-01
-    target: https://eprint.iacr.org/2019/624
+    target: "http://dx.doi.org/10.1007/978-3-030-26948-7_9"

True, yet the DOI is stable. I'm sure folks won't have trouble finding the ePrint version.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3031#discussion_r325622335
----==_mimepart_5d82159e9b94e_69993fd18e6cd960106760
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@chris-wood</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3031#discussion_r325622335">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -84,7 +85,7 @@ informative:
       - ins: R. Ng
       - ins: B. Tackmann
     date: 2019-06-01
-    target: https://eprint.iacr.org/2019/624
+    target: &quot;http://dx.doi.org/10.1007/978-3-030-26948-7_9&quot;
</pre>
<p>True, yet the DOI is stable. I'm sure folks won't have trouble finding the ePrint version.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications&amp;email_token=AFTOJK22DYUVCKF7WIU332LQKIGR5A5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFDMBMA#discussion_r325622335">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5G7RYXGTPZVOBF45TQKIGR5ANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3NBPP36YSUSUBTFMTQKIGR5A5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFDMBMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK22DYUVCKF7WIU332LQKIGR5A5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFDMBMA#discussion_r325622335",
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK22DYUVCKF7WIU332LQKIGR5A5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFDMBMA#discussion_r325622335",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d82159e9b94e_69993fd18e6cd960106760--


From nobody Wed Sep 18 04:36: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 AFA01120220 for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 04:36: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 xMtDpw4R1GbV for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 04:36:14 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3B4CD12021C for <quic-issues@ietf.org>; Wed, 18 Sep 2019 04:36:14 -0700 (PDT)
Date: Wed, 18 Sep 2019 04:36:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568806573; bh=XVSi+E+Nap0vm/DuIO8sDgC0wwU7WvgvNhJr14uJVNw=; h=Date:From:To:Subject:From; b=fVP547zXsPBBMiVwVRvXbYXIYyzVc8Gs7Itlfk/WYWxvtr8uJFL/Vz9yDLbFeW4Vp NwgS/feJ+3YujypelfjIlQgEZod9rWQZ115PESP65j1uR8Q5yu1965YqTEC69z172q bOd8629NAQfEOu3to+cqe7qSIJUDKNs1uOAb7RZA=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/b30151-888f86@github.com>
Subject: [quicwg/base-drafts] be8f6e: Reference "Nonces are Noticed" in the header prote...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/StslFW8AuD5olfTsUY9DgWKFi3o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 11:36:16 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: be8f6e1438d4a4cd79081898688fb3ed3f640ed4
      https://github.com/quicwg/base-drafts/commit/be8f6e1438d4a4cd79081898688fb3ed3f640ed4
  Author: Christopher Wood <caw@heapingbits.net>
  Date:   2019-09-13 (Fri, 13 Sep 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Reference "Nonces are Noticed" in the header protection analysis section.

This paper studies several "nonce hiding" transformations, of which the QUIC
header protection algorithm is one. This change replaces the old analysis
text with something a bit more crisp.


  Commit: 55e1cf951bd5ed47925cb01ea37eae54757fa923
      https://github.com/quicwg/base-drafts/commit/55e1cf951bd5ed47925cb01ea37eae54757fa923
  Author: Christopher Wood <caw@heapingbits.net>
  Date:   2019-09-16 (Mon, 16 Sep 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>


  Commit: 4e8c028d25b04a895507db826491ea38a2cd680f
      https://github.com/quicwg/base-drafts/commit/4e8c028d25b04a895507db826491ea38a2cd680f
  Author: Christopher Wood <caw@heapingbits.net>
  Date:   2019-09-16 (Mon, 16 Sep 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>


  Commit: d86243037a40c9a5f4e31fea55bd7f97b83b53bb
      https://github.com/quicwg/base-drafts/commit/d86243037a40c9a5f4e31fea55bd7f97b83b53bb
  Author: Christopher Wood <caw@heapingbits.net>
  Date:   2019-09-16 (Mon, 16 Sep 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Update references. Fix linting issues.


  Commit: 6040f5f6419fbdbea8b014d318407dc0bb4fd27e
      https://github.com/quicwg/base-drafts/commit/6040f5f6419fbdbea8b014d318407dc0bb4fd27e
  Author: Christopher Wood <caw@heapingbits.net>
  Date:   2019-09-18 (Wed, 18 Sep 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Remove AEAD mask generation with a PRP(=PRF), and update references accordingly.

Also, add a note about requirements for future header protection variants.


  Commit: 888f86fdff35c5a4afe941d779a64a2176fc7b28
      https://github.com/quicwg/base-drafts/commit/888f86fdff35c5a4afe941d779a64a2176fc7b28
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-18 (Wed, 18 Sep 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Merge pull request #3031 from chris-wood/caw/nonces-are-noticed

Reference "Nonces are Noticed" in the header protection analysis section


Compare: https://github.com/quicwg/base-drafts/compare/b301514aec72...888f86fdff35


From nobody Wed Sep 18 04:36: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 0B496120994 for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 04:36:25 -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 7X0bdho4EkZm for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 04:36: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 46C2912082A for <quic-issues@ietf.org>; Wed, 18 Sep 2019 04:36:23 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id A16B68C0855 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 04:36:22 -0700 (PDT)
Date: Wed, 18 Sep 2019 04:36:22 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZEMCIAKMDSTBIPDZV3R45SNEVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/issue_event/2643173607@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8216b693723_a923fc02fccd95c103899"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/RDhuwKfe0XKr5AQiDYApUiav2zc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 11:36:29 -0000

----==_mimepart_5d8216b693723_a923fc02fccd95c103899
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3031 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/3031#event-2643173607
----==_mimepart_5d8216b693723_a923fc02fccd95c103899
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="493522851" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3031" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3031/hovercard" href="https://github.com/quicwg/base-drafts/pull/3031">#3031</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/3031?email_source=notifications&amp;email_token=AFTOJKZLVOOHKLJD44JPBQLQKIHDNA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTWF2BZY#event-2643173607">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6XQRROQTM3R4DR4JLQKIHDNANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3TTNA5V6VR2UEXZE3QKIHDNA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTWF2BZY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJKZLVOOHKLJD44JPBQLQKIHDNA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTWF2BZY#event-2643173607",
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJKZLVOOHKLJD44JPBQLQKIHDNA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTWF2BZY#event-2643173607",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8216b693723_a923fc02fccd95c103899--


From nobody Wed Sep 18 04:36: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 10E4912021C for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 04:36: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 AUs2n5amEANq for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 04:36: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 E5F7C120024 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 04:36:45 -0700 (PDT)
Date: Wed, 18 Sep 2019 04:36:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568806605; bh=o/6dheRE+b/CK3IcbR03tJiQsyQDRek3Q0DKiltN7dw=; h=Date:From:To:Subject:From; b=K2BWth6ociSzhQBVIGo2byjlPY0adCfA9eZA/Vx/RwoUpissJ9Ln9Da2/ceFKzXg2 a5xhcaxqvqNh8H+unP8h6FBncDW+2eKsMdtmxW8PD7vSBuLazey0IVpUVncdQdpxQY ZGL9Ziw1MHz3LSBPibc4uOiSSKjHz2hYyi1l9ye8=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/8c85bb-1f111a@github.com>
Subject: [quicwg/base-drafts] 1f111a: Script updating gh-pages from 888f86fd. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7qnJRL9jILBZFk2768Ya0S7GMLg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 11:36:47 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1f111a804b40d152065517fb18d1931da47deedb
      https://github.com/quicwg/base-drafts/commit/1f111a804b40d152065517fb18d1931da47deedb
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-18 (Wed, 18 Sep 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 888f86fd. [ci skip]



From nobody Wed Sep 18 04: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 A6ECA12021C for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 04:37: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 TbvK6vNqfOcE for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 04:37: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 6426B120024 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 04:37:21 -0700 (PDT)
Date: Wed, 18 Sep 2019 04:37:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568806640; bh=NzWgeINrvd4Ucq1N3qUBqasO82C2+6KaJyCZ9i5oh5I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=AE/sHAtnKmYhcp7DKAQU+NPT+InImBKxs9ATZPijXYYl7HFM9mUqiMZTVHegb9UxJ Ad6977se5hkwql1TQhecs1GLWywaC0qFGDbbYFtRpBa1AkTwj2Q8vZPsOUhJRY9v1C ICnUUa/yFKZMuit3SFQt5Rv776vPbQUJr7nbKUGc=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6EBYVCX7H5FILAYRN3R45WBEVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/c532645269@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8216f0af5ce_14893f7fe4acd96c1071f8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SJuK-EZ89Ln_ghA0GefhgnW96Vw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 11:37:23 -0000

----==_mimepart_5d8216f0af5ce_14893f7fe4acd96c1071f8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm really happy to see good research on this that confirms our intuitions about one of the most important QUIC-specific constructions.  Thanks for doing this Chris.

Are you planning to make a similar contribution to DTLS 1.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/pull/3031#issuecomment-532645269
----==_mimepart_5d8216f0af5ce_14893f7fe4acd96c1071f8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'm really happy to see good research on this that confirms our intuitions about one of the most important QUIC-specific constructions.  Thanks for doing this Chris.</p>
<p>Are you planning to make a similar contribution to DTLS 1.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/pull/3031?email_source=notifications&amp;email_token=AFTOJK46UETPQXB2ZJRXE3DQKIHHBA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD67YLFI#issuecomment-532645269">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5W3F7N67LTN5PK3ETQKIHHBANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6PTBBJB7Y7NIX36JDQKIHHBA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD67YLFI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK46UETPQXB2ZJRXE3DQKIHHBA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD67YLFI#issuecomment-532645269",
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK46UETPQXB2ZJRXE3DQKIHHBA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD67YLFI#issuecomment-532645269",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8216f0af5ce_14893f7fe4acd96c1071f8--


From nobody Wed Sep 18 05: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 94259120232 for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 05:34: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 7Stq_63ZY2v3 for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 05:34:52 -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 7026012004D for <quic-issues@ietf.org>; Wed, 18 Sep 2019 05:34:52 -0700 (PDT)
Date: Wed, 18 Sep 2019 05:34:51 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568810092; bh=L9X6nuwBWPZjEGasEy7YU9dHxWIysoyC9Imjx6Gma4k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FrYQzzX6g6WZJ37WzDHoKWkALTT/FWJiVmUn+LLzZI10hamWFsR9lecUFO1HFhFW+ rXGZ80px4qyI8073PrW4xgW3MpvQo+th2N3C1RhKDL8y1RFIfVOXFu0st8mhUiMd+1 /80mLuT0lTiBd9cQOlDd6zAi+xAdojOJSJuSDXIc=
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3TYG4VMXLMPEDEV4F3R5SPXEVBNHHB22UPUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3031/c532663717@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3031@github.com>
References: <quicwg/base-drafts/pull/3031@github.com>
Subject: Re: [quicwg/base-drafts] Reference "Nonces are Noticed" in the header protection analysis section (#3031)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d82246bb0af4_1ef03fe4742cd95c112240"; 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/kkOeSjhs6Y6n4nJqFlC5FMG1LbQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 12:34:53 -0000

----==_mimepart_5d82246bb0af4_1ef03fe4742cd95c112240
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> Thanks for doing this Chris.

My pleasure. :-)

> Are you planning to make a similar contribution to DTLS 1.3?

Yep!

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3031#issuecomment-532663717
----==_mimepart_5d82246bb0af4_1ef03fe4742cd95c112240
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>Thanks for doing this Chris.</p>
</blockquote>
<p>My pleasure. :-)</p>
<blockquote>
<p>Are you planning to make a similar contribution to DTLS 1.3?</p>
</blockquote>
<p>Yep!</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications&amp;email_token=AFTOJK26YNR7OMSC4SSAHKLQKIN6XA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6743JI#issuecomment-532663717">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7QYARPRPYE2F6KH2LQKIN6XANCNFSM4IWUFWXQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5ESYYOONDL44B4KETQKIN6XA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6743JI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK26YNR7OMSC4SSAHKLQKIN6XA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6743JI#issuecomment-532663717",
"url": "https://github.com/quicwg/base-drafts/pull/3031?email_source=notifications\u0026email_token=AFTOJK26YNR7OMSC4SSAHKLQKIN6XA5CNFSM4IWUFWX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6743JI#issuecomment-532663717",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d82246bb0af4_1ef03fe4742cd95c112240--


From nobody Wed Sep 18 11:13: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 D4AB0120801 for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 11:13:30 -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 dK_tBk9BTlix for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 11:13:29 -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 E5F5F1200BA for <quic-issues@ietf.org>; Wed, 18 Sep 2019 11:13:28 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 0063F8C1E43 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 11:13:28 -0700 (PDT)
Date: Wed, 18 Sep 2019 11:13:27 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYXAVFJI2VMKNMDIU53R62FPEVBNHHB2737AM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3047/c532802883@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3047@github.com>
References: <quicwg/base-drafts/pull/3047@github.com>
Subject: Re: [quicwg/base-drafts] Send after receiving an ACK (#3047)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8273c7e6512_3b23fcc96ccd95c1499b4"; 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/s5evjtE6OWShzeu_qOxALVc_sgQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Sep 2019 18:13:31 -0000

----==_mimepart_5d8273c7e6512_3b23fcc96ccd95c1499b4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thinking more about this, I really like having congestion control, loss detection, and what to send as separate parts of QUIC.  I'm hesitant to couple them more tightly.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3047#issuecomment-532802883
----==_mimepart_5d8273c7e6512_3b23fcc96ccd95c1499b4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Thinking more about this, I really like having congestion control, loss detection, and what to send as separate parts of QUIC.  I'm hesitant to couple them more tightly.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3047?email_source=notifications&amp;email_token=AFTOJK6SVZGYQXEFAP3HIA3QKJVUPA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7A62QY#issuecomment-532802883">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4TWWG4X6XYPKAILMTQKJVUPANCNFSM4IXV7ICQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6CLTUF4QTI23CFOZDQKJVUPA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7A62QY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3047?email_source=notifications\u0026email_token=AFTOJK6SVZGYQXEFAP3HIA3QKJVUPA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7A62QY#issuecomment-532802883",
"url": "https://github.com/quicwg/base-drafts/pull/3047?email_source=notifications\u0026email_token=AFTOJK6SVZGYQXEFAP3HIA3QKJVUPA5CNFSM4IXV7IC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7A62QY#issuecomment-532802883",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8273c7e6512_3b23fcc96ccd95c1499b4--


From nobody Wed Sep 18 20: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 05D6B1209CD for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 19:59:54 -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 4OKOsQSxX44c for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 19:59: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 EC9E31209CB for <quic-issues@ietf.org>; Wed, 18 Sep 2019 19:59:51 -0700 (PDT)
Date: Wed, 18 Sep 2019 19:59:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568861990; bh=skadhzXz0DHHxmz9va3i5r8RAOHoswNBKxOb9Gqjjw8=; h=Date:From:To:Subject:From; b=0G0Ai2AM2MZGWAnPxy9/C4zU76Adafyp8cSHuRLOfzHYGKsLWkKe3AYW5/vNl509r zG9msTIXF3RtrVW2Wss0Y/4YD+JZc67SymZf8AeY8WCHNmFpX9jmb5ZGgsj3wxSeZV 0uFN1Ljbk8cfgKkXJFnXRszMehh0Ky2vga3wLkrg=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/rework-key-update-2/000000-85db1f@github.com>
Subject: [quicwg/base-drafts] 85db1f: Rewrite key update 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/62UHSegpj_UGTOIjmijECJ4v82E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 03:00:00 -0000

  Branch: refs/heads/rework-key-update-2
  Home:   https://github.com/quicwg/base-drafts
  Commit: 85db1f71811872bc01e4ac3692e545620258b82e
      https://github.com/quicwg/base-drafts/commit/85db1f71811872bc01e4ac3692e545620258b82e
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-19 (Thu, 19 Sep 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Rewrite key update section

This makes some significant editorial changes to the key update section,
hopefully making the various activities clearer and more explicit.

In the process, I am also trying to address #2792, which is the timing
sidechannel created by having the generation of updated keys inline with
packet processing.  In doing so, I'm suggesting that endpoints create
the next keys at some time after the key update happens.  Right now, I'm
thinking 1-2 PTOs is probably close enough to workable.  I've limited
this at 3PTO.  This is, however, just a (firm) suggestion at this stage.

For endpoints that only want to keep 2 sets of keys, this is probably
the right time frame, especially if we keep the current advice for 3PTO
before a subsequent update.

The effect of this is that attempts to update at certain times could
cause all packets after the update to be discarded.  That would only
happen if implementations consistently ignored advice on update
frequency, so I think that's tolerable, but I'd like input on this.

(This also attempts to take up the advice from the other, older PRs on
this subject.)

Closes #2792, #2791, #2237.



From nobody Wed Sep 18 20:00: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 6C20E12011D for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 20:00:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 iS_cG1PMu4YZ for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 20:00: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 A18491200F1 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 20:00:31 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id C339C2C1000 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 20:00:30 -0700 (PDT)
Date: Wed, 18 Sep 2019 20:00:30 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/1f111a-b6d7fd@github.com>
Subject: [quicwg/base-drafts] b6d7fd: Script updating gh-pages from 85db1f71. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/F23xdXRzfIUIPAPtkV8wYfvhF68>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 03:00:33 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: b6d7fd601d2ccb967b37bfe1e0c308e0dbfcdc96
      https://github.com/quicwg/base-drafts/commit/b6d7fd601d2ccb967b37bfe1e0c308e0dbfcdc96
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-19 (Thu, 19 Sep 2019)

  Changed paths:
    M index.html
    R respond-migration-cid/draft-ietf-quic-http.html
    R respond-migration-cid/draft-ietf-quic-http.txt
    R respond-migration-cid/draft-ietf-quic-invariants.html
    R respond-migration-cid/draft-ietf-quic-invariants.txt
    R respond-migration-cid/draft-ietf-quic-qpack.html
    R respond-migration-cid/draft-ietf-quic-qpack.txt
    R respond-migration-cid/draft-ietf-quic-recovery.html
    R respond-migration-cid/draft-ietf-quic-recovery.txt
    R respond-migration-cid/draft-ietf-quic-tls.html
    R respond-migration-cid/draft-ietf-quic-tls.txt
    R respond-migration-cid/draft-ietf-quic-transport.html
    R respond-migration-cid/draft-ietf-quic-transport.txt
    R respond-migration-cid/index.html
    A rework-key-update-2/draft-ietf-quic-http.html
    A rework-key-update-2/draft-ietf-quic-http.txt
    A rework-key-update-2/draft-ietf-quic-invariants.html
    A rework-key-update-2/draft-ietf-quic-invariants.txt
    A rework-key-update-2/draft-ietf-quic-qpack.html
    A rework-key-update-2/draft-ietf-quic-qpack.txt
    A rework-key-update-2/draft-ietf-quic-recovery.html
    A rework-key-update-2/draft-ietf-quic-recovery.txt
    A rework-key-update-2/draft-ietf-quic-tls.html
    A rework-key-update-2/draft-ietf-quic-tls.txt
    A rework-key-update-2/draft-ietf-quic-transport.html
    A rework-key-update-2/draft-ietf-quic-transport.txt
    A rework-key-update-2/index.html

  Log Message:
  -----------
  Script updating gh-pages from 85db1f71. [ci skip]



From nobody Wed Sep 18 20:15: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 C73E412011D for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 20:15: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 FwJu-H4cGe6A for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 20:15: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 B30A5120119 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 20:15:07 -0700 (PDT)
Date: Wed, 18 Sep 2019 20:15:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568862906; bh=BnZWXt/I2m1cYPwTCOKUliEN5iPcD9FWg3O58WyO88k=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=WqhNP3Azam0as8IeWzL94u/i6ekm36VIauT4tVn9CMSo4kTXyTYQfEAeWeFdLP3Y6 LKTWqSxUrp0CXm1W/nuBFOlQUYfnb9yQvD/G/uRkMnGjlyg4wFo466UnENWHt9eGQe ArqQq9e659IEO0DGIQ/1LcfuIxc49T/5C9o9kKjQ=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK52LH5SS6H24BWK3R53SALSVEVBNHHB3CL6HQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3050@github.com>
Subject: [quicwg/base-drafts] Rewrite key update section (#3050)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d82f2ba11168_6a793fcaf7ecd964495fe"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/23a0W0dGloZy8XyaWEPxyHKXOk0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 03:15:10 -0000

----==_mimepart_5d82f2ba11168_6a793fcaf7ecd964495fe
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This makes some significant editorial changes to the key update section,
hopefully making the various activities clearer and more explicit.

In the process, I am also trying to address #2792, which is the timing
sidechannel created by having the generation of updated keys inline with
packet processing.  In doing so, I&#39;m suggesting that endpoints create
the next keys at some time after the key update happens.  Right now, I&#39;m
thinking 1-2 PTOs is probably close enough to workable.  I&#39;ve limited
this at 3PTO.  This is, however, just a (firm) suggestion at this stage.

For endpoints that only want to keep 2 sets of keys, this is probably
the right time frame, especially if we keep the current advice for 3PTO
before a subsequent update.

The effect of this is that attempts to update at certain times could
cause all packets after the update to be discarded.  That would only
happen if implementations consistently ignored advice on update
frequency, so I think that&#39;s tolerable, but I&#39;d like input on this.

(This also attempts to take up the advice from the other, older PRs on
this subject.)

Closes #2792, #2791, #2237.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3050

-- Commit Summary --

  * Rewrite key update section

-- File Changes --

    M draft-ietf-quic-tls.md (296)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3050.patch
https://github.com/quicwg/base-drafts/pull/3050.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/3050

----==_mimepart_5d82f2ba11168_6a793fcaf7ecd964495fe
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>This makes some significant editorial changes to the key update sectio=
n,<br>
hopefully making the various activities clearer and more explicit.</p>
<p>In the process, I am also trying to address <a class=3D"issue-link js-=
issue-link" data-error-text=3D"Failed to load issue title" data-id=3D"456=
097678" data-permission-text=3D"Issue title is private" data-url=3D"https=
://github.com/quicwg/base-drafts/issues/2792" data-hovercard-type=3D"issu=
e" data-hovercard-url=3D"/quicwg/base-drafts/issues/2792/hovercard" href=3D=
"https://github.com/quicwg/base-drafts/issues/2792">#2792</a>, which is t=
he timing<br>
sidechannel created by having the generation of updated keys inline with<=
br>
packet processing.  In doing so, I'm suggesting that endpoints create<br>=

the next keys at some time after the key update happens.  Right now, I'm<=
br>
thinking 1-2 PTOs is probably close enough to workable.  I've limited<br>=

this at 3PTO.  This is, however, just a (firm) suggestion at this stage.<=
/p>
<p>For endpoints that only want to keep 2 sets of keys, this is probably<=
br>
the right time frame, especially if we keep the current advice for 3PTO<b=
r>
before a subsequent update.</p>
<p>The effect of this is that attempts to update at certain times could<b=
r>
cause all packets after the update to be discarded.  That would only<br>
happen if implementations consistently ignored advice on update<br>
frequency, so I think that's tolerable, but I'd like input on this.</p>
<p>(This also attempts to take up the advice from the other, older PRs on=
<br>
this subject.)</p>
<p><span class=3D"issue-keyword tooltipped tooltipped-se" aria-label=3D"T=
his pull request closes issue #2792.">Closes</span> <a class=3D"issue-lin=
k js-issue-link" data-error-text=3D"Failed to load issue title" data-id=3D=
"456097678" data-permission-text=3D"Issue title is private" data-url=3D"h=
ttps://github.com/quicwg/base-drafts/issues/2792" data-hovercard-type=3D"=
issue" data-hovercard-url=3D"/quicwg/base-drafts/issues/2792/hovercard" h=
ref=3D"https://github.com/quicwg/base-drafts/issues/2792">#2792</a>, <a c=
lass=3D"issue-link js-issue-link" data-error-text=3D"Failed to load issue=
 title" data-id=3D"456054569" data-permission-text=3D"Issue title is priv=
ate" data-url=3D"https://github.com/quicwg/base-drafts/issues/2791" data-=
hovercard-type=3D"pull_request" data-hovercard-url=3D"/quicwg/base-drafts=
/pull/2791/hovercard" href=3D"https://github.com/quicwg/base-drafts/pull/=
2791">#2791</a>, <a class=3D"issue-link js-issue-link" data-error-text=3D=
"Failed to load issue title" data-id=3D"393275765" data-permission-text=3D=
"Issue title is private" data-url=3D"https://github.com/quicwg/base-draft=
s/issues/2237" data-hovercard-type=3D"pull_request" data-hovercard-url=3D=
"/quicwg/base-drafts/pull/2237/hovercard" href=3D"https://github.com/quic=
wg/base-drafts/pull/2237">#2237</a>.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href=3D'https://github.com/quicwg/base-drafts/pull/3050=
'>https://github.com/quicwg/base-drafts/pull/3050</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Rewrite key update section</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href=3D"https://github.com/quicwg/base-drafts/pull/3050/files#diff=
-0">draft-ietf-quic-tls.md</a>
    (296)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href=3D'https://github.com/quicwg/base-drafts/pull/3050.patch'>h=
ttps://github.com/quicwg/base-drafts/pull/3050.patch</a></li>
  <li><a href=3D'https://github.com/quicwg/base-drafts/pull/3050.diff'>ht=
tps://github.com/quicwg/base-drafts/pull/3050.diff</a></li>
</ul>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3050?email_source=3Dnotifications&amp;email_token=3DA=
FTOJKYKCEQDM67Z4JCISO3QKLVDVA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFUVEXG43VMW=
VGG33NNVSW45C7NFSM4HMJPY6A">view it on GitHub</a>, or <a href=3D"https://=
github.com/notifications/unsubscribe-auth/AFTOJK44HC5QPHTIOGH5VRDQKLVDVAN=
CNFSM4IYF37JQ">mute the thread</a>.<img src=3D"https://github.com/notific=
ations/beacon/AFTOJK4SPVOLJWDTAETDAKTQKLVDVA5CNFSM4IYF37J2YY3PNVWWK3TUL52=
HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMJPY6A.gif" height=3D"1" width=3D"1" a=
lt=3D"" /></p>
<script type=3D"application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3050?email_source=3D=
notifications\u0026email_token=3DAFTOJKYKCEQDM67Z4JCISO3QKLVDVA5CNFSM4IYF=
37J2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMJPY6A",
"url": "https://github.com/quicwg/base-drafts/pull/3050?email_source=3Dno=
tifications\u0026email_token=3DAFTOJKYKCEQDM67Z4JCISO3QKLVDVA5CNFSM4IYF37=
J2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMJPY6A",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d82f2ba11168_6a793fcaf7ecd964495fe--


From nobody Wed Sep 18 22:51: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 1427D12010E for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 22:51: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, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XE94siCQkJdO for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 22:51:07 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 46CAB1200A3 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 22:51:07 -0700 (PDT)
Date: Wed, 18 Sep 2019 22:51:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568872266; bh=gW67tIbHDupXu9ekV5MXuMuA1wy+CQd8sM7HvuA1ddw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XNeBEzppMyIwG5fWrXkZluSQl+sWtDeCDqFJb2wEv6xWm+/vNOS4QPAiBl1WjKihn qlVvZJuhnO46w5aUfHPWWYQz1kNzpV+IGgG4IEG5EEUrtjYSrONbOdyf5VmtfSgSMu bDdu3N47uCNBowggQ4FvSTxIMkBzPK2QjuAegDiY=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5OMYMJYLYQI4W6BT53SBE4VEVBNHHB3CL6HQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3050/review/290325868@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3050@github.com>
References: <quicwg/base-drafts/pull/3050@github.com>
Subject: Re: [quicwg/base-drafts] Rewrite key update section (#3050)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d83174a5048e_3b803ff40fccd95c489b4"; 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/TVTiHLGTlIvF-gVUWDB2jVBhH4I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 05:51:10 -0000

----==_mimepart_5d83174a5048e_3b803ff40fccd95c489b4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

kazuho commented on this pull request.

Thank you very much for writing this.

This is a big change in text and I assume it has been tough to write down. It's also hard to read and make comments at once, so below are my tentative comments.

> +{{protection-keys}}.  The header protection key is not updated.
+
+
+The endpoint toggles the value of the Key Phase bit and uses the updated key and
+IV to protect all subsequent packets.
+
+An endpoint MUST NOT initiate a key update prior to having received an
+acknowledgment for a packet that it sent protected with keys from the current
+key phase.  This ensures that keys are available to both peers before another
+can be initiated.
+
+Note:
+
+: Changes in keys from Initial to Handshake and from Handshake to 1-RTT don't
+  use this key update process. Key changes during the handshake are driven
+  solely by changes in the TLS handshake state.

It seems a bit odd that we do not talk about 0-RTT packet here, even though Initial and Handshake are mentioned.

Maybe something like: _Keys of packets other than the 1-RTT packets are never updated; their keys are derived solely from the TLS handshake state._

> +
+
+## Responding to a Key Update
+
+Once an endpoint has acknowledged a packet in the current key phase, a peer is
+permitted to initiate a key update.  If a packet is received with a key phase
+that differs from the value the endpoint used to protect the last packet it
+sent, the endpoint uses the next packet protection keys for reading and the
+corresponding key and IV; see {{receive-key-generation}} for considerations
+about generating these keys.
+
+An endpoint uses the same key derivation process as its peer uses to generate
+keys for receiving.
+
+If a packet is successfully processed using the next key and IV, then the peer
+has initiated a key update.  The endpoint MUST updates its send keys to the

s/updates/update/

> +Once an endpoint has acknowledged a packet in the current key phase, a peer is
+permitted to initiate a key update.  If a packet is received with a key phase
+that differs from the value the endpoint used to protect the last packet it
+sent, the endpoint uses the next packet protection keys for reading and the
+corresponding key and IV; see {{receive-key-generation}} for considerations
+about generating these keys.
+
+An endpoint uses the same key derivation process as its peer uses to generate
+keys for receiving.
+
+If a packet is successfully processed using the next key and IV, then the peer
+has initiated a key update.  The endpoint MUST updates its send keys to the
+corresponding key phase in response, as described in {{key-update-initiate}}.
+By acknowledging the packet that triggered the key update in a packet protected
+with the updated keys, the endpoint will ultimately signal that the key update
+is complete.

Would it be possible to clarify the ordering of the operation that the endpoint needs to follow?

IIUC, there is a MUST requirement to update the send keys, before sending an ACK for a packet that triggered that update.

We have the following paragraph starting from line 1280 stating that the peer can close the connection if the endpoint does not follow this ordering requirement.
>  An endpoint that receives an acknowledgement that is carried in a packet
> 	protected with old keys where any acknowledged packet was protected with newer
> 	keys MAY treat that as a connection error of type KEY_UPDATE_ERROR.  This
> 	indicates that a peer has received and acknowledged a packet that initiates a
> 	key update, but has not updated keys in response.

> +apparent key updates are easy to forge and - while the process of key update
+does not require significant effort - triggering this process could be used by
+an attacker for DoS.
+
+For this reason, endpoints MUST be able to retain two sets of packet protection
+keys for receiving packets: the current and the next.  Retaining the previous
+keys in addition to these might improve performance, but this is not essential.
+
+The time taken to generate new keys could reveal through timing side channels
+that a key update has occurred, or where an attacker injects packets, be used to
+reveal the value of the Key Phase on injected packets.  After receiving a key
+update, an endpoint SHOULD generate and save the next set of packet protection
+keys.  After new keys are available, receipt of packets will not create timing
+signals about the value of the Key Phase.
+
+This depends on not doing this generating during packet processing and it can

Maybe s/this generating/this key generation/?

> +keys for receiving packets: the current and the next.  Retaining the previous
+keys in addition to these might improve performance, but this is not essential.
+
+The time taken to generate new keys could reveal through timing side channels
+that a key update has occurred, or where an attacker injects packets, be used to
+reveal the value of the Key Phase on injected packets.  After receiving a key
+update, an endpoint SHOULD generate and save the next set of packet protection
+keys.  After new keys are available, receipt of packets will not create timing
+signals about the value of the Key Phase.
+
+This depends on not doing this generating during packet processing and it can
+require that endpoints maintain three sets of packet protection keys for
+receiving: for the previous key phase, for the current key phase, and for the
+next key phase.  Endpoints MAY choose to defer generation of the next packet
+protection keys until they discard old keys so that only two sets of receive
+keys need to be retained at any point in time.

IIUC, this sentence is suggesting an alternative approach to the previous sentence. Assuming that is the case, I think it might be slightly better to start this sentence with "Endpoints MAY _instead_".

> +update, an endpoint SHOULD generate and save the next set of packet protection
+keys.  After new keys are available, receipt of packets will not create timing
+signals about the value of the Key Phase.
+
+This depends on not doing this generating during packet processing and it can
+require that endpoints maintain three sets of packet protection keys for
+receiving: for the previous key phase, for the current key phase, and for the
+next key phase.  Endpoints MAY choose to defer generation of the next packet
+protection keys until they discard old keys so that only two sets of receive
+keys need to be retained at any point in time.
+
+
+## Sending with Updated Keys {#old-keys-send}
+
+An endpoint always sends packets that are protected with the newest keys.  Keys
+used for adding packet protection can be discarded immediately after switching

Maybe "adding" is superfluous?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3050#pullrequestreview-290325868
----==_mimepart_5d83174a5048e_3b803ff40fccd95c489b4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@kazuho</b> commented on this pull request.</p>

<p>Thank you very much for writing this.</p>
<p>This is a big change in text and I assume it has been tough to write down. It's also hard to read and make comments at once, so below are my tentative comments.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3050#discussion_r325991444">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +{{protection-keys}}.  The header protection key is not updated.
+
+
+The endpoint toggles the value of the Key Phase bit and uses the updated key and
+IV to protect all subsequent packets.
+
+An endpoint MUST NOT initiate a key update prior to having received an
+acknowledgment for a packet that it sent protected with keys from the current
+key phase.  This ensures that keys are available to both peers before another
+can be initiated.
+
+Note:
+
+: Changes in keys from Initial to Handshake and from Handshake to 1-RTT don&#39;t
+  use this key update process. Key changes during the handshake are driven
+  solely by changes in the TLS handshake state.
</pre>
<p>It seems a bit odd that we do not talk about 0-RTT packet here, even though Initial and Handshake are mentioned.</p>
<p>Maybe something like: <em>Keys of packets other than the 1-RTT packets are never updated; their keys are derived solely from the TLS handshake state.</em></p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3050#discussion_r325991792">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +
+
+## Responding to a Key Update
+
+Once an endpoint has acknowledged a packet in the current key phase, a peer is
+permitted to initiate a key update.  If a packet is received with a key phase
+that differs from the value the endpoint used to protect the last packet it
+sent, the endpoint uses the next packet protection keys for reading and the
+corresponding key and IV; see {{receive-key-generation}} for considerations
+about generating these keys.
+
+An endpoint uses the same key derivation process as its peer uses to generate
+keys for receiving.
+
+If a packet is successfully processed using the next key and IV, then the peer
+has initiated a key update.  The endpoint MUST updates its send keys to the
</pre>
<p>s/updates/update/</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3050#discussion_r325992590">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +Once an endpoint has acknowledged a packet in the current key phase, a peer is
+permitted to initiate a key update.  If a packet is received with a key phase
+that differs from the value the endpoint used to protect the last packet it
+sent, the endpoint uses the next packet protection keys for reading and the
+corresponding key and IV; see {{receive-key-generation}} for considerations
+about generating these keys.
+
+An endpoint uses the same key derivation process as its peer uses to generate
+keys for receiving.
+
+If a packet is successfully processed using the next key and IV, then the peer
+has initiated a key update.  The endpoint MUST updates its send keys to the
+corresponding key phase in response, as described in {{key-update-initiate}}.
+By acknowledging the packet that triggered the key update in a packet protected
+with the updated keys, the endpoint will ultimately signal that the key update
+is complete.
</pre>
<p>Would it be possible to clarify the ordering of the operation that the endpoint needs to follow?</p>
<p>IIUC, there is a MUST requirement to update the send keys, before sending an ACK for a packet that triggered that update.</p>
<p>We have the following paragraph starting from line 1280 stating that the peer can close the connection if the endpoint does not follow this ordering requirement.</p>
<blockquote>
<p>An endpoint that receives an acknowledgement that is carried in a packet<br>
protected with old keys where any acknowledged packet was protected with newer<br>
keys MAY treat that as a connection error of type KEY_UPDATE_ERROR.  This<br>
indicates that a peer has received and acknowledged a packet that initiates a<br>
key update, but has not updated keys in response.</p>
</blockquote>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3050#discussion_r325995925">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +apparent key updates are easy to forge and - while the process of key update
+does not require significant effort - triggering this process could be used by
+an attacker for DoS.
+
+For this reason, endpoints MUST be able to retain two sets of packet protection
+keys for receiving packets: the current and the next.  Retaining the previous
+keys in addition to these might improve performance, but this is not essential.
+
+The time taken to generate new keys could reveal through timing side channels
+that a key update has occurred, or where an attacker injects packets, be used to
+reveal the value of the Key Phase on injected packets.  After receiving a key
+update, an endpoint SHOULD generate and save the next set of packet protection
+keys.  After new keys are available, receipt of packets will not create timing
+signals about the value of the Key Phase.
+
+This depends on not doing this generating during packet processing and it can
</pre>
<p>Maybe s/this generating/this key generation/?</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3050#discussion_r325996140">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +keys for receiving packets: the current and the next.  Retaining the previous
+keys in addition to these might improve performance, but this is not essential.
+
+The time taken to generate new keys could reveal through timing side channels
+that a key update has occurred, or where an attacker injects packets, be used to
+reveal the value of the Key Phase on injected packets.  After receiving a key
+update, an endpoint SHOULD generate and save the next set of packet protection
+keys.  After new keys are available, receipt of packets will not create timing
+signals about the value of the Key Phase.
+
+This depends on not doing this generating during packet processing and it can
+require that endpoints maintain three sets of packet protection keys for
+receiving: for the previous key phase, for the current key phase, and for the
+next key phase.  Endpoints MAY choose to defer generation of the next packet
+protection keys until they discard old keys so that only two sets of receive
+keys need to be retained at any point in time.
</pre>
<p>IIUC, this sentence is suggesting an alternative approach to the previous sentence. Assuming that is the case, I think it might be slightly better to start this sentence with "Endpoints MAY <em>instead</em>".</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3050#discussion_r325996635">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +update, an endpoint SHOULD generate and save the next set of packet protection
+keys.  After new keys are available, receipt of packets will not create timing
+signals about the value of the Key Phase.
+
+This depends on not doing this generating during packet processing and it can
+require that endpoints maintain three sets of packet protection keys for
+receiving: for the previous key phase, for the current key phase, and for the
+next key phase.  Endpoints MAY choose to defer generation of the next packet
+protection keys until they discard old keys so that only two sets of receive
+keys need to be retained at any point in time.
+
+
+## Sending with Updated Keys {#old-keys-send}
+
+An endpoint always sends packets that are protected with the newest keys.  Keys
+used for adding packet protection can be discarded immediately after switching
</pre>
<p>Maybe "adding" is superfluous?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications&amp;email_token=AFTOJK66ES6W7VXZL6GJFJLQKMHMVA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFHAK3A#pullrequestreview-290325868">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5YKZ3NXWNGDP6J7BDQKMHMVANCNFSM4IYF37JQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ3PELU77ENCMXRYLTQKMHMVA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFHAK3A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications\u0026email_token=AFTOJK66ES6W7VXZL6GJFJLQKMHMVA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFHAK3A#pullrequestreview-290325868",
"url": "https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications\u0026email_token=AFTOJK66ES6W7VXZL6GJFJLQKMHMVA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFHAK3A#pullrequestreview-290325868",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d83174a5048e_3b803ff40fccd95c489b4--


From nobody Wed Sep 18 23:11: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 5E6431200E7 for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 23:11: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 j6GwGLH2dIHP for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 23:11:38 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7C5D212010E for <quic-issues@ietf.org>; Wed, 18 Sep 2019 23:11:38 -0700 (PDT)
Date: Wed, 18 Sep 2019 23:11:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568873497; bh=79f1JzERXLH5MpBX7g5GUHfUV3eVvRDL6cWTze1YyMM=; h=Date:From:To:Subject:From; b=nyLW5zbYb35vjUbv00Mi43BdgFw2cEQT2dFVjxHbJPSe7DSQjghpkaF/Bc83REg2B vbPBIq8MvRsXabrVy/rqcOBOTEsc1u3oVSdVEMi9OemGAZSv1fSVhaSwuqdSzQUbDR rfE4zOfxAEM3OO210CtMzP8+sToIOrEDyFdI41ho=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/rework-key-update-2/85db1f-678c04@github.com>
Subject: [quicwg/base-drafts] 678c04: Kazuho is a great help here
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/APTKzNfH9AxQlFVa1vQhHSvLkl0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 06:11:41 -0000

  Branch: refs/heads/rework-key-update-2
  Home:   https://github.com/quicwg/base-drafts
  Commit: 678c0486f91012173e827b1d708429b153bc3037
      https://github.com/quicwg/base-drafts/commit/678c0486f91012173e827b1d708429b153bc3037
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-19 (Thu, 19 Sep 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Kazuho is a great help here



From nobody Wed Sep 18 23:11: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 45D6312010E for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 23:11: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 wJ3vnQu-eApp for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 23:11: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 A4A8D1200D7 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 23:11:46 -0700 (PDT)
Date: Wed, 18 Sep 2019 23:11:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568873505; bh=3RfXkISPQRxBu6UoScEVd3X08xcO9kRs9kv9TdVvZBg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cdtDkkJ2SZQ1QD256j9eEcewpulsC2pbFC++1b9o57isemaQHWGJHEDPfKFJH1gvm QrOBgc6v/+/C/bSj7HC42HbzWBHt8IL0pEuesuw04AUJJdxYfUHUG/FJNAKSQA+iQa 2xBOjhDAz6kAbESPgRmbnwd3jJihxI1/lNHGmF/A=
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/3050/push/4051430179@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3050@github.com>
References: <quicwg/base-drafts/pull/3050@github.com>
Subject: Re: [quicwg/base-drafts] Rewrite key update section (#3050)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d831c219e06e_56553fcab7ecd968993bb"; 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/cvTdtYzrcHl1TfoK2nB_iShA6VU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 06:11:48 -0000

----==_mimepart_5d831c219e06e_56553fcab7ecd968993bb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

678c0486f91012173e827b1d708429b153bc3037  Kazuho is a great help here


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3050/files/85db1f71811872bc01e4ac3692e545620258b82e..678c0486f91012173e827b1d708429b153bc3037

----==_mimepart_5d831c219e06e_56553fcab7ecd968993bb
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/678c0486f91012173e827b1d708429b153bc3037">678c048</a>  Kazuho is a great help here</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3050/files/85db1f71811872bc01e4ac3692e545620258b82e..678c0486f91012173e827b1d708429b153bc3037?email_source=notifications&amp;email_token=AFTOJK2JH3VZB5DKZCD5B5LQKMJ2DA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSMBXGU4TSM2QOVZWQIZUGA2TCNBTGAYTOOI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZD5DQO2AHKU7SY2TTQKMJ2DANCNFSM4IYF37JQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY7Z46GQFJOINYYXUDQKMJ2DA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSMBXGU4TSM2QOVZWQIZUGA2TCNBTGAYTOOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3050/files/85db1f71811872bc01e4ac3692e545620258b82e..678c0486f91012173e827b1d708429b153bc3037?email_source=notifications\u0026email_token=AFTOJK2JH3VZB5DKZCD5B5LQKMJ2DA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSMBXGU4TSM2QOVZWQIZUGA2TCNBTGAYTOOI",
"url": "https://github.com/quicwg/base-drafts/pull/3050/files/85db1f71811872bc01e4ac3692e545620258b82e..678c0486f91012173e827b1d708429b153bc3037?email_source=notifications\u0026email_token=AFTOJK2JH3VZB5DKZCD5B5LQKMJ2DA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSMBXGU4TSM2QOVZWQIZUGA2TCNBTGAYTOOI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d831c219e06e_56553fcab7ecd968993bb--


From nobody Wed Sep 18 23: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 97E3B1200E7 for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 23:12:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 zBGUZQfwfOG5 for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 23: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 5E2F41200D7 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 23:12:32 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id C5D808C0850 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 23:12:31 -0700 (PDT)
Date: Wed, 18 Sep 2019 23:12:31 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b6d7fd-49231a@github.com>
Subject: [quicwg/base-drafts] 49231a: Script updating gh-pages from 678c0486. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9Nh3994Z_LWoxz05YtXIRCs4pMA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 06:12:34 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 49231a2861e64fd2c02a4caf7102b1be3f7d9787
      https://github.com/quicwg/base-drafts/commit/49231a2861e64fd2c02a4caf7102b1be3f7d9787
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-19 (Thu, 19 Sep 2019)

  Changed paths:
    M index.html
    M rework-key-update-2/draft-ietf-quic-tls.html
    M rework-key-update-2/draft-ietf-quic-tls.txt

  Log Message:
  -----------
  Script updating gh-pages from 678c0486. [ci skip]



From nobody Wed Sep 18 23:12: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 CE6CC1200D7 for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 23:12: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 bUQ1DifVu6vQ for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 23:12:44 -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 8D0811200E7 for <quic-issues@ietf.org>; Wed, 18 Sep 2019 23:12:44 -0700 (PDT)
Date: Wed, 18 Sep 2019 23:12:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568873563; bh=6aMWYti1XMVSTZxFzz8dCL0hUejlB7QNzT7gFfmfJbc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Q+Sd7+VitT+MDYAUvjnBtqiqk5RvJ0yflOil3mMKDicPOsT5vHNnjXlaE6tbTOOIY 4j9ot+YmdmkhmpPKdWDua4vhXPVvlmRxQ6Bv1MvdK/Tqz8ZQMQeBrXKsfggrtaVXbA 5O/+KyNxOsm2AjSkTX+UFC4hnjJ4UplvjO+kNtZA=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY33BNLIA65K47OZN53SBAMXEVBNHHB3CL6HQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3050/c532982818@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3050@github.com>
References: <quicwg/base-drafts/pull/3050@github.com>
Subject: Re: [quicwg/base-drafts] Rewrite key update section (#3050)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d831c5bc1b36_62b63ff87becd96c10622e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/BW0qs_RvRS4TT6PjsPnxGulftA4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 06:12:50 -0000

----==_mimepart_5d831c5bc1b36_62b63ff87becd96c10622e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thanks @kazuho.  Do you have any opinion on the advice about how many keys to hold, when to flip from keeping previous vs. next (especially if you are doing just two keys) and the technical 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/3050#issuecomment-532982818
----==_mimepart_5d831c5bc1b36_62b63ff87becd96c10622e
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=41567" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a>.  Do you have any opinion on the advice about how many keys to hold, when to flip from keeping previous vs. next (especially if you are doing just two keys) and the technical 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/3050?email_source=notifications&amp;email_token=AFTOJK57FJAX2KHKGGQYVS3QKMJ5XA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7CKYIQ#issuecomment-532982818">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3FOD4KI3RERDQUQ4TQKMJ5XANCNFSM4IYF37JQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7Q4CUNLQ2BJE4VDQ3QKMJ5XA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7CKYIQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications\u0026email_token=AFTOJK57FJAX2KHKGGQYVS3QKMJ5XA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7CKYIQ#issuecomment-532982818",
"url": "https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications\u0026email_token=AFTOJK57FJAX2KHKGGQYVS3QKMJ5XA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7CKYIQ#issuecomment-532982818",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d831c5bc1b36_62b63ff87becd96c10622e--


From nobody Wed Sep 18 23:49: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 0CB0A1200E7 for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 23:49:42 -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 lcbDh1ymgJ1Q for <quic-issues@ietfa.amsl.com>; Wed, 18 Sep 2019 23:49: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 5195E12006D for <quic-issues@ietf.org>; Wed, 18 Sep 2019 23:49:40 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 9909BC6020A for <quic-issues@ietf.org>; Wed, 18 Sep 2019 23:49:39 -0700 (PDT)
Date: Wed, 18 Sep 2019 23:49:39 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZIQPM4ECLSDBZE7LN3SBLYHEVBNHHB3CL6HQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3050/c532992898@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3050@github.com>
References: <quicwg/base-drafts/pull/3050@github.com>
Subject: Re: [quicwg/base-drafts] Rewrite key update section (#3050)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d83250388cd8_7b933fcb9fecd95c1236cb"; 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/c_VhvMJdRrH_BPqgxywQOKijRZI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 06:49:42 -0000

----==_mimepart_5d83250388cd8_7b933fcb9fecd95c1236cb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson It seemed to me that the advice on how to use 2 keys seemed correct and appropriate. It's a bit unfortunate that the advice is scattered, but I assume that's because we have to talk about the features rather than talking about implementation strategies. I also like the introduction of KEY_UPDATE_ERROR.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3050#issuecomment-532992898
----==_mimepart_5d83250388cd8_7b933fcb9fecd95c1236cb
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> It seemed to me that the advice on how to use 2 keys seemed correct and appropriate. It's a bit unfortunate that the advice is scattered, but I assume that's because we have to talk about the features rather than talking about implementation strategies. I also like the introduction of KEY_UPDATE_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/pull/3050?email_source=notifications&amp;email_token=AFTOJK4ADVUTFCO4KEKY32LQKMOIHA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7CNHAQ#issuecomment-532992898">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5UDGXNPUUXUM5TEJDQKMOIHANCNFSM4IYF37JQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZCJYZWX5CMAJODX7TQKMOIHA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7CNHAQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications\u0026email_token=AFTOJK4ADVUTFCO4KEKY32LQKMOIHA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7CNHAQ#issuecomment-532992898",
"url": "https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications\u0026email_token=AFTOJK4ADVUTFCO4KEKY32LQKMOIHA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7CNHAQ#issuecomment-532992898",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d83250388cd8_7b933fcb9fecd95c1236cb--


From nobody Thu Sep 19 01: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 1F599120125 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 01:42:48 -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_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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CSrg51KRebWU for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 01:42:45 -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 7F60C1200B8 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 01:42:45 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id B12C82C1153 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 01:42:44 -0700 (PDT)
Date: Thu, 19 Sep 2019 01:42:44 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK67LI54ZHQZGQXDYJV3SBZAJEVBNHHB3CL6HQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3050/review/290396663@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3050@github.com>
References: <quicwg/base-drafts/pull/3050@github.com>
Subject: Re: [quicwg/base-drafts] Rewrite key update section (#3050)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d833f84a2805_44c83faee0acd9641385a6"; 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/KwdIFjklvFW2gUJqAPKchrhqrhM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 08:42:48 -0000

----==_mimepart_5d833f84a2805_44c83faee0acd9641385a6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

DavidSchinazi commented on this pull request.

Thanks for rewriting this, I think in general the new text is clearer than the previous one. Comments inline.

> @@ -1168,89 +1168,232 @@ anticipation of receiving a ClientHello.
 
 # Key Update
 
-Once the handshake is confirmed, it is possible to update the keys. The
-KEY_PHASE bit in the short header is used to indicate whether key updates
-have occurred. The KEY_PHASE bit is initially set to 0 and then inverted
-with each key update.
+Once the 1-RTT keys are established and confirmed, it is possible to update the

The `handshake is confirmed` has a meaning [formally defined in section 4.1.2](https://quicwg.org/base-drafts/draft-ietf-quic-tls.html#handshake-confirmed). Do we have a formal definition for confirming 1-RTT keys?

> -updated keys, it indicates that its peer has updated keys twice without awaiting
-a reciprocal update.  An endpoint MUST treat consecutive key updates as a fatal
-error and abort the connection.
-
-An endpoint SHOULD retain old keys for a period of no more than three times the
-PTO.  After this period, old keys and their corresponding secrets SHOULD be
-discarded.  Retaining keys allow endpoints to process packets that were sent
-with old keys and delayed in the network.  Packets with higher packet numbers
-always use the updated keys and MUST NOT be decrypted with old keys.
-
-This ensures that once the handshake is complete, packets with the same
-KEY_PHASE will have the same packet protection keys, unless there are multiple
-key updates in a short time frame succession and significant packet reordering.
+{{ex-key-update}} shows a key update process, with keys used identified with @M
+cannot be used until the endpoint has received and successfully decrypted a and
+@N.  The value of Key Phase bit is indicated in brackets \[]..

typo: value of *the* Key Phase bit

> -If an endpoint detects a second update before it has sent any packets with
-updated keys, it indicates that its peer has updated keys twice without awaiting
-a reciprocal update.  An endpoint MUST treat consecutive key updates as a fatal
-error and abort the connection.
-
-An endpoint SHOULD retain old keys for a period of no more than three times the
-PTO.  After this period, old keys and their corresponding secrets SHOULD be
-discarded.  Retaining keys allow endpoints to process packets that were sent
-with old keys and delayed in the network.  Packets with higher packet numbers
-always use the updated keys and MUST NOT be decrypted with old keys.
-
-This ensures that once the handshake is complete, packets with the same
-KEY_PHASE will have the same packet protection keys, unless there are multiple
-key updates in a short time frame succession and significant packet reordering.
+{{ex-key-update}} shows a key update process, with keys used identified with @M
+cannot be used until the endpoint has received and successfully decrypted a and

I'm failing to parse this sentence.

>  
-In deciding when to update keys, endpoints MUST NOT exceed the limits for use of
-specific keys, as described in Section 5.5 of {{!TLS13}}.
+## Initiating a Key Update {#key-update-initiate}
+
+Endpoints maintain separate read and write secrets for packet protection.  An
+endpoint initiates a key update by updating its packet protection write secret
+and using that to protect new packets.  The endpoint creates a new write secret
+from the existing write secret as performed in Section 7.2 of {{!TLS13}}.  This
+uses the KDF function provided by TLS with a label of "quic ku".  The

Is this PR changing the label for key updates?

>  
 This mechanism replaces the TLS KeyUpdate message.  Endpoints MUST NOT send a
 TLS KeyUpdate message.  Endpoints MUST treat the receipt of a TLS KeyUpdate
 message as a connection error of type 0x10a, equivalent to a fatal TLS alert of
 unexpected_message (see {{tls-errors}}).
 
-An endpoint MUST NOT initiate the first key update until the handshake is
-confirmed ({{handshake-confirmed}}). An endpoint MUST NOT initiate a subsequent
-key update until it has received an acknowledgment for a packet sent at the
-current KEY_PHASE.  This can be implemented by tracking the lowest packet

The implementation guidance sentence (`This can be implemented by...`) has been removed, did you not consider it useful?

> +
+## Timing of Receive Key Generation {#receive-key-generation}
+
+Endpoints responding to an apparent key update MUST NOT generate a timing
+side-channel signal that might indicate that the Key Phase bit was invalid (see
+{{header-protect-analysis}}).  Endpoints can use dummy packet protection keys in
+place of discarded keys when key updates are not permitted; using dummy keys
+will generate no variation in the timing signal produced by attempting to remove
+packet protection, but all packets with an invalid Key Phase bit will be
+rejected.
+
+The process of creating new packet protection keys for receiving packets could
+reveal that a key update has occurred.  An endpoint MAY perform this process as
+part of packet processing, but this creates a timing signal that can be used by
+an attacker to learn when key updates happen and thus the value of the Key Phase
+bit in certain packets.  Endpoints SHOULD instead defer the creation of the next

If the endpoint is deferring creation of the next set of keys, does that mean that it's not allowed to send ACKs for up to 3 * PTO? That can really impact performance.

I'm wondering if alternatively we should recommend creating the next set of keys as soon as the old keys have been discarded, it would remove the timing side-channel without causing delays.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3050#pullrequestreview-290396663
----==_mimepart_5d833f84a2805_44c83faee0acd9641385a6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@DavidSchinazi</b> commented on this pull request.</p>

<p>Thanks for rewriting this, I think in general the new text is clearer than the previous one. Comments inline.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3050#discussion_r326046476">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1168,89 +1168,232 @@ anticipation of receiving a ClientHello.
 
 # Key Update
 
-Once the handshake is confirmed, it is possible to update the keys. The
-KEY_PHASE bit in the short header is used to indicate whether key updates
-have occurred. The KEY_PHASE bit is initially set to 0 and then inverted
-with each key update.
+Once the 1-RTT keys are established and confirmed, it is possible to update the
</pre>
<p>The <code>handshake is confirmed</code> has a meaning <a href="https://quicwg.org/base-drafts/draft-ietf-quic-tls.html#handshake-confirmed" rel="nofollow">formally defined in section 4.1.2</a>. Do we have a formal definition for confirming 1-RTT keys?</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3050#discussion_r326048186">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; -updated keys, it indicates that its peer has updated keys twice without awaiting
-a reciprocal update.  An endpoint MUST treat consecutive key updates as a fatal
-error and abort the connection.
-
-An endpoint SHOULD retain old keys for a period of no more than three times the
-PTO.  After this period, old keys and their corresponding secrets SHOULD be
-discarded.  Retaining keys allow endpoints to process packets that were sent
-with old keys and delayed in the network.  Packets with higher packet numbers
-always use the updated keys and MUST NOT be decrypted with old keys.
-
-This ensures that once the handshake is complete, packets with the same
-KEY_PHASE will have the same packet protection keys, unless there are multiple
-key updates in a short time frame succession and significant packet reordering.
+{{ex-key-update}} shows a key update process, with keys used identified with @M
+cannot be used until the endpoint has received and successfully decrypted a and
+@N.  The value of Key Phase bit is indicated in brackets \[]..
</pre>
<p>typo: value of <em>the</em> Key Phase bit</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3050#discussion_r326048594">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; -If an endpoint detects a second update before it has sent any packets with
-updated keys, it indicates that its peer has updated keys twice without awaiting
-a reciprocal update.  An endpoint MUST treat consecutive key updates as a fatal
-error and abort the connection.
-
-An endpoint SHOULD retain old keys for a period of no more than three times the
-PTO.  After this period, old keys and their corresponding secrets SHOULD be
-discarded.  Retaining keys allow endpoints to process packets that were sent
-with old keys and delayed in the network.  Packets with higher packet numbers
-always use the updated keys and MUST NOT be decrypted with old keys.
-
-This ensures that once the handshake is complete, packets with the same
-KEY_PHASE will have the same packet protection keys, unless there are multiple
-key updates in a short time frame succession and significant packet reordering.
+{{ex-key-update}} shows a key update process, with keys used identified with @M
+cannot be used until the endpoint has received and successfully decrypted a and
</pre>
<p>I'm failing to parse this sentence.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3050#discussion_r326049387">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;  
-In deciding when to update keys, endpoints MUST NOT exceed the limits for use of
-specific keys, as described in Section 5.5 of {{!TLS13}}.
+## Initiating a Key Update {#key-update-initiate}
+
+Endpoints maintain separate read and write secrets for packet protection.  An
+endpoint initiates a key update by updating its packet protection write secret
+and using that to protect new packets.  The endpoint creates a new write secret
+from the existing write secret as performed in Section 7.2 of {{!TLS13}}.  This
+uses the KDF function provided by TLS with a label of &quot;quic ku&quot;.  The
</pre>
<p>Is this PR changing the label for key updates?</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3050#discussion_r326051399">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;  
 This mechanism replaces the TLS KeyUpdate message.  Endpoints MUST NOT send a
 TLS KeyUpdate message.  Endpoints MUST treat the receipt of a TLS KeyUpdate
 message as a connection error of type 0x10a, equivalent to a fatal TLS alert of
 unexpected_message (see {{tls-errors}}).
 
-An endpoint MUST NOT initiate the first key update until the handshake is
-confirmed ({{handshake-confirmed}}). An endpoint MUST NOT initiate a subsequent
-key update until it has received an acknowledgment for a packet sent at the
-current KEY_PHASE.  This can be implemented by tracking the lowest packet
</pre>
<p>The implementation guidance sentence (<code>This can be implemented by...</code>) has been removed, did you not consider it useful?</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3050#discussion_r326053395">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +
+## Timing of Receive Key Generation {#receive-key-generation}
+
+Endpoints responding to an apparent key update MUST NOT generate a timing
+side-channel signal that might indicate that the Key Phase bit was invalid (see
+{{header-protect-analysis}}).  Endpoints can use dummy packet protection keys in
+place of discarded keys when key updates are not permitted; using dummy keys
+will generate no variation in the timing signal produced by attempting to remove
+packet protection, but all packets with an invalid Key Phase bit will be
+rejected.
+
+The process of creating new packet protection keys for receiving packets could
+reveal that a key update has occurred.  An endpoint MAY perform this process as
+part of packet processing, but this creates a timing signal that can be used by
+an attacker to learn when key updates happen and thus the value of the Key Phase
+bit in certain packets.  Endpoints SHOULD instead defer the creation of the next
</pre>
<p>If the endpoint is deferring creation of the next set of keys, does that mean that it's not allowed to send ACKs for up to 3 * PTO? That can really impact performance.</p>
<p>I'm wondering if alternatively we should recommend creating the next set of keys as soon as the old keys have been discarded, it would remove the timing side-channel without causing delays.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications&amp;email_token=AFTOJK3L6I5PTO55UJ3VTULQKM3QJA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFHRT5Y#pullrequestreview-290396663">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7BQOYF2V4JEO2IAKTQKM3QJANCNFSM4IYF37JQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7DGZF7RK2R7IB5XETQKM3QJA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFHRT5Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications\u0026email_token=AFTOJK3L6I5PTO55UJ3VTULQKM3QJA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFHRT5Y#pullrequestreview-290396663",
"url": "https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications\u0026email_token=AFTOJK3L6I5PTO55UJ3VTULQKM3QJA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFHRT5Y#pullrequestreview-290396663",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d833f84a2805_44c83faee0acd9641385a6--


From nobody Thu Sep 19 10:02: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 3966A12081A for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 10:02: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 wgDlVlA2PXeq for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 10:02: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 5B46C1202A0 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 10:02:10 -0700 (PDT)
Date: Thu, 19 Sep 2019 10:02:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568912529; bh=A7IL6Mr7WYs879oL2lWoHNujMuwDrgNSyaheDMF5kKE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XsJ2I2ct9TLh9VaG8hZHKebaPAS8ccyq/zfsyH2e2tRM1+5K1IIRk2SKWuQWOtYTt 6Aot4Xei7sYUiY45fCqV3wnZNFZyxbMsUFQjgDGcjTxmy1ML1gognPtssfGsZI7cnx tBhKWEU+35RiORnc6ovKuj4w0bGwCEPFSKI+yDEo=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4BOXT2YUW6PSF6S5N3SD2SDEVBNHHB22URPQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3032/533221421@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3032@github.com>
References: <quicwg/base-drafts/issues/3032@github.com>
Subject: Re: [quicwg/base-drafts] Detectable Stateless Resets (#3032)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d83b491808a6_5e6e3f953b4cd96014267f"; 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/_LZjfk0a4Hjy5pjQjlZZN6Jh7Uw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 17:02:12 -0000

----==_mimepart_5d83b491808a6_5e6e3f953b4cd96014267f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I guess the embedded assumption is that the following scenario does not become prevalent in the internet:
- Server infrastructures generally do not support migration, meaning a 4-tuple based architecture is satisfactory;
- As CIDs are irrelevant to switching, servers choose short CIDs, specifically to enable stateless reset; and
- Clients generally do not take care to pad their small packets

It's hard to predict the future, but if the internet evolves this way we'll have enabled some bad outcomes. I'm disinclined to change the spec at this time, but we should aware of the implications of this evolution if it occurs.

Unless I've gotten someone more concerned than I am, I believe it's OK to close this issue. I'll do so in a couple of days if no one pipes 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/3032#issuecomment-533221421
----==_mimepart_5d83b491808a6_5e6e3f953b4cd96014267f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I guess the embedded assumption is that the following scenario does not become prevalent in the internet:</p>
<ul>
<li>Server infrastructures generally do not support migration, meaning a 4-tuple based architecture is satisfactory;</li>
<li>As CIDs are irrelevant to switching, servers choose short CIDs, specifically to enable stateless reset; and</li>
<li>Clients generally do not take care to pad their small packets</li>
</ul>
<p>It's hard to predict the future, but if the internet evolves this way we'll have enabled some bad outcomes. I'm disinclined to change the spec at this time, but we should aware of the implications of this evolution if it occurs.</p>
<p>Unless I've gotten someone more concerned than I am, I believe it's OK to close this issue. I'll do so in a couple of days if no one pipes 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/3032?email_source=notifications&amp;email_token=AFTOJK4QK7R5GMT3TMNQKVLQKOWBDA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7EFALI#issuecomment-533221421">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3GBRAADSDCXV37GRTQKOWBDANCNFSM4IWUGA6Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4WRXBILP44DKBSN43QKOWBDA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7EFALI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications\u0026email_token=AFTOJK4QK7R5GMT3TMNQKVLQKOWBDA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7EFALI#issuecomment-533221421",
"url": "https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications\u0026email_token=AFTOJK4QK7R5GMT3TMNQKVLQKOWBDA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7EFALI#issuecomment-533221421",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d83b491808a6_5e6e3f953b4cd96014267f--


From nobody Thu Sep 19 10:33: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 EC670120236 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 10:33:16 -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 uEm1_dxlV7By for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 10:33:15 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 20DEA120241 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 10:33:14 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 901A0520145 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 10:33:13 -0700 (PDT)
Date: Thu, 19 Sep 2019 10:33:13 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7DXP4WURWS3HT3WDV3SD6GTEVBNHHB22URPQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3032/533232513@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3032@github.com>
References: <quicwg/base-drafts/issues/3032@github.com>
Subject: Re: [quicwg/base-drafts] Detectable Stateless Resets (#3032)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d83bbd982362_6c523fa8ba6cd96c879c"; 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/XMGpJXbTvJtmU-MjM6ekflgmM-U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 17:33:19 -0000

----==_mimepart_5d83bbd982362_6c523fa8ba6cd96c879c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

That is not a good assumption.

I have redundant servers that respawn should one go down either due to an error, or more likely, a software upgrade. While these are behind load balancers that hide their address, this is not always the case.

Therefore, server migration could be a very real thing. Now, it is not necessarily trivial to pass state to fail-over servers, but it does happen.


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3032#issuecomment-533232513
----==_mimepart_5d83bbd982362_6c523fa8ba6cd96c879c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>That is not a good assumption.</p>
<p>I have redundant servers that respawn should one go down either due to an error, or more likely, a software upgrade. While these are behind load balancers that hide their address, this is not always the case.</p>
<p>Therefore, server migration could be a very real thing. Now, it is not necessarily trivial to pass state to fail-over servers, but it does happen.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications&amp;email_token=AFTOJK3ZKJ3TZYKB6MEMGZ3QKOZVTA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7EHXAI#issuecomment-533232513">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4QRF53P4O4RDKZGQLQKOZVTANCNFSM4IWUGA6Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK42XWPORCHVNHO6XM3QKOZVTA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7EHXAI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications\u0026email_token=AFTOJK3ZKJ3TZYKB6MEMGZ3QKOZVTA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7EHXAI#issuecomment-533232513",
"url": "https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications\u0026email_token=AFTOJK3ZKJ3TZYKB6MEMGZ3QKOZVTA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7EHXAI#issuecomment-533232513",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d83bbd982362_6c523fa8ba6cd96c879c--


From nobody Thu Sep 19 14:30: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 AC79212083A for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 14:30:28 -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 8I7UCvyEMSLf for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 14:30: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 EA400120271 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 14:30:26 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 137FF6E1200 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 14:30:26 -0700 (PDT)
Date: Thu, 19 Sep 2019 14:30:26 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-1200-payloads/000000-f77bd1@github.com>
Subject: [quicwg/base-drafts] f77bd1: Clients send datagrams with 1200 byte payloads
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZEIrtCXr_elZRBHAqCUJlVZmkCY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 21:30:32 -0000

  Branch: refs/heads/ianswett-1200-payloads
  Home:   https://github.com/quicwg/base-drafts
  Commit: f77bd1e5395bbac2bd1fe2ab575f1beac4c8bf32
      https://github.com/quicwg/base-drafts/commit/f77bd1e5395bbac2bd1fe2ab575f1beac4c8bf32
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-19 (Thu, 19 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Clients send datagrams with 1200 byte payloads

I was a bit unsure. I think this is clearer.



From nobody Thu Sep 19 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 28D1E120086 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 14:31: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, HTML_IMAGE_ONLY_24=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 3kVxPtOAUm5O for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 14:31: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 63C1812006A for <quic-issues@ietf.org>; Thu, 19 Sep 2019 14:31:00 -0700 (PDT)
Date: Thu, 19 Sep 2019 14:30:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568928659; bh=l+2f9EIn6gSbdQ8ljnwDv3caj2/P9Ny5xTDY9iFzWy4=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=eQS4vZ2GpcuoNL3r6/wB46BFlWC+ObbEkVrPCMUSGP9UGf9nhC05T/zim1tKT+MpP jCOn03VIKW/oLqm5aDwf3lcL/717l9CqLHdx4Uc2YJ0yxczC+7JrFFOVKbL6aOxhgn mpX2wkZko6yel4kRfA1mAH6XnJGFYUvaX/8nHk7I=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2MX46XPVUSGO3VGTV3SE2CHEVBNHHB3EHJBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3051@github.com>
Subject: [quicwg/base-drafts] Clients send datagrams with 1200 byte payloads (#3051)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d83f393a7d04_550d3ff0642cd96042690"; 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/9JL1BHKxDGhwDARI6W_Aqa8ZqFA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 21:31:02 -0000

----==_mimepart_5d83f393a7d04_550d3ff0642cd96042690
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I was a bit unsure if the text meant 1200 or 1192 byte payloads. I think this is clearer.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3051

-- Commit Summary --

  * Clients send datagrams with 1200 byte payloads

-- File Changes --

    M draft-ietf-quic-transport.md (8)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3051.patch
https://github.com/quicwg/base-drafts/pull/3051.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/3051

----==_mimepart_5d83f393a7d04_550d3ff0642cd96042690
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I was a bit unsure if the text meant 1200 or 1192 byte payloads. I think this is clearer.</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/3051'>https://github.com/quicwg/base-drafts/pull/3051</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Clients send datagrams with 1200 byte payloads</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3051/files#diff-0">draft-ietf-quic-transport.md</a>
    (8)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3051.patch'>https://github.com/quicwg/base-drafts/pull/3051.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3051.diff'>https://github.com/quicwg/base-drafts/pull/3051.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/3051?email_source=notifications&amp;email_token=AFTOJK4LIFHHYLYDCYDJINTQKPVRHA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMQ5EHA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7ZKCOTDCUONCZJBNDQKPVRHANCNFSM4IYQIHGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZEEXKNU5REF7TR5ILQKPVRHA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMQ5EHA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJK4LIFHHYLYDCYDJINTQKPVRHA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMQ5EHA",
"url": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJK4LIFHHYLYDCYDJINTQKPVRHA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMQ5EHA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d83f393a7d04_550d3ff0642cd96042690--


From nobody Thu Sep 19 14:31: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 B111612006A for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 14:31:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 uxgAMY5551sV for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 14:31: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 3B917120086 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 14:31:07 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 4BC071C0302 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 14:31:06 -0700 (PDT)
Date: Thu, 19 Sep 2019 14:31:06 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/49231a-88471a@github.com>
Subject: [quicwg/base-drafts] 88471a: Script updating gh-pages from f77bd1e5. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bC1HT5SiyfakDwuBhthDy-BvF4g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 21:31:09 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 88471adf9e76444a99cb16b596625ba24fd815fb
      https://github.com/quicwg/base-drafts/commit/88471adf9e76444a99cb16b596625ba24fd815fb
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-19 (Thu, 19 Sep 2019)

  Changed paths:
    A ianswett-1200-payloads/draft-ietf-quic-http.html
    A ianswett-1200-payloads/draft-ietf-quic-http.txt
    A ianswett-1200-payloads/draft-ietf-quic-invariants.html
    A ianswett-1200-payloads/draft-ietf-quic-invariants.txt
    A ianswett-1200-payloads/draft-ietf-quic-qpack.html
    A ianswett-1200-payloads/draft-ietf-quic-qpack.txt
    A ianswett-1200-payloads/draft-ietf-quic-recovery.html
    A ianswett-1200-payloads/draft-ietf-quic-recovery.txt
    A ianswett-1200-payloads/draft-ietf-quic-tls.html
    A ianswett-1200-payloads/draft-ietf-quic-tls.txt
    A ianswett-1200-payloads/draft-ietf-quic-transport.html
    A ianswett-1200-payloads/draft-ietf-quic-transport.txt
    A ianswett-1200-payloads/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from f77bd1e5. [ci skip]



From nobody Thu Sep 19 15: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 B1306120251 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 15:05:15 -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 uhpVzWUUuf_a for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 15:05: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 9BEBD120241 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 15:05:14 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id E08D88C049A for <quic-issues@ietf.org>; Thu, 19 Sep 2019 15:05:13 -0700 (PDT)
Date: Thu, 19 Sep 2019 15:05:13 -0700
From: fayang <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3LME3NZMRYFA5AVPN3SE6CTEVBNHHB3EHJBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3051/review/290868188@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3051@github.com>
References: <quicwg/base-drafts/pull/3051@github.com>
Subject: Re: [quicwg/base-drafts] Clients send datagrams with 1200 byte payloads (#3051)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d83fb99d2b82_10d43fd5f36cd960390aa"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: yangfanud
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6i82QZ-PcQNTqz786g7OCS3ahZg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 22:05:16 -0000

----==_mimepart_5d83fb99d2b82_10d43fd5f36cd960390aa
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

yangfanud approved this pull request.

This is much clearer, 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/3051#pullrequestreview-290868188
----==_mimepart_5d83fb99d2b82_10d43fd5f36cd960390aa
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@yangfanud</b> approved this pull request.</p>

<p>This is much clearer, 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/3051?email_source=notifications&amp;email_token=AFTOJK557UP3NN6GBQRGYFTQKPZRTA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLEXXA#pullrequestreview-290868188">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4BYZDOD7ERIRNSW43QKPZRTANCNFSM4IYQIHGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK33NMXSBT4LEWRO6YTQKPZRTA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLEXXA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJK557UP3NN6GBQRGYFTQKPZRTA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLEXXA#pullrequestreview-290868188",
"url": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJK557UP3NN6GBQRGYFTQKPZRTA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLEXXA#pullrequestreview-290868188",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d83fb99d2b82_10d43fd5f36cd960390aa--


From nobody Thu Sep 19 15:09: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 05FC912025D for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 15:09: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 Vh3vuXnfkMCA for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 15:09: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 A84C5120043 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 15:09:39 -0700 (PDT)
Date: Thu, 19 Sep 2019 15:09:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568930978; bh=N/kwrSvrz9eKkesJAQgCUtyjoI2up7n1ICQ75EUFf8A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hJ2Aud9JMmTjZTweCx5peOnyOSjcfK0bxALXMeiBXRGuIoFSjzXyAvrzx2pEPrGAB rlDnNqKldOU8xVbUxLU53etc2J5LOyCbNsNuEmTdo91DNA5SI4Nywvpwx56/5t+P07 N3PXx5z81tEU4DCTLB/9f/4QSDrIYTY/Q4ID/8Ko=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK72YO63CIGSUZEYLX53SE6TFEVBNHHB3EHJBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3051/c533327645@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3051@github.com>
References: <quicwg/base-drafts/pull/3051@github.com>
Subject: Re: [quicwg/base-drafts] Clients send datagrams with 1200 byte payloads (#3051)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d83fca2dd783_35433f96e18cd96417980"; 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/l_4jR0yR9o5rQINGsJ_X7SxI58s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 22:09:41 -0000

----==_mimepart_5d83fca2dd783_35433f96e18cd96417980
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Not directly related to the change which is editorial, but why is it that 1200 only applies to Initial? Isn't it possible to coalesce Initial with random other packets and thereby work around this limit?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3051#issuecomment-533327645
----==_mimepart_5d83fca2dd783_35433f96e18cd96417980
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Not directly related to the change which is editorial, but why is it that 1200 only applies to Initial? Isn't it possible to coalesce Initial with random other packets and thereby work around this limit?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications&amp;email_token=AFTOJK3JEVDQWZUJUORJ6GLQKP2CFA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7E66HI#issuecomment-533327645">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYQYD4XJWF66OSMY73QKP2CFANCNFSM4IYQIHGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZI37VHGK4H43VKLA3QKP2CFA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7E66HI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJK3JEVDQWZUJUORJ6GLQKP2CFA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7E66HI#issuecomment-533327645",
"url": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJK3JEVDQWZUJUORJ6GLQKP2CFA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7E66HI#issuecomment-533327645",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d83fca2dd783_35433f96e18cd96417980--


From nobody Thu Sep 19 15:10: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 C106F120251 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 15:10: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 EG6qGhdPYysS for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 15:10:01 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0B08B1200C5 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 15:10:01 -0700 (PDT)
Date: Thu, 19 Sep 2019 15:10:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568931000; bh=ngkhmmJSP//diZLes5CIQtkRJ473RohMUUs3w6iJ7aU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cQv/QpLahAbozRTYH0b3B1eobT4C1MkuJL9vvzWMLWw/NCe+JLSdY9Uc2wFJFLXT4 hpjKaYxAw5xWXF3h3pw5sXxBaKIomLnQltR8mlfn//yMHn8E28HqaYisUvR3IiMATJ qL3m2FZt5XFf2ecsihm7bBLkWHH46pBefrcrqNxQ=
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY6YYGNRD4JJK675IV3SE6UREVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/review/290869877@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d83fcb85d951_3f4d3fc5174cd968374f7"; 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/3cgevB7ooFj0SZ7gX5bJ5FeF414>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 22:10:03 -0000

----==_mimepart_5d83fcb85d951_3f4d3fc5174cd968374f7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

chris-wood commented on this pull request.



> -cryptographic handshake message, which for TLS is the ClientHello.  Though a
-packet larger than 1200 bytes might be supported by the path, a client improves
-the likelihood that a packet is accepted if it ensures that the first
-ClientHello message is small enough to stay within this limit.
+The first Initial packet from a client starts with its first cryptographic
+handshake message, which for TLS is the ClientHello.  Servers might need to
+parse the entire ClientHello (e.g., to access extensions such as Server Name
+Identification (SNI) or Application Layer Protocol Negotiation (ALPN)) in order
+to decide whether to accept the new incoming QUIC connection.  If the
+ClientHello spans multiple Initial packets, such servers would need to buffer
+the first received fragments, which could consume excessive resources if the
+client's address has not yet been validated.  To avoid this, servers MAY use
+the Retry feature (see Section 8.1 of {{QUIC-TRANSPORT}}) to only buffer
+partial ClientHellos from clients with a validated address.  Though a packet
+larger than 1200 bytes might be supported by the path, a client improves the
+likelihood that a packet is accepted if it ensures that the first ClientHello

Related to "as acceptable as possible," should we try to recommend a minimum bound on fragments? (I'm reminded of data dribble, even though that's a different problem entirely.)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3045#discussion_r326404096
----==_mimepart_5d83fcb85d951_3f4d3fc5174cd968374f7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@chris-wood</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3045#discussion_r326404096">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; -cryptographic handshake message, which for TLS is the ClientHello.  Though a
-packet larger than 1200 bytes might be supported by the path, a client improves
-the likelihood that a packet is accepted if it ensures that the first
-ClientHello message is small enough to stay within this limit.
+The first Initial packet from a client starts with its first cryptographic
+handshake message, which for TLS is the ClientHello.  Servers might need to
+parse the entire ClientHello (e.g., to access extensions such as Server Name
+Identification (SNI) or Application Layer Protocol Negotiation (ALPN)) in order
+to decide whether to accept the new incoming QUIC connection.  If the
+ClientHello spans multiple Initial packets, such servers would need to buffer
+the first received fragments, which could consume excessive resources if the
+client&#39;s address has not yet been validated.  To avoid this, servers MAY use
+the Retry feature (see Section 8.1 of {{QUIC-TRANSPORT}}) to only buffer
+partial ClientHellos from clients with a validated address.  Though a packet
+larger than 1200 bytes might be supported by the path, a client improves the
+likelihood that a packet is accepted if it ensures that the first ClientHello
</pre>
<p>Related to "as acceptable as possible," should we try to recommend a minimum bound on fragments? (I'm reminded of data dribble, even though that's a different problem entirely.)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications&amp;email_token=AFTOJK2NN5A7H6E7G6ZZ45TQKP2DRA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLFE5I#discussion_r326404096">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2JCPKWJV7FB7DWGSTQKP2DRANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYNF6TGJVUKFK633L3QKP2DRA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLFE5I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK2NN5A7H6E7G6ZZ45TQKP2DRA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLFE5I#discussion_r326404096",
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK2NN5A7H6E7G6ZZ45TQKP2DRA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLFE5I#discussion_r326404096",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d83fcb85d951_3f4d3fc5174cd968374f7--


From nobody Thu Sep 19 15:15: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 AB0EC1207FE for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 15:15:23 -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 G0LAG7e_GIZC for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 15:15:21 -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 85A6F120834 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 15:15:21 -0700 (PDT)
Date: Thu, 19 Sep 2019 15:15:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568931320; bh=MZQrIX9A8AqXWckU6K1ygeoAwuMJDDQTEsvvbu7If+g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pVfNn26f8SOzpFF8aH7sG6RsYtI7R96y4rmbDbpIwkfcC2Rw09vUkikmR3GM0Tbwv nzNtxYLPbhRW7RZJbGU4Tm5UlAnTFFYbT8JPBjG1KZT8J2N7NxZKkI/jiNhG/hZrvJ J++BQPOtip5f+cgKF7T/pKNfjtg/EJduhqWObPp0=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYS7DLTL4U2MHH2S6N3SE7IREVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/review/290871658@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d83fdf8a73ed_8b43fe832ecd95c107480"; 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/gNkqupYexn3Rs2lASwoHXbfjaKI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 22:15:28 -0000

----==_mimepart_5d83fdf8a73ed_8b43fe832ecd95c107480
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mikkelfj commented on this pull request.



> -cryptographic handshake message, which for TLS is the ClientHello.  Though a
-packet larger than 1200 bytes might be supported by the path, a client improves
-the likelihood that a packet is accepted if it ensures that the first
-ClientHello message is small enough to stay within this limit.
+The first Initial packet from a client starts with its first cryptographic
+handshake message, which for TLS is the ClientHello.  Servers might need to
+parse the entire ClientHello (e.g., to access extensions such as Server Name
+Identification (SNI) or Application Layer Protocol Negotiation (ALPN)) in order
+to decide whether to accept the new incoming QUIC connection.  If the
+ClientHello spans multiple Initial packets, such servers would need to buffer
+the first received fragments, which could consume excessive resources if the
+client's address has not yet been validated.  To avoid this, servers MAY use
+the Retry feature (see Section 8.1 of {{QUIC-TRANSPORT}}) to only buffer
+partial ClientHellos from clients with a validated address.  Though a packet
+larger than 1200 bytes might be supported by the path, a client improves the
+likelihood that a packet is accepted if it ensures that the first ClientHello

If this multiple packet initial thing lands, at least we should limit the packet count / time to arrival or provide guidance. Dribble (slow loris) can happen in fragments or just in many very small complete packets over a very long time.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3045#discussion_r326405445
----==_mimepart_5d83fdf8a73ed_8b43fe832ecd95c107480
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/3045#discussion_r326405445">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; -cryptographic handshake message, which for TLS is the ClientHello.  Though a
-packet larger than 1200 bytes might be supported by the path, a client improves
-the likelihood that a packet is accepted if it ensures that the first
-ClientHello message is small enough to stay within this limit.
+The first Initial packet from a client starts with its first cryptographic
+handshake message, which for TLS is the ClientHello.  Servers might need to
+parse the entire ClientHello (e.g., to access extensions such as Server Name
+Identification (SNI) or Application Layer Protocol Negotiation (ALPN)) in order
+to decide whether to accept the new incoming QUIC connection.  If the
+ClientHello spans multiple Initial packets, such servers would need to buffer
+the first received fragments, which could consume excessive resources if the
+client&#39;s address has not yet been validated.  To avoid this, servers MAY use
+the Retry feature (see Section 8.1 of {{QUIC-TRANSPORT}}) to only buffer
+partial ClientHellos from clients with a validated address.  Though a packet
+larger than 1200 bytes might be supported by the path, a client improves the
+likelihood that a packet is accepted if it ensures that the first ClientHello
</pre>
<p>If this multiple packet initial thing lands, at least we should limit the packet count / time to arrival or provide guidance. Dribble (slow loris) can happen in fragments or just in many very small complete packets over a very long 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/pull/3045?email_source=notifications&amp;email_token=AFTOJK7MTEZRZBU642FY6ITQKP2XRA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLFS2Q#discussion_r326405445">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7QCME5I4YBZ6RFN53QKP2XRANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY4I2TG3JTJOW64VELQKP2XRA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLFS2Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK7MTEZRZBU642FY6ITQKP2XRA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLFS2Q#discussion_r326405445",
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK7MTEZRZBU642FY6ITQKP2XRA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLFS2Q#discussion_r326405445",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d83fdf8a73ed_8b43fe832ecd95c107480--


From nobody Thu Sep 19 15: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 C5FD8120052 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 15:24:56 -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 q6X7tDDBvys0 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 15:24: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 73B14120043 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 15:24:55 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id A64FB520990 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 15:24:54 -0700 (PDT)
Date: Thu, 19 Sep 2019 15:24:54 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7FQXUYOLJGJCHBQOF3SFAMNEVBNHHB22URPQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3032/533331525@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3032@github.com>
References: <quicwg/base-drafts/issues/3032@github.com>
Subject: Re: [quicwg/base-drafts] Detectable Stateless Resets (#3032)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d840036978f8_15513f82122cd96c10467"; 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/Mq7agkiFD1__RdEk8aeXf8rVyhk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 22:24:57 -0000

----==_mimepart_5d840036978f8_15513f82122cd96c10467
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm not talking about server migration, I"m talking about server support for client 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/3032#issuecomment-533331525
----==_mimepart_5d840036978f8_15513f82122cd96c10467
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'm not talking about server migration, I"m talking about server support for client 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/3032?email_source=notifications&amp;email_token=AFTOJK3OLULEUFSTFGRCGI3QKP33NA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7E74RI#issuecomment-533331525">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYKEP4KU4RFWUMKILTQKP33NANCNFSM4IWUGA6Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK35DQISSGU2HWBQ6WTQKP33NA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7E74RI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications\u0026email_token=AFTOJK3OLULEUFSTFGRCGI3QKP33NA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7E74RI#issuecomment-533331525",
"url": "https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications\u0026email_token=AFTOJK3OLULEUFSTFGRCGI3QKP33NA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7E74RI#issuecomment-533331525",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d840036978f8_15513f82122cd96c10467--


From nobody Thu Sep 19 15:48: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 3F445120046 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 15:48:43 -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 Bt8PBhZy0BUa for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 15:48:41 -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 CF06B120043 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 15:48:40 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id A4E361C0C9D for <quic-issues@ietf.org>; Thu, 19 Sep 2019 15:48:39 -0700 (PDT)
Date: Thu, 19 Sep 2019 15:48:39 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2AKFQ7ZSJNKKDPUC53SFDFPEVBNHHB3EHJBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3051/c533336970@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3051@github.com>
References: <quicwg/base-drafts/pull/3051@github.com>
Subject: Re: [quicwg/base-drafts] Clients send datagrams with 1200 byte payloads (#3051)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8405c795fdb_14313f9bac8cd96c110525"; 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/-PebOCUrr0ozaz2n2yJSDh_RBl0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 22:48:43 -0000

----==_mimepart_5d8405c795fdb_14313f9bac8cd96c110525
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mikkelfj I agree that the wording currently implies if a client bundles a 0-RTT packet with an Initial in a datagram, then it's ok for it to be less than 1200 bytes, which I don't believe is what we want?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3051#issuecomment-533336970
----==_mimepart_5d8405c795fdb_14313f9bac8cd96c110525
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> I agree that the wording currently implies if a client bundles a 0-RTT packet with an Initial in a datagram, then it's ok for it to be less than 1200 bytes, which I don't believe is what we want?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications&amp;email_token=AFTOJK3UUHUZIO66ISFSUOTQKP6UPA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7FBHCQ#issuecomment-533336970">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4I6BLJNSOLKHCZDKDQKP6UPANCNFSM4IYQIHGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4MJ3IAS3WRETBLMWLQKP6UPA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7FBHCQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJK3UUHUZIO66ISFSUOTQKP6UPA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7FBHCQ#issuecomment-533336970",
"url": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJK3UUHUZIO66ISFSUOTQKP6UPA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7FBHCQ#issuecomment-533336970",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8405c795fdb_14313f9bac8cd96c110525--


From nobody Thu Sep 19 16: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 19C12120059 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 16:32: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, HTML_IMAGE_ONLY_24=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 fNcHtyy_tJjp for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 16:32:09 -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 6BB0E120043 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 16:32:09 -0700 (PDT)
Date: Thu, 19 Sep 2019 16:32:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568935928; bh=SCqRmLs1YTdnZrTdIwrn8ryplo+GnRCizSNfDktahkc=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=IyhEBOVwcMfeZEIMC0y3Li6pe4t0xURBKgH+6ArRew3vBR2hwwhvzYpnTklOP/Oif 9jySQypjfG6YTL3xqpVEjz3wgdw+Z8q8JyVyeFJtr+EnbNWu3pO2kSciCigoZBSGB3 UZayQmPswLgRvKHUI3GZAGCb4P9hTVV3a09v380k=
From: Junho Choi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7MKBCWP4G27RRTP353SFIIREVBNHHB3ELURU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3052@github.com>
Subject: [quicwg/base-drafts] Fix typo (#3052)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d840ff87e045_50b73fc17a4cd968738a0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: junhochoi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SFASS7C_Jo0h1KKSdbk8N_mIA6k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 23:32:12 -0000

----==_mimepart_5d840ff87e045_50b73fc17a4cd968738a0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

eck-eliciting -&gt; ack-eliciting
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3052

-- Commit Summary --

  * Fix typo

-- File Changes --

    M draft-ietf-quic-recovery.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3052.patch
https://github.com/quicwg/base-drafts/pull/3052.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/3052

----==_mimepart_5d840ff87e045_50b73fc17a4cd968738a0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>eck-eliciting -&gt; ack-eliciting</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/3052'>https://github.com/quicwg/base-drafts/pull/3052</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/3052/files#diff-0">draft-ietf-quic-recovery.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3052.patch'>https://github.com/quicwg/base-drafts/pull/3052.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3052.diff'>https://github.com/quicwg/base-drafts/pull/3052.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/3052?email_source=notifications&amp;email_token=AFTOJKYNOKSQN4FWH62WJVTQKQDXRA5CNFSM4IYRBJA2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMROSGQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYSNFIJQV7HCXZCHEDQKQDXRANCNFSM4IYRBJAQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6GJUO2BZEMIKC6GD3QKQDXRA5CNFSM4IYRBJA2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMROSGQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3052?email_source=notifications\u0026email_token=AFTOJKYNOKSQN4FWH62WJVTQKQDXRA5CNFSM4IYRBJA2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMROSGQ",
"url": "https://github.com/quicwg/base-drafts/pull/3052?email_source=notifications\u0026email_token=AFTOJKYNOKSQN4FWH62WJVTQKQDXRA5CNFSM4IYRBJA2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMROSGQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d840ff87e045_50b73fc17a4cd968738a0--


From nobody Thu Sep 19 16: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 498951200C7 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 16:49:08 -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 unPkjdrz4P0T for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 16:49:06 -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 E161A1200C5 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 16:49:06 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 66A49260110 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 16:49:06 -0700 (PDT)
Date: Thu, 19 Sep 2019 16:49:06 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/888f86-c524a5@github.com>
Subject: [quicwg/base-drafts] be8958: 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/hADfD4YEN3hODbhI9qkrEFw5Wy0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 23:49:08 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: be8958419a0e132673ccd818288a51b9aa6d68ae
      https://github.com/quicwg/base-drafts/commit/be8958419a0e132673ccd818288a51b9aa6d68ae
  Author: Junho Choi <junho@cloudflare.com>
  Date:   2019-09-19 (Thu, 19 Sep 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Fix typo


  Commit: c524a55ed4e1740d84556dde00a768d4c7c61ae8
      https://github.com/quicwg/base-drafts/commit/c524a55ed4e1740d84556dde00a768d4c7c61ae8
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2019-09-19 (Thu, 19 Sep 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3052 from junhochoi/junho/typo-in-recovery

Fix typo


Compare: https://github.com/quicwg/base-drafts/compare/888f86fdff35...c524a55ed4e1


From nobody Thu Sep 19 16:49: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 7C3DC1200C7 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 16:49: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 MebFTt0TaVc5 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 16:49:15 -0700 (PDT)
Received: from out-12.smtp.github.com (out-12.smtp.github.com [192.30.254.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1132B120052 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 16:49:15 -0700 (PDT)
Date: Thu, 19 Sep 2019 16:49:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568936954; bh=j+5HH80Fx8UKXmBTMANYZUCVYHVcn2ULgT3p1zeD27M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HPEKcwIYUN4Vrijpzxjc+1Gj2SsmARxp+CVK9a7+9SxvAFEQcF7Fye8KW+0blY6WL 2DFuTZYunYehPvBQRRkUAsS3b3W/7BkSTEYT3/RpFm2SMhqIsEs7DWBYwdwNxYsnqw qXltqn6oxNVgD2vPUuqYdEFBPBFWDlKGUdO2apvI=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZRGMUWJGSVDITQPV53SFKIVEVBNHHB3ELURU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3052/issue_event/2648710287@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3052@github.com>
References: <quicwg/base-drafts/pull/3052@github.com>
Subject: Re: [quicwg/base-drafts] Fix typo (#3052)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8413fa5049f_60763f8f440cd95c43422"; 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/V7eCcwcC-NTvorES9QexRbkgOM0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 23:49:17 -0000

----==_mimepart_5d8413fa5049f_60763f8f440cd95c43422
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3052 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/3052#event-2648710287
----==_mimepart_5d8413fa5049f_60763f8f440cd95c43422
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="496071821" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3052" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3052/hovercard" href="https://github.com/quicwg/base-drafts/pull/3052">#3052</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/3052?email_source=notifications&amp;email_token=AFTOJK2EDDIWMTCBFI36VQ3QKQFXVA5CNFSM4IYRBJA2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTXQBZDY#event-2648710287">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK62IP2D7AHFKTDVZKLQKQFXVANCNFSM4IYRBJAQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6ZRRIT7ZHVEDZ65UTQKQFXVA5CNFSM4IYRBJA2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTXQBZDY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3052?email_source=notifications\u0026email_token=AFTOJK2EDDIWMTCBFI36VQ3QKQFXVA5CNFSM4IYRBJA2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTXQBZDY#event-2648710287",
"url": "https://github.com/quicwg/base-drafts/pull/3052?email_source=notifications\u0026email_token=AFTOJK2EDDIWMTCBFI36VQ3QKQFXVA5CNFSM4IYRBJA2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTXQBZDY#event-2648710287",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8413fa5049f_60763f8f440cd95c43422--


From nobody Thu Sep 19 16:49: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 6D03B1200C5 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 16:49:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 LqJ_SqUsU2kM for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 16:49:53 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1D5E5120052 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 16:49:53 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 548801C0CE5 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 16:49:52 -0700 (PDT)
Date: Thu, 19 Sep 2019 16:49:52 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/88471a-b3d5d4@github.com>
Subject: [quicwg/base-drafts] b3d5d4: Script updating gh-pages from c524a55e. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/L58BadMv60nBwerecjHycJTg2KA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 19 Sep 2019 23:49:54 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: b3d5d41373d79b8460c75d8a5adb3fcbab110f2b
      https://github.com/quicwg/base-drafts/commit/b3d5d41373d79b8460c75d8a5adb3fcbab110f2b
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-19 (Thu, 19 Sep 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 c524a55e. [ci skip]



From nobody Thu Sep 19 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 22F2E1200C3 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 17:13:30 -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 04qjWvrb9Gy6 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 17:13: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 A7293120043 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 17:13:28 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id BD83A6A054E for <quic-issues@ietf.org>; Thu, 19 Sep 2019 17:13:27 -0700 (PDT)
Date: Thu, 19 Sep 2019 17:13:27 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZQGFKOMAKDTNDTVRF3SFGCPEVBNHHB3EHJBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3051/review/290903005@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3051@github.com>
References: <quicwg/base-drafts/pull/3051@github.com>
Subject: Re: [quicwg/base-drafts] Clients send datagrams with 1200 byte payloads (#3051)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8419a7ae96e_1ffd3fd14eccd968200bc"; 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/qa0MqvABjF1QhsKebVQbkd289aE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 00:13:30 -0000

----==_mimepart_5d8419a7ae96e_1ffd3fd14eccd968200bc
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/3051#pullrequestreview-290903005
----==_mimepart_5d8419a7ae96e_1ffd3fd14eccd968200bc
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/3051?email_source=notifications&amp;email_token=AFTOJKY3NPRSXQNUUIMEUU3QKQISPA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLNHXI#pullrequestreview-290903005">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYZJPCSJVSOLADQJ7TQKQISPANCNFSM4IYQIHGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6FWIFDIAH2ZUAV2GTQKQISPA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLNHXI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJKY3NPRSXQNUUIMEUU3QKQISPA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLNHXI#pullrequestreview-290903005",
"url": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJKY3NPRSXQNUUIMEUU3QKQISPA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLNHXI#pullrequestreview-290903005",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8419a7ae96e_1ffd3fd14eccd968200bc--


From nobody Thu Sep 19 17:17: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 76C5812008F for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 17:17:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.352
X-Spam-Level: 
X-Spam-Status: No, score=-6.352 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, 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 Z7MMzMMSEy4X for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 17:17: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 A2BFF120043 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 17:17:13 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id DA3FA2C0E3E for <quic-issues@ietf.org>; Thu, 19 Sep 2019 17:17:12 -0700 (PDT)
Date: Thu, 19 Sep 2019 17:17:12 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4PQNW5E464W7BUU453SFGQREVBNHHB3EM4KU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3053@github.com>
Subject: [quicwg/base-drafts] Padding requirement seems to be incorrect. (#3053)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d841a88cb4c2_69ef3fe1c04cd95c3247c"; 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/uVS8TijDYCsO3sHH-DxblIvSDEg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 00:17:15 -0000

----==_mimepart_5d841a88cb4c2_69ef3fe1c04cd95c3247c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

At the moment, [section 8.1](https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#rfc.section.8.1) states, quote: "_Clients MUST ensure that UDP datagrams containing **only** Initial packets are sized to at least 1200 bytes, adding padding to packets in the datagram as necessary._"

I think this is incorrect and that "only" should be dropped, as it excludes a UDP datagram that contains an Initial and a 0-RTT 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/3053
----==_mimepart_5d841a88cb4c2_69ef3fe1c04cd95c3247c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>At the moment, <a href="https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#rfc.section.8.1" rel="nofollow">section 8.1</a> states, quote: "<em>Clients MUST ensure that UDP datagrams containing <strong>only</strong> Initial packets are sized to at least 1200 bytes, adding padding to packets in the datagram as necessary.</em>"</p>
<p>I think this is incorrect and that "only" should be dropped, as it excludes a UDP datagram that contains an Initial and a 0-RTT 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/3053?email_source=notifications&amp;email_token=AFTOJKZX45ZUJ3KELARNEN3QKQJARA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMRTRKQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK45T7UJ7JGRLEJPMX3QKQJARANCNFSM4IYRI3TA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3ENUCFXY4Z5QX5L33QKQJARA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMRTRKQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJKZX45ZUJ3KELARNEN3QKQJARA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMRTRKQ",
"url": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJKZX45ZUJ3KELARNEN3QKQJARA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMRTRKQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d841a88cb4c2_69ef3fe1c04cd95c3247c--


From nobody Thu Sep 19 17:19: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 B33D91200C3 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 17:19:54 -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 NdScRdcyhZ8C for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 17:19:53 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5931D120043 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 17:19:53 -0700 (PDT)
Date: Thu, 19 Sep 2019 17:19:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568938792; bh=twtqssUWD2KmxOUk1pB8/+C/osxCe0GKJ827vUMaTI0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Kt59Ti3RtkBHKJ3l8YJ3ZJaLb8+5u/UeZDN+SNUxuKUWxw44RrD0wtSTU0OKJgq6D 4eB4Ub/PtvyxntJmbg/bomtzIUb02ziICI2Uvm1XHW9BpdgKqhB5KJDkEeSjwD958F rXd+BVDvE3KL4l5H028BbJNMrntFBN6qbHVlVQWA=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7WU6G37WCLJRBYG653SFG2REVBNHHB3EHJBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3051/c533355297@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3051@github.com>
References: <quicwg/base-drafts/pull/3051@github.com>
Subject: Re: [quicwg/base-drafts] Clients send datagrams with 1200 byte payloads (#3051)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d841b285df94_2b523fdcca6cd96443780"; 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/3cAt3oyvZNd3KoqCiC-pW7SHteM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 00:19:55 -0000

----==_mimepart_5d841b285df94_2b523fdcca6cd96443780
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mikkelfj @ianswett I agree with the concern, and have opened #3053 (before reading your comments here). I think this PR can be kept an editorial issue while #3053 needs to be a design issue.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3051#issuecomment-533355297
----==_mimepart_5d841b285df94_2b523fdcca6cd96443780
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=3D193335" data-octo-click=3D"hovercard-link-cl=
ick" data-octo-dimensions=3D"link_type:self" href=3D"https://github.com/m=
ikkelfj">@mikkelfj</a> <a class=3D"user-mention" data-hovercard-type=3D"u=
ser" data-hovercard-url=3D"/hovercards?user_id=3D20072817" data-octo-clic=
k=3D"hovercard-link-click" data-octo-dimensions=3D"link_type:self" href=3D=
"https://github.com/ianswett">@ianswett</a> I agree with the concern, and=
 have opened <a class=3D"issue-link js-issue-link" data-error-text=3D"Fai=
led to load issue title" data-id=3D"496082005" data-permission-text=3D"Is=
sue title is private" data-url=3D"https://github.com/quicwg/base-drafts/i=
ssues/3053" data-hovercard-type=3D"issue" data-hovercard-url=3D"/quicwg/b=
ase-drafts/issues/3053/hovercard" href=3D"https://github.com/quicwg/base-=
drafts/issues/3053">#3053</a> (before reading your comments here). I thin=
k this PR can be kept an editorial issue while <a class=3D"issue-link js-=
issue-link" data-error-text=3D"Failed to load issue title" data-id=3D"496=
082005" data-permission-text=3D"Issue title is private" data-url=3D"https=
://github.com/quicwg/base-drafts/issues/3053" data-hovercard-type=3D"issu=
e" data-hovercard-url=3D"/quicwg/base-drafts/issues/3053/hovercard" href=3D=
"https://github.com/quicwg/base-drafts/issues/3053">#3053</a> needs to be=
 a design issue.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3051?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK5YG3CHZFJPHUYQ5W3QKQJKRA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFVREXG43VMV=
BW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7FFWII#issuecomment-533355297">view it on =
GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-au=
th/AFTOJKYK25GGB3B2SG5DZP3QKQJKRANCNFSM4IYQIHGQ">mute the thread</a>.<img=
 src=3D"https://github.com/notifications/beacon/AFTOJKZYBCSPCFQZ7COZTSTQK=
QJKRA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOOR=
PWSZGOD7FFWII.gif" height=3D"1" width=3D"1" alt=3D"" /></p>
<script type=3D"application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3051?email_source=3D=
notifications\u0026email_token=3DAFTOJK5YG3CHZFJPHUYQ5W3QKQJKRA5CNFSM4IYQ=
IHG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7FFWII#i=
ssuecomment-533355297",
"url": "https://github.com/quicwg/base-drafts/pull/3051?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK5YG3CHZFJPHUYQ5W3QKQJKRA5CNFSM4IYQIH=
G2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7FFWII#iss=
uecomment-533355297",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>=

----==_mimepart_5d841b285df94_2b523fdcca6cd96443780--


From nobody Thu Sep 19 18:55: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 3593E1200B1 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 18:55: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 4t6IH3243utQ for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 18:55: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 8A1EA1200C5 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 18:55:04 -0700 (PDT)
Date: Thu, 19 Sep 2019 18:55:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568944503; bh=tI1Y5+5MhjnqIGrPhGmBIpk+eALzfglwU5eItrdBYSI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SQ/fwwSm4BZw7EIzMgGDsGJWnM8d+8GHog8c0FHJGj++rhKJK5PwL4BIXxQL/Q0vl 3OVfHpnBFulRNGCxJjCL6jts2CzpTt6XtjK2BsRQgs8yVSz1Oddh2RoC0KDlqXOSb8 9h34RRgf8xTlt7Yid1xnPxYClqB5HQuXqT795BS0=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYWXAOM4D45O4KK2E53SFR7PEVBNHHB3EHJBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3051/review/290922078@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3051@github.com>
References: <quicwg/base-drafts/pull/3051@github.com>
Subject: Re: [quicwg/base-drafts] Clients send datagrams with 1200 byte payloads (#3051)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d843177b9e89_574f3fee46ccd96c40468"; 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/xTyGCXE1gItDVhloDEGOOQXDdA0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 01:55:06 -0000

----==_mimepart_5d843177b9e89_574f3fee46ccd96c40468
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/3051#pullrequestreview-290922078
----==_mimepart_5d843177b9e89_574f3fee46ccd96c40468
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/3051?email_source=notifications&amp;email_token=AFTOJK7M7EQQPNCQYG5766TQKQUPPA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLR4XQ#pullrequestreview-290922078">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3TCEZTCBPXNCCEJOTQKQUPPANCNFSM4IYQIHGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK34RKVMKIC5XON7YODQKQUPPA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLR4XQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJK7M7EQQPNCQYG5766TQKQUPPA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLR4XQ#pullrequestreview-290922078",
"url": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJK7M7EQQPNCQYG5766TQKQUPPA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLR4XQ#pullrequestreview-290922078",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d843177b9e89_574f3fee46ccd96c40468--


From nobody Thu Sep 19 19: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 0354C120052 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 19:06:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 02f98GFZ6nuv for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 19:06: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 547E512004A for <quic-issues@ietf.org>; Thu, 19 Sep 2019 19:06:32 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id AD6056A00EC for <quic-issues@ietf.org>; Thu, 19 Sep 2019 19:06:31 -0700 (PDT)
Date: Thu, 19 Sep 2019 19:06:31 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7DBCVXNCINOLNC35F3SFTKPEVBNHHB3EHJBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3051/review/290924150@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3051@github.com>
References: <quicwg/base-drafts/pull/3051@github.com>
Subject: Re: [quicwg/base-drafts] Clients send datagrams with 1200 byte payloads (#3051)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8434279daa6_6af63fef78acd968908fa"; 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/5ExKX6lKcYQ_GNPyprxi213euKk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 02:06:34 -0000

----==_mimepart_5d8434279daa6_6af63fef78acd968908fa
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

marten-seemann requested changes on this pull request.



> @@ -1592,10 +1592,10 @@ magnitude of any amplification attack that can be mounted using spoofed source
 addresses.  In determining this limit, servers only count the size of
 successfully processed packets.
 
-Clients MUST ensure that UDP datagrams containing only Initial packets are sized
-to at least 1200 bytes, adding padding to packets in the datagram as necessary.
-Sending padded datagrams ensures that the server is not overly constrained by
-the amplification restriction.
+Clients MUST ensure that UDP datagrams containing only Initial packets have
+payloads of at least 1200 bytes, adding padding to packets in the datagram as

I think this is less clear than it was before. There's a UDP payload and a QUIC payload, and it's not clear that you're referring to the UDP payload size 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/3051#pullrequestreview-290924150
----==_mimepart_5d8434279daa6_6af63fef78acd968908fa
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@marten-seemann</b> requested changes on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3051#discussion_r326447416">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1592,10 +1592,10 @@ magnitude of any amplification attack that can be mounted using spoofed source
 addresses.  In determining this limit, servers only count the size of
 successfully processed packets.
 
-Clients MUST ensure that UDP datagrams containing only Initial packets are sized
-to at least 1200 bytes, adding padding to packets in the datagram as necessary.
-Sending padded datagrams ensures that the server is not overly constrained by
-the amplification restriction.
+Clients MUST ensure that UDP datagrams containing only Initial packets have
+payloads of at least 1200 bytes, adding padding to packets in the datagram as
</pre>
<p>I think this is less clear than it was before. There's a UDP payload and a QUIC payload, and it's not clear that you're referring to the UDP payload size 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/3051?email_source=notifications&amp;email_token=AFTOJK6CEEFBT5U7KRO5HVDQKQV2PA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLSM5Q#pullrequestreview-290924150">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZCEFW6MQQURKHUUV3QKQV2PANCNFSM4IYQIHGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4JKOON5GFJBXR4MV3QKQV2PA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLSM5Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJK6CEEFBT5U7KRO5HVDQKQV2PA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLSM5Q#pullrequestreview-290924150",
"url": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJK6CEEFBT5U7KRO5HVDQKQV2PA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFLSM5Q#pullrequestreview-290924150",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8434279daa6_6af63fef78acd968908fa--


From nobody Thu Sep 19 22:58: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 10958120026 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 22:58:54 -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 gNsO_6nw4B-9 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 22:58: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 5806912006E for <quic-issues@ietf.org>; Thu, 19 Sep 2019 22:58:51 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 65A49660449 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 22:58:50 -0700 (PDT)
Date: Thu, 19 Sep 2019 22:58:50 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYJMYHJRKOO6WBIK2V3SGORVEVBNHHB22URPQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3032/533418428@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3032@github.com>
References: <quicwg/base-drafts/issues/3032@github.com>
Subject: Re: [quicwg/base-drafts] Detectable Stateless Resets (#3032)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d846a9a574ba_40dc3fdc330cd95c71447"; 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/nHBnQq7HLFqhyGxk7bZSDotu25k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 05:58:54 -0000

----==_mimepart_5d846a9a574ba_40dc3fdc330cd95c71447
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke I think your nightmare scenario is very unlikely, as it requires the three bullets you mentioned, but also depends on the size of client connection IDs. I think we can assume that:

- most browsers will use zero-length client connection IDs
- most servers will use non-zero-length server connection IDs

At that point it's extremely unlikely that NAT/firewall manufacturers will build the "remove port mapping when you observe a 20-byte packet" feature for a minority of traffic, it's not like there's an overwhelming amount of innovation in this space...

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3032#issuecomment-533418428
----==_mimepart_5d846a9a574ba_40dc3fdc330cd95c71447
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 think your nightmare scenario is very unlikely, as it requires the three bullets you mentioned, but also depends on the size of client connection IDs. I think we can assume that:</p>
<ul>
<li>most browsers will use zero-length client connection IDs</li>
<li>most servers will use non-zero-length server connection IDs</li>
</ul>
<p>At that point it's extremely unlikely that NAT/firewall manufacturers will build the "remove port mapping when you observe a 20-byte packet" feature for a minority of traffic, it's not like there's an overwhelming amount of innovation in this space...</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications&amp;email_token=AFTOJK27W4VROQUM5JFSFYDQKRRBVA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7FVDPA#issuecomment-533418428">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3EYVNBF2UTPIHI4STQKRRBVANCNFSM4IWUGA6Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK65FEFWMBA22CBTLLLQKRRBVA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7FVDPA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications\u0026email_token=AFTOJK27W4VROQUM5JFSFYDQKRRBVA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7FVDPA#issuecomment-533418428",
"url": "https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications\u0026email_token=AFTOJK27W4VROQUM5JFSFYDQKRRBVA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7FVDPA#issuecomment-533418428",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d846a9a574ba_40dc3fdc330cd95c71447--


From nobody Thu Sep 19 23:14: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 A1C9212006E for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 23:14: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 HT8wIEgkM4Sh for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 23:14:31 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 339E0120026 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 23:14:31 -0700 (PDT)
Date: Thu, 19 Sep 2019 23:14:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568960070; bh=g+kOfqXoiYg5nwYWhsLmK6c14XvyMhrakmJQY5HnO+w=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Zhow8WdkkvU6PWSW2fFhTlpSuH25LHYsLL5p04fSi4mpB6GuZhI9c/tF//cTcOtlF GSa8KrkxhwoypmrFa0GcUtRNT+vZ/3VtlxjqcqoHuhedT6Dq5wZxSoNk3Tm6Td/Bb3 ZHatSsXvurqlhBaqbiRou6SNHKHGtNyM34EgDnhw=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZEYO4DA34LXQDAW4N3SGJLNEVBNHHB3EM4KU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3053/533422287@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3053@github.com>
References: <quicwg/base-drafts/issues/3053@github.com>
Subject: Re: [quicwg/base-drafts] Padding requirement seems to be incorrect. (#3053)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d846e465cb6_b943fded2ecd95c69368"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tFelrRvfzJDy5onDfIeHo3ai5ZQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 06:14:33 -0000

----==_mimepart_5d846e465cb6_b943fded2ecd95c69368
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Technically a design change.  I think that it should be any packets that contain Initial and don't contain Handshake or 1-RTT packets.  At least, that's what I implemented.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3053#issuecomment-533422287
----==_mimepart_5d846e465cb6_b943fded2ecd95c69368
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Technically a design change.  I think that it should be any packets that contain Initial and don't contain Handshake or 1-RTT packets.  At least, that's what I implemented.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications&amp;email_token=AFTOJK6E4IVKHUW244I6ZDDQKRS4NA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7FWBTY#issuecomment-533422287">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3B6ED27AMBUFALF6DQKRS4NANCNFSM4IYRI3TA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7V5ULXFF3ZR3C6763QKRS4NA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7FWBTY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJK6E4IVKHUW244I6ZDDQKRS4NA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7FWBTY#issuecomment-533422287",
"url": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJK6E4IVKHUW244I6ZDDQKRS4NA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7FWBTY#issuecomment-533422287",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d846e465cb6_b943fded2ecd95c69368--


From nobody Thu Sep 19 23:19: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 2DA591200C5 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 23:19: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 bYB_ivJ0UFcu for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 23:19:54 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 77A54120026 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 23:19:54 -0700 (PDT)
Date: Thu, 19 Sep 2019 23:19:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568960393; bh=tbJcuaTwJWDqZsPErWuo7Vt7NgR1I/1RrsjhhPYnlyY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hYTH6G5hF19I/WQw/dEykki0Af9vwUqhZ8HkQ/D6BPHfkhwdeha7wMHxaccMQsdd4 XsPKylnRBhkX+4M1094ib/jRL5TiSK+oyuhqTPSZiZnVtbLiUspkoltibYDhzSB/5Y f500/LBQuR/jU/lupIgFOZSSJ89GVA+gREI69ago=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7WPLB7TR3POMD4QCV3SGRATEVBNHHB3CL6HQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3050/review/290971814@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3050@github.com>
References: <quicwg/base-drafts/pull/3050@github.com>
Subject: Re: [quicwg/base-drafts] Rewrite key update section (#3050)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d846f8996e8d_78143f8a936cd95c9388"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/GBm2vkecxiTUJL84iRVi_UhBCY4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 06:19:56 -0000

----==_mimepart_5d846f8996e8d_78143f8a936cd95c9388
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.



>  
-In deciding when to update keys, endpoints MUST NOT exceed the limits for use of
-specific keys, as described in Section 5.5 of {{!TLS13}}.
+## Initiating a Key Update {#key-update-initiate}
+
+Endpoints maintain separate read and write secrets for packet protection.  An
+endpoint initiates a key update by updating its packet protection write secret
+and using that to protect new packets.  The endpoint creates a new write secret
+from the existing write secret as performed in Section 7.2 of {{!TLS13}}.  This
+uses the KDF function provided by TLS with a label of "quic ku".  The

It might be.  What is it now?  (That's a serious question, because I can't tell.)  I should open an issue.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3050#discussion_r326484804
----==_mimepart_5d846f8996e8d_78143f8a936cd95c9388
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/3050#discussion_r326484804">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;  
-In deciding when to update keys, endpoints MUST NOT exceed the limits for use of
-specific keys, as described in Section 5.5 of {{!TLS13}}.
+## Initiating a Key Update {#key-update-initiate}
+
+Endpoints maintain separate read and write secrets for packet protection.  An
+endpoint initiates a key update by updating its packet protection write secret
+and using that to protect new packets.  The endpoint creates a new write secret
+from the existing write secret as performed in Section 7.2 of {{!TLS13}}.  This
+uses the KDF function provided by TLS with a label of &quot;quic ku&quot;.  The
</pre>
<p>It might be.  What is it now?  (That's a serious question, because I can't tell.)  I should open an issue.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications&amp;email_token=AFTOJKYQEVS5RI6V3KNOUJTQKRTQTA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFL6BJQ#discussion_r326484804">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3RY7OF4OCSHLICDGDQKRTQTANCNFSM4IYF37JQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYWR7ORXIYC4R3YAH3QKRTQTA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFL6BJQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications\u0026email_token=AFTOJKYQEVS5RI6V3KNOUJTQKRTQTA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFL6BJQ#discussion_r326484804",
"url": "https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications\u0026email_token=AFTOJKYQEVS5RI6V3KNOUJTQKRTQTA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFL6BJQ#discussion_r326484804",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d846f8996e8d_78143f8a936cd95c9388--


From nobody Thu Sep 19 23:27: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 D355112006F for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 23:27:50 -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 9icJKu0UPEvd for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 23:27:49 -0700 (PDT)
Received: from out-15.smtp.github.com (out-15.smtp.github.com [192.30.254.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 37626120026 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 23:27:49 -0700 (PDT)
Date: Thu, 19 Sep 2019 23:27:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568960868; bh=MDaqY8NZ4nDfCoI7QcTf/I2uHmZmmhqeqmMd2Epq3WU=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=CT08CVySM3fHJlTvSgxdq3WiINIpm6wK4WfkVyWvxdWnszvpLfi8N0Kt/RzRiK0c3 cP7r9BVYGXAJPw1Cs91N319zB6HwM4vZxS3snO6wyPOE+EAlbJVe/J6nmv+59oAxu+ ssjMeV3jDUc8xoRmqZXBouP3BluTdrLDV2bIG9Y0=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6OGA7HW6GINZK475N3SGK5JEVBNHHB3EXW64@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3054@github.com>
Subject: [quicwg/base-drafts] Label for key updates (#3054)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8471645cd7b_22b93fc1ceccd95c103652"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/sQDEhs1bMOWgbVsXZIqLWk0Ptxs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 06:27:51 -0000

----==_mimepart_5d8471645cd7b_22b93fc1ceccd95c103652
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

We've been back and forth on this issue for a while now and I honestly don't know what the answer is.  #3050 picks a value that we haven't seen before, or we could - as I think some have assumed - use the TLS value of "traffic upd".

I think that because QUIC is managing this, it should be a quic-specific label.

See also #1845 and #1003.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3054
----==_mimepart_5d8471645cd7b_22b93fc1ceccd95c103652
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>We've been back and forth on this issue for a while now and I honestly don't know what the answer is.  <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="495550012" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3050" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3050/hovercard" href="https://github.com/quicwg/base-drafts/pull/3050">#3050</a> picks a value that we haven't seen before, or we could - as I think some have assumed - use the TLS value of "traffic upd".</p>
<p>I think that because QUIC is managing this, it should be a quic-specific label.</p>
<p>See also <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="368009726" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/1845" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/1845/hovercard" href="https://github.com/quicwg/base-drafts/issues/1845">#1845</a> and <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="280372642" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/1003" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/1003/hovercard" href="https://github.com/quicwg/base-drafts/issues/1003">#1003</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/3054?email_source=notifications&amp;email_token=AFTOJK4YF3XKIDKODXVRNF3QKRUOJA5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMS633Q">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK62COT2SJJQXQAYW5DQKRUOJANCNFSM4IYTHQGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZVXFI3TGKYDOOZKNLQKRUOJA5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMS633Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3054?email_source=notifications\u0026email_token=AFTOJK4YF3XKIDKODXVRNF3QKRUOJA5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMS633Q",
"url": "https://github.com/quicwg/base-drafts/issues/3054?email_source=notifications\u0026email_token=AFTOJK4YF3XKIDKODXVRNF3QKRUOJA5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMS633Q",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8471645cd7b_22b93fc1ceccd95c103652--


From nobody Thu Sep 19 23: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 B695812008A for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 23:32:29 -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 6EC24ka-DYpj for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 23:32: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 A602312006F for <quic-issues@ietf.org>; Thu, 19 Sep 2019 23:32:27 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id B9A476A0CA0 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 23:32:26 -0700 (PDT)
Date: Thu, 19 Sep 2019 23:32:26 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2HZPKMUAEWOSYV4253SGLOVEVBNHHB3CL6HQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3050/review/290974470@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3050@github.com>
References: <quicwg/base-drafts/pull/3050@github.com>
Subject: Re: [quicwg/base-drafts] Rewrite key update section (#3050)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d84727aaa635_769f3faf8dccd96410049f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ubcnCmcdR52BoxsnjIlpx4GlYNw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 06:32:30 -0000

----==_mimepart_5d84727aaa635_769f3faf8dccd96410049f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.

Thanks David.

> @@ -1168,89 +1168,232 @@ anticipation of receiving a ClientHello.
 
 # Key Update
 
-Once the handshake is confirmed, it is possible to update the keys. The
-KEY_PHASE bit in the short header is used to indicate whether key updates
-have occurred. The KEY_PHASE bit is initially set to 0 and then inverted
-with each key update.
+Once the 1-RTT keys are established and confirmed, it is possible to update the

I think that this is fine.  The reason we needed that definition is that we were hanging a lot from it.  This should however be referencing that definition, because it's handshake confirmation that I intended to use (but failed to).

> +
+## Timing of Receive Key Generation {#receive-key-generation}
+
+Endpoints responding to an apparent key update MUST NOT generate a timing
+side-channel signal that might indicate that the Key Phase bit was invalid (see
+{{header-protect-analysis}}).  Endpoints can use dummy packet protection keys in
+place of discarded keys when key updates are not permitted; using dummy keys
+will generate no variation in the timing signal produced by attempting to remove
+packet protection, but all packets with an invalid Key Phase bit will be
+rejected.
+
+The process of creating new packet protection keys for receiving packets could
+reveal that a key update has occurred.  An endpoint MAY perform this process as
+part of packet processing, but this creates a timing signal that can be used by
+an attacker to learn when key updates happen and thus the value of the Key Phase
+bit in certain packets.  Endpoints SHOULD instead defer the creation of the next

This is READ keys, you update write keys immediately.

>  
-In deciding when to update keys, endpoints MUST NOT exceed the limits for use of
-specific keys, as described in Section 5.5 of {{!TLS13}}.
+## Initiating a Key Update {#key-update-initiate}
+
+Endpoints maintain separate read and write secrets for packet protection.  An
+endpoint initiates a key update by updating its packet protection write secret
+and using that to protect new packets.  The endpoint creates a new write secret
+from the existing write secret as performed in Section 7.2 of {{!TLS13}}.  This
+uses the KDF function provided by TLS with a label of "quic ku".  The

See #3054.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3050#pullrequestreview-290974470
----==_mimepart_5d84727aaa635_769f3faf8dccd96410049f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> commented on this pull request.</p>

<p>Thanks David.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3050#discussion_r326486784">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1168,89 +1168,232 @@ anticipation of receiving a ClientHello.
 
 # Key Update
 
-Once the handshake is confirmed, it is possible to update the keys. The
-KEY_PHASE bit in the short header is used to indicate whether key updates
-have occurred. The KEY_PHASE bit is initially set to 0 and then inverted
-with each key update.
+Once the 1-RTT keys are established and confirmed, it is possible to update the
</pre>
<p>I think that this is fine.  The reason we needed that definition is that we were hanging a lot from it.  This should however be referencing that definition, because it's handshake confirmation that I intended to use (but failed to).</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3050#discussion_r326487666">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +
+## Timing of Receive Key Generation {#receive-key-generation}
+
+Endpoints responding to an apparent key update MUST NOT generate a timing
+side-channel signal that might indicate that the Key Phase bit was invalid (see
+{{header-protect-analysis}}).  Endpoints can use dummy packet protection keys in
+place of discarded keys when key updates are not permitted; using dummy keys
+will generate no variation in the timing signal produced by attempting to remove
+packet protection, but all packets with an invalid Key Phase bit will be
+rejected.
+
+The process of creating new packet protection keys for receiving packets could
+reveal that a key update has occurred.  An endpoint MAY perform this process as
+part of packet processing, but this creates a timing signal that can be used by
+an attacker to learn when key updates happen and thus the value of the Key Phase
+bit in certain packets.  Endpoints SHOULD instead defer the creation of the next
</pre>
<p>This is READ keys, you update write keys immediately.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3050#discussion_r326487743">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;  
-In deciding when to update keys, endpoints MUST NOT exceed the limits for use of
-specific keys, as described in Section 5.5 of {{!TLS13}}.
+## Initiating a Key Update {#key-update-initiate}
+
+Endpoints maintain separate read and write secrets for packet protection.  An
+endpoint initiates a key update by updating its packet protection write secret
+and using that to protect new packets.  The endpoint creates a new write secret
+from the existing write secret as performed in Section 7.2 of {{!TLS13}}.  This
+uses the KDF function provided by TLS with a label of &quot;quic ku&quot;.  The
</pre>
<p>See <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="496170743" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3054" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3054/hovercard" href="https://github.com/quicwg/base-drafts/issues/3054">#3054</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/3050?email_source=notifications&amp;email_token=AFTOJK6N5A4NRZEOSL4VAWDQKRU7VA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFL6WBQ#pullrequestreview-290974470">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3XVUOEWGR36UJN533QKRU7VANCNFSM4IYF37JQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3E4SKUX36TOBHYRR3QKRU7VA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFL6WBQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications\u0026email_token=AFTOJK6N5A4NRZEOSL4VAWDQKRU7VA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFL6WBQ#pullrequestreview-290974470",
"url": "https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications\u0026email_token=AFTOJK6N5A4NRZEOSL4VAWDQKRU7VA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFL6WBQ#pullrequestreview-290974470",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d84727aaa635_769f3faf8dccd96410049f--


From nobody Thu Sep 19 23:34: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 9337E12006F for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 23:34: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 IawEh1iM-Kde for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 23:34: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 570B2120026 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 23:34:35 -0700 (PDT)
Date: Thu, 19 Sep 2019 23:34:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568961274; bh=HDDRmW8DRDznl19SwREjLDePLFochIN3HNXazY/1gms=; h=Date:From:To:Subject:From; b=MJkyLLnXhDMUPBkYMYp6IMDnyxp7RyOO/L+osG59ieFzO2tIWbn3Yzf+D4xSR3otV lhr5GDgHmjE5FoR5EaV9e9tsJhPK7KVgDe759mR4y2+BsqPNUm6qfnmCGxJupo3Nnm +C05F6dxLhR+4BAxwL2uTtr2S60aginLY/q3LsIw=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/rework-key-update-2/678c04-1b4d13@github.com>
Subject: [quicwg/base-drafts] 1b4d13: Attempt to improve readability in a few places.
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_p0Z1ytJ_u_LC5cU_9AxuHwEi1g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 06:34:37 -0000

  Branch: refs/heads/rework-key-update-2
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1b4d136a4ac9593b8211d378789ed2d08e16ea6e
      https://github.com/quicwg/base-drafts/commit/1b4d136a4ac9593b8211d378789ed2d08e16ea6e
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-20 (Fri, 20 Sep 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Attempt to improve readability in a few places.

Also, record that this closes #3054.



From nobody Thu Sep 19 23:34: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 951F512006F for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 23:34: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 LG9P8qN3zJtD for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 23:34:43 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A9C47120026 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 23:34:43 -0700 (PDT)
Date: Thu, 19 Sep 2019 23:34:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568961283; bh=ys75mqG3FobqrMaSd0PHIOUxBJVnInzIf6kNoOauwy0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rVecW6bRZvUE9/LslU2n3NCQds1fubiuSl0mY04W4U+gTGzlSJfhlEnVrTqG5r1uV Q6+h6O1YDR0Ni+ItGF/kSvZb826x20AgibnopogSy/WD3JmIjYk/AGZw4Cz6VqPTXP 80zdu3myl6fTknFJ2ZqVjTYtsy/pih2NqYpnQArA=
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/3050/push/4056258622@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3050@github.com>
References: <quicwg/base-drafts/pull/3050@github.com>
Subject: Re: [quicwg/base-drafts] Rewrite key update section (#3050)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8473038b46_10de3ff1c9ecd95c104010"; 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/_FM1wTBgSFZGvFmrrjjlw7J7V7k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 06:34:46 -0000

----==_mimepart_5d8473038b46_10de3ff1c9ecd95c104010
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

1b4d136a4ac9593b8211d378789ed2d08e16ea6e  Attempt to improve readability in a few places.


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3050/files/678c0486f91012173e827b1d708429b153bc3037..1b4d136a4ac9593b8211d378789ed2d08e16ea6e

----==_mimepart_5d8473038b46_10de3ff1c9ecd95c104010
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/1b4d136a4ac9593b8211d378789ed2d08e16ea6e">1b4d136</a>  Attempt to improve readability in a few places.</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3050/files/678c0486f91012173e827b1d708429b153bc3037..1b4d136a4ac9593b8211d378789ed2d08e16ea6e?email_source=notifications&amp;email_token=AFTOJKYTDKKVTE2BGOJQ7LDQKRVIHA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSMBXGU4TSM2QOVZWQIZUGA2TMMRVHA3DEMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZQI2HAXK3Q7QRAB3TQKRVIHANCNFSM4IYF37JQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZJXKTOJQUQ6ZRXT2LQKRVIHA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSMBXGU4TSM2QOVZWQIZUGA2TMMRVHA3DEMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3050/files/678c0486f91012173e827b1d708429b153bc3037..1b4d136a4ac9593b8211d378789ed2d08e16ea6e?email_source=notifications\u0026email_token=AFTOJKYTDKKVTE2BGOJQ7LDQKRVIHA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSMBXGU4TSM2QOVZWQIZUGA2TMMRVHA3DEMQ",
"url": "https://github.com/quicwg/base-drafts/pull/3050/files/678c0486f91012173e827b1d708429b153bc3037..1b4d136a4ac9593b8211d378789ed2d08e16ea6e?email_source=notifications\u0026email_token=AFTOJKYTDKKVTE2BGOJQ7LDQKRVIHA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSMBXGU4TSM2QOVZWQIZUGA2TMMRVHA3DEMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8473038b46_10de3ff1c9ecd95c104010--


From nobody Thu Sep 19 23:35: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 DCACE12006F for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 23:35:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 0sVjn0aXgZNo for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 23:35:15 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 13792120026 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 23:35:15 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 679C16E003A for <quic-issues@ietf.org>; Thu, 19 Sep 2019 23:35:14 -0700 (PDT)
Date: Thu, 19 Sep 2019 23:35:14 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b3d5d4-c3ca8b@github.com>
Subject: [quicwg/base-drafts] c3ca8b: Script updating gh-pages from 1b4d136a. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dLqBBrjewtGsgUAabHTQyFTXC5c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 06:35:17 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c3ca8b2d1a95afc86140183b0ea605b766247dcc
      https://github.com/quicwg/base-drafts/commit/c3ca8b2d1a95afc86140183b0ea605b766247dcc
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-20 (Fri, 20 Sep 2019)

  Changed paths:
    M index.html
    M rework-key-update-2/draft-ietf-quic-http.html
    M rework-key-update-2/draft-ietf-quic-http.txt
    M rework-key-update-2/draft-ietf-quic-invariants.html
    M rework-key-update-2/draft-ietf-quic-invariants.txt
    M rework-key-update-2/draft-ietf-quic-qpack.html
    M rework-key-update-2/draft-ietf-quic-qpack.txt
    M rework-key-update-2/draft-ietf-quic-recovery.html
    M rework-key-update-2/draft-ietf-quic-recovery.txt
    M rework-key-update-2/draft-ietf-quic-tls.html
    M rework-key-update-2/draft-ietf-quic-tls.txt
    M rework-key-update-2/draft-ietf-quic-transport.html
    M rework-key-update-2/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 1b4d136a. [ci skip]



From nobody Thu Sep 19 23:51: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 E70611200C5 for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 23:51: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 LEmO0hIkjd1p for <quic-issues@ietfa.amsl.com>; Thu, 19 Sep 2019 23:51:18 -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 367D51200A3 for <quic-issues@ietf.org>; Thu, 19 Sep 2019 23:51:18 -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 7A98C1C05FA for <quic-issues@ietf.org>; Thu, 19 Sep 2019 23:51:17 -0700 (PDT)
Date: Thu, 19 Sep 2019 23:51:17 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2IDUBUJW3727AJAF53SG3XLEVBNHHB3EM4KU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3053/533431679@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3053@github.com>
References: <quicwg/base-drafts/issues/3053@github.com>
Subject: Re: [quicwg/base-drafts] Padding requirement seems to be incorrect. (#3053)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8476e56b3f9_6fb73fe9558cd95c40426"; 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/PoKF-qo6sGV3fuYyhqnhSqKwk2I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 06:51:20 -0000

----==_mimepart_5d8476e56b3f9_6fb73fe9558cd95c40426
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'll note that I think there are other requirements formulated in other sections. Perhaps define a term such a minimal initial datagram size and have the requirement in one place rather than sprinkling 1200 bytes in multiple places where it can be difficult to get the finer points (such as UDP vs QUIC packets and with or without header size).

For example section 14 in transport:

> The payload of a UDP datagram carrying the first Initial packet MUST be expanded to at least 1200 bytes, by adding PADDING frames to the Initial packet and/or by coalescing the Initial packet (see 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/issues/3053#issuecomment-533431679
----==_mimepart_5d8476e56b3f9_6fb73fe9558cd95c40426
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'll note that I think there are other requirements formulated in other sections. Perhaps define a term such a minimal initial datagram size and have the requirement in one place rather than sprinkling 1200 bytes in multiple places where it can be difficult to get the finer points (such as UDP vs QUIC packets and with or without header size).</p>
<p>For example section 14 in transport:</p>
<blockquote>
<p>The payload of a UDP datagram carrying the first Initial packet MUST be expanded to at least 1200 bytes, by adding PADDING frames to the Initial packet and/or by coalescing the Initial packet (see Section 12.2).</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/3053?email_source=notifications&amp;email_token=AFTOJK3RO5C7KA5RJQ3CGRDQKRXGLA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7FYK7Y#issuecomment-533431679">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYVXQGKAEWX5LJLHKLQKRXGLANCNFSM4IYRI3TA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK63IA2EWW4YYJCE55TQKRXGLA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7FYK7Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJK3RO5C7KA5RJQ3CGRDQKRXGLA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7FYK7Y#issuecomment-533431679",
"url": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJK3RO5C7KA5RJQ3CGRDQKRXGLA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7FYK7Y#issuecomment-533431679",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8476e56b3f9_6fb73fe9558cd95c40426--


From nobody Fri Sep 20 01: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 74607120073 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 01:18: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 7fZL33aTob6i for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 01:18:39 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D9B51120026 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 01:18:38 -0700 (PDT)
Date: Fri, 20 Sep 2019 01:18:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568967517; bh=eIAqqtT+vFtbSa5pk7PS3pTNzhl2UQimEXtTRIIbvQA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mucYlVynKt2JEFE+vOaBhSsuhq4frRW4eXfew8MBc+mywMJnNxY79mP0l+cfkgGX2 BtAybY5qy1YP+Jxv6UK5I/5hfIHLh9/Axzj0wd6d6vB5Eqvpu3f4yuSKQpkOcxvKh/ 0SzFbWW4r6WuYWFB35sTF5a+JMRJpFwiY+9hPjpg=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6IO5NG7QM6SNOYQVF3SG653EVBNHHB3EXW64@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3054/533457678@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3054@github.com>
References: <quicwg/base-drafts/issues/3054@github.com>
Subject: Re: [quicwg/base-drafts] Label for key updates (#3054)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d848b5dcb156_71c13fc8d50cd964900cd"; 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/5olySxL0ygLV07GG05mq2s9aufQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 08:18:41 -0000

----==_mimepart_5d848b5dcb156_71c13fc8d50cd964900cd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> I think that because QUIC is managing this, it should be a quic-specific label.

I would not strongly suggest this, but I wonder if it be possible to define the derivation function inside QUIC too. If the labels are going to be different, it would be helpful to the readers to have all the definition in one place.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3054#issuecomment-533457678
----==_mimepart_5d848b5dcb156_71c13fc8d50cd964900cd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>I think that because QUIC is managing this, it should be a quic-specific label.</p>
</blockquote>
<p>I would not strongly suggest this, but I wonder if it be possible to define the derivation function inside QUIC too. If the labels are going to be different, it would be helpful to the readers to have all the definition in one place.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3054?email_source=notifications&amp;email_token=AFTOJKY5TICMGVIYTETNYMTQKSBN3A5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7F6WDQ#issuecomment-533457678">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK377GVT4TX3J6WWR2TQKSBN3ANCNFSM4IYTHQGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZSS7OAG6BHV5ZC7ZLQKSBN3A5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7F6WDQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3054?email_source=notifications\u0026email_token=AFTOJKY5TICMGVIYTETNYMTQKSBN3A5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7F6WDQ#issuecomment-533457678",
"url": "https://github.com/quicwg/base-drafts/issues/3054?email_source=notifications\u0026email_token=AFTOJKY5TICMGVIYTETNYMTQKSBN3A5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7F6WDQ#issuecomment-533457678",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d848b5dcb156_71c13fc8d50cd964900cd--


From nobody Fri Sep 20 02: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 B60891200E6 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 02:28:50 -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 F-pELnSX2I5O for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 02:28:49 -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 E78E712008C for <quic-issues@ietf.org>; Fri, 20 Sep 2019 02:28:48 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 15F119602A6 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 02:28:48 -0700 (PDT)
Date: Fri, 20 Sep 2019 02:28:48 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6ESJLTMTORE7EDPLV3SHHFBEVBNHHB3EXW64@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3054/533481092@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3054@github.com>
References: <quicwg/base-drafts/issues/3054@github.com>
Subject: Re: [quicwg/base-drafts] Label for key updates (#3054)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d849bd06e7f_44ae3fd6430cd95c1209c2"; 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/f596XTgREici-okwQjwnHlf_Lwo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 09:28:51 -0000

----==_mimepart_5d849bd06e7f_44ae3fd6430cd95c1209c2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

+1 to clarifying what the label is. I don't have a strong opinion on what the label should be as long as it's in the quic-tls draft.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3054#issuecomment-533481092
----==_mimepart_5d849bd06e7f_44ae3fd6430cd95c1209c2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>+1 to clarifying what the label is. I don't have a strong opinion on what the label should be as long as it's in the quic-tls draft.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3054?email_source=notifications&amp;email_token=AFTOJK5CUHI42MMW7PS63BDQKSJVBA5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7GENBA#issuecomment-533481092">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2JJKPQ2KOMHGZRTJDQKSJVBANCNFSM4IYTHQGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK44EWDQX26COFCQ5MTQKSJVBA5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7GENBA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3054?email_source=notifications\u0026email_token=AFTOJK5CUHI42MMW7PS63BDQKSJVBA5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7GENBA#issuecomment-533481092",
"url": "https://github.com/quicwg/base-drafts/issues/3054?email_source=notifications\u0026email_token=AFTOJK5CUHI42MMW7PS63BDQKSJVBA5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7GENBA#issuecomment-533481092",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d849bd06e7f_44ae3fd6430cd95c1209c2--


From nobody Fri Sep 20 02:30: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 854111200A1 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 02:30:14 -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 2NUZ8UDzobsQ for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 02:30:12 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8C48312008C for <quic-issues@ietf.org>; Fri, 20 Sep 2019 02:30:12 -0700 (PDT)
Date: Fri, 20 Sep 2019 02:30:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568971811; bh=g7NBjEWuHbBJidKUf1ZRSeKp2zo8xWcycEDAeKxckNY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YRQIgoKsvYjoNG3cOCbanEpn5fFuHq4Re2nzb9rcXP+I5i5djRt4qG5EeM2j4688J 3BNoDtS4usrmTEpbO+Nny4zDXTJXHhzfNETDGovBffvbtN9kUyTjVdheTx13Elh+k+ MF+QERI2BelbvdhhCb/DQWscAph/WjB9rjXk6Hm4=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6V2XS2NHAOZA5V7OV3SHHKHEVBNHHB3CL6HQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3050/review/291053178@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3050@github.com>
References: <quicwg/base-drafts/pull/3050@github.com>
Subject: Re: [quicwg/base-drafts] Rewrite key update section (#3050)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d849c23aaf57_74fd3f86ab8cd964658b7"; 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/gVslM63xcuVN5GzEU9adSsyy_FE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 09:30:15 -0000

----==_mimepart_5d849c23aaf57_74fd3f86ab8cd964658b7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

DavidSchinazi commented on this pull request.



> +
+## Timing of Receive Key Generation {#receive-key-generation}
+
+Endpoints responding to an apparent key update MUST NOT generate a timing
+side-channel signal that might indicate that the Key Phase bit was invalid (see
+{{header-protect-analysis}}).  Endpoints can use dummy packet protection keys in
+place of discarded keys when key updates are not permitted; using dummy keys
+will generate no variation in the timing signal produced by attempting to remove
+packet protection, but all packets with an invalid Key Phase bit will be
+rejected.
+
+The process of creating new packet protection keys for receiving packets could
+reveal that a key update has occurred.  An endpoint MAY perform this process as
+part of packet processing, but this creates a timing signal that can be used by
+an attacker to learn when key updates happen and thus the value of the Key Phase
+bit in certain packets.  Endpoints SHOULD instead defer the creation of the next

Ah, that makes a lot more sense. 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/3050#discussion_r326546464
----==_mimepart_5d849c23aaf57_74fd3f86ab8cd964658b7
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/3050#discussion_r326546464">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +
+## Timing of Receive Key Generation {#receive-key-generation}
+
+Endpoints responding to an apparent key update MUST NOT generate a timing
+side-channel signal that might indicate that the Key Phase bit was invalid (see
+{{header-protect-analysis}}).  Endpoints can use dummy packet protection keys in
+place of discarded keys when key updates are not permitted; using dummy keys
+will generate no variation in the timing signal produced by attempting to remove
+packet protection, but all packets with an invalid Key Phase bit will be
+rejected.
+
+The process of creating new packet protection keys for receiving packets could
+reveal that a key update has occurred.  An endpoint MAY perform this process as
+part of packet processing, but this creates a timing signal that can be used by
+an attacker to learn when key updates happen and thus the value of the Key Phase
+bit in certain packets.  Endpoints SHOULD instead defer the creation of the next
</pre>
<p>Ah, that makes a lot more sense. 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/3050?email_source=notifications&amp;email_token=AFTOJK3ZHFYYCFQ22LO7L3LQKSJ2HA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFMR46Q#discussion_r326546464">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5SN3AMFTXTIGYNQ5LQKSJ2HANCNFSM4IYF37JQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK54FNF3DNEYKPIHNBDQKSJ2HA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFMR46Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications\u0026email_token=AFTOJK3ZHFYYCFQ22LO7L3LQKSJ2HA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFMR46Q#discussion_r326546464",
"url": "https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications\u0026email_token=AFTOJK3ZHFYYCFQ22LO7L3LQKSJ2HA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFMR46Q#discussion_r326546464",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d849c23aaf57_74fd3f86ab8cd964658b7--


From nobody Fri Sep 20 02: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 5DA4D1200A1 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 02:30:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 3CiddV3X5uA9 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 02:30: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 BE78212008C for <quic-issues@ietf.org>; Fri, 20 Sep 2019 02:30:50 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id 1CFE28C04F7 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 02:30:50 -0700 (PDT)
Date: Fri, 20 Sep 2019 02:30:50 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4IDRC4J6XPA5LIGW53SHHMVEVBNHHB3CL6HQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3050/review/291053535@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3050@github.com>
References: <quicwg/base-drafts/pull/3050@github.com>
Subject: Re: [quicwg/base-drafts] Rewrite key update section (#3050)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d849c4a94ed_3a123ffad1acd968764ba"; 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/3NaS_xHeo379Jay0ptaPrGPcuqA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 09:30:52 -0000

----==_mimepart_5d849c4a94ed_3a123ffad1acd968764ba
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

DavidSchinazi commented on this pull request.



>  
-In deciding when to update keys, endpoints MUST NOT exceed the limits for use of
-specific keys, as described in Section 5.5 of {{!TLS13}}.
+## Initiating a Key Update {#key-update-initiate}
+
+Endpoints maintain separate read and write secrets for packet protection.  An
+endpoint initiates a key update by updating its packet protection write secret
+and using that to protect new packets.  The endpoint creates a new write secret
+from the existing write secret as performed in Section 7.2 of {{!TLS13}}.  This
+uses the KDF function provided by TLS with a label of "quic ku".  The

I don't know what it is either, we haven't implemented key updates yet.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3050#discussion_r326546824
----==_mimepart_5d849c4a94ed_3a123ffad1acd968764ba
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/3050#discussion_r326546824">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt;  
-In deciding when to update keys, endpoints MUST NOT exceed the limits for use of
-specific keys, as described in Section 5.5 of {{!TLS13}}.
+## Initiating a Key Update {#key-update-initiate}
+
+Endpoints maintain separate read and write secrets for packet protection.  An
+endpoint initiates a key update by updating its packet protection write secret
+and using that to protect new packets.  The endpoint creates a new write secret
+from the existing write secret as performed in Section 7.2 of {{!TLS13}}.  This
+uses the KDF function provided by TLS with a label of &quot;quic ku&quot;.  The
</pre>
<p>I don't know what it is either, we haven't implemented key updates yet.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications&amp;email_token=AFTOJKZCAV53HGJPDVTLOX3QKSJ4VA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFMR7XY#discussion_r326546824">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4NQMCRVX3QJF5XSADQKSJ4VANCNFSM4IYF37JQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6BWYW5R2F6A7N4WT3QKSJ4VA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFMR7XY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications\u0026email_token=AFTOJKZCAV53HGJPDVTLOX3QKSJ4VA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFMR7XY#discussion_r326546824",
"url": "https://github.com/quicwg/base-drafts/pull/3050?email_source=notifications\u0026email_token=AFTOJKZCAV53HGJPDVTLOX3QKSJ4VA5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFMR7XY#discussion_r326546824",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d849c4a94ed_3a123ffad1acd968764ba--


From nobody Fri Sep 20 05:48: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 644E6120147 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 05:48:36 -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 Gpoiknlg-Val for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 05:48:35 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F287412003F for <quic-issues@ietf.org>; Fri, 20 Sep 2019 05:48:34 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 45B9A6A119A for <quic-issues@ietf.org>; Fri, 20 Sep 2019 05:48:34 -0700 (PDT)
Date: Fri, 20 Sep 2019 05:48:34 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-1200-payloads/f77bd1-3801eb@github.com>
Subject: [quicwg/base-drafts] 3801eb: More UDP
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/oFpFGz7lj_xXGl73ImepzbZ5mm0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 12:48:37 -0000

  Branch: refs/heads/ianswett-1200-payloads
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3801ebda3af7418505f1aed87138ae72a3178829
      https://github.com/quicwg/base-drafts/commit/3801ebda3af7418505f1aed87138ae72a3178829
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-20 (Fri, 20 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  More UDP



From nobody Fri Sep 20 05:48: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 A7517120147 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 05:48: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 9eD-rPOrIJaD for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 05:48: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 5C83F12003F for <quic-issues@ietf.org>; Fri, 20 Sep 2019 05:48:43 -0700 (PDT)
Date: Fri, 20 Sep 2019 05:48:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568983722; bh=ZZlPFOSMQkQSNHBaG+7BXp3+4oPgjN+S5Sk9H/JsxoU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DqkJPQbB308LqEs88kM3Zo2iqC3xS0FCRg2T0BsnjDG7YcikvtWIUgMzZ4DskgGFk gqEEqvGKAJtj7ErM7/ydNMrcIrzkG0HrguILaRVixuGfkmyNwCPuFYHwh71T7PM2/X MvDaAEh1iC8Of/tavgeKTj3iASyfMTxLnAOl2A/Y=
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/3051/push/4057554770@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3051@github.com>
References: <quicwg/base-drafts/pull/3051@github.com>
Subject: Re: [quicwg/base-drafts] Clients send datagrams with 1200 byte payloads (#3051)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d84caaa69cd7_7c1c3fbbbf6cd968866ef"; 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/G9xk-qboCxOmpKLFx_4MlRlDxQs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 12:48:45 -0000

----==_mimepart_5d84caaa69cd7_7c1c3fbbbf6cd968866ef
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

3801ebda3af7418505f1aed87138ae72a3178829  More UDP


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3051/files/f77bd1e5395bbac2bd1fe2ab575f1beac4c8bf32..3801ebda3af7418505f1aed87138ae72a3178829

----==_mimepart_5d84caaa69cd7_7c1c3fbbbf6cd968866ef
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/3801ebda3af7418505f1aed87138ae72a3178829">3801ebd</a>  More UDP</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3051/files/f77bd1e5395bbac2bd1fe2ab575f1beac4c8bf32..3801ebda3af7418505f1aed87138ae72a3178829?email_source=notifications&amp;email_token=AFTOJK4ZJAGUSQHA24Z5BW3QKTBCVA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNBXGA3DCNSQOVZWQIZUGA2TONJVGQ3TOMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK335OY2BEDZ7KHKLUTQKTBCVANCNFSM4IYQIHGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6KFTKBOZKHZ5DE3JTQKTBCVA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNBXGA3DCNSQOVZWQIZUGA2TONJVGQ3TOMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3051/files/f77bd1e5395bbac2bd1fe2ab575f1beac4c8bf32..3801ebda3af7418505f1aed87138ae72a3178829?email_source=notifications\u0026email_token=AFTOJK4ZJAGUSQHA24Z5BW3QKTBCVA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNBXGA3DCNSQOVZWQIZUGA2TONJVGQ3TOMA",
"url": "https://github.com/quicwg/base-drafts/pull/3051/files/f77bd1e5395bbac2bd1fe2ab575f1beac4c8bf32..3801ebda3af7418505f1aed87138ae72a3178829?email_source=notifications\u0026email_token=AFTOJK4ZJAGUSQHA24Z5BW3QKTBCVA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNBXGA3DCNSQOVZWQIZUGA2TONJVGQ3TOMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d84caaa69cd7_7c1c3fbbbf6cd968866ef--


From nobody Fri Sep 20 05:49: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 A57AF120848 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 05:49: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 LCPBX73Zz_DB for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 05:49:08 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 30752120830 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 05:49:08 -0700 (PDT)
Date: Fri, 20 Sep 2019 05:49:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568983747; bh=ebkCY+cF1dUxgCcdy8LX4n05ozVeClZmilyFwhWmz1A=; h=Date:From:To:Subject:From; b=z+6kBPd5mAOINl4QRgccz3zxQexB2knc/tIHC0FvME9wumYfi0D+47XGvX4dOe4zt bij6craj6Sd6TspeTQoBK0hEhpkyZkrn1o20568iLQxpZE1OT/LFSIKIx2LFiYSsoB vB5wdPhcUIaJ+XLZFnze77eJQGXDVIvxJaS4r9Us=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c3ca8b-f82e2a@github.com>
Subject: [quicwg/base-drafts] f82e2a: Script updating gh-pages from 3801ebda. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1Li8K1cPsWFCK23-Xo5ZZ3BpVZE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 12:49:18 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f82e2aea5bbaf5044d5713eb02236c9ab04f24b1
      https://github.com/quicwg/base-drafts/commit/f82e2aea5bbaf5044d5713eb02236c9ab04f24b1
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-20 (Fri, 20 Sep 2019)

  Changed paths:
    M ianswett-1200-payloads/draft-ietf-quic-http.html
    M ianswett-1200-payloads/draft-ietf-quic-http.txt
    M ianswett-1200-payloads/draft-ietf-quic-invariants.html
    M ianswett-1200-payloads/draft-ietf-quic-invariants.txt
    M ianswett-1200-payloads/draft-ietf-quic-qpack.html
    M ianswett-1200-payloads/draft-ietf-quic-qpack.txt
    M ianswett-1200-payloads/draft-ietf-quic-recovery.html
    M ianswett-1200-payloads/draft-ietf-quic-recovery.txt
    M ianswett-1200-payloads/draft-ietf-quic-tls.html
    M ianswett-1200-payloads/draft-ietf-quic-tls.txt
    M ianswett-1200-payloads/draft-ietf-quic-transport.html
    M ianswett-1200-payloads/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 3801ebda. [ci skip]



From nobody Fri Sep 20 05: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 E3759120851 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 05:49:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 pOBPALmD2bQC for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 05:49:11 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1C774120830 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 05:49:11 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 793C91C0257 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 05:49:10 -0700 (PDT)
Date: Fri, 20 Sep 2019 05:49:10 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYWQZXD7PAIHASOUXF3SIFVNEVBNHHB3EHJBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3051/review/291140164@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3051@github.com>
References: <quicwg/base-drafts/pull/3051@github.com>
Subject: Re: [quicwg/base-drafts] Clients send datagrams with 1200 byte payloads (#3051)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d84cac669cea_418e3fd64c6cd95c151365"; 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/crQTXlBIveMYPHVMG16oAFz6Mbk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 12:49:21 -0000

----==_mimepart_5d84cac669cea_418e3fd64c6cd95c151365
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> @@ -1592,10 +1592,10 @@ magnitude of any amplification attack that can be mounted using spoofed source
 addresses.  In determining this limit, servers only count the size of
 successfully processed packets.
 
-Clients MUST ensure that UDP datagrams containing only Initial packets are sized
-to at least 1200 bytes, adding padding to packets in the datagram as necessary.
-Sending padded datagrams ensures that the server is not overly constrained by
-the amplification restriction.
+Clients MUST ensure that UDP datagrams containing only Initial packets have
+payloads of at least 1200 bytes, adding padding to packets in the datagram as

I see your point, I added another UDP to remove the ambiguity.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3051#discussion_r326611670
----==_mimepart_5d84cac669cea_418e3fd64c6cd95c151365
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/3051#discussion_r326611670">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1592,10 +1592,10 @@ magnitude of any amplification attack that can be mounted using spoofed source
 addresses.  In determining this limit, servers only count the size of
 successfully processed packets.
 
-Clients MUST ensure that UDP datagrams containing only Initial packets are sized
-to at least 1200 bytes, adding padding to packets in the datagram as necessary.
-Sending padded datagrams ensures that the server is not overly constrained by
-the amplification restriction.
+Clients MUST ensure that UDP datagrams containing only Initial packets have
+payloads of at least 1200 bytes, adding padding to packets in the datagram as
</pre>
<p>I see your point, I added another UDP to remove the ambiguity.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications&amp;email_token=AFTOJKZEMRVM525SGQAMG6DQKTBENA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFNHERA#discussion_r326611670">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY43OKAB33RZJFEKR3QKTBENANCNFSM4IYQIHGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5XGZ4AXYFFTL4TDA3QKTBENA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFNHERA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJKZEMRVM525SGQAMG6DQKTBENA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFNHERA#discussion_r326611670",
"url": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJKZEMRVM525SGQAMG6DQKTBENA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFNHERA#discussion_r326611670",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d84cac669cea_418e3fd64c6cd95c151365--


From nobody Fri Sep 20 06: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 B0C7E1200FB for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 06:07:06 -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 YLguz-AgmbHy for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 06:07:05 -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 78C6512003F for <quic-issues@ietf.org>; Fri, 20 Sep 2019 06:07:05 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id A85CE1C256B for <quic-issues@ietf.org>; Fri, 20 Sep 2019 06:07:04 -0700 (PDT)
Date: Fri, 20 Sep 2019 06:07:04 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK24GFRSH6KCHGSXCQN3SIHYREVBNHHB3EM4KU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3053/533546680@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3053@github.com>
References: <quicwg/base-drafts/issues/3053@github.com>
Subject: Re: [quicwg/base-drafts] Padding requirement seems to be incorrect. (#3053)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d84cef89856f_6bf43fc2b80cd9642110ae"; 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/H7T_rthZIBRu9qoTLFXj2HkrujM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 13:07:07 -0000

----==_mimepart_5d84cef89856f_6bf43fc2b80cd9642110ae
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson What you implemented should be fine.  However, Initial + 0-RTT coalesced in a datagram should be padded I believe and I don't think we're clear on that 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/3053#issuecomment-533546680
----==_mimepart_5d84cef89856f_6bf43fc2b80cd9642110ae
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 you implemented should be fine.  However, Initial + 0-RTT coalesced in a datagram should be padded I believe and I don't think we're clear on that 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/3053?email_source=notifications&amp;email_token=AFTOJK4NOXQOVCEDOFUGZV3QKTDHRA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7GUNOA#issuecomment-533546680">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2IBTEDM7EHZKSS75DQKTDHRANCNFSM4IYRI3TA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5NFPSTUYSSBJF23ZTQKTDHRA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7GUNOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJK4NOXQOVCEDOFUGZV3QKTDHRA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7GUNOA#issuecomment-533546680",
"url": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJK4NOXQOVCEDOFUGZV3QKTDHRA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7GUNOA#issuecomment-533546680",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d84cef89856f_6bf43fc2b80cd9642110ae--


From nobody Fri Sep 20 08:03: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 033BB12081D for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:03:09 -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 e9b73q5Kjwgj for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:03:07 -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 B4A8212082A for <quic-issues@ietf.org>; Fri, 20 Sep 2019 08:03:05 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id DCC37A115C for <quic-issues@ietf.org>; Fri, 20 Sep 2019 08:03:04 -0700 (PDT)
Date: Fri, 20 Sep 2019 08:03:04 -0700
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2LHS5NYD4LTFLZ6AN3SIVLREVBNHHB3EXW64@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3054/533590553@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3054@github.com>
References: <quicwg/base-drafts/issues/3054@github.com>
Subject: Re: [quicwg/base-drafts] Label for key updates (#3054)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d84ea28ce1a1_14663f9502ccd96414053e"; 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/X2xsEqnkYPK3hkE8ApL5Zf4LmJA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 15:03:09 -0000

----==_mimepart_5d84ea28ce1a1_14663f9502ccd96414053e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I also agree the label should be explicitly defined in the quic-tls spec. I do like Kazuho's suggestion as well, to completely define the derivation function. I don't care too much what the label is. We were using `traffic udp` (and interop'ing with 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/3054#issuecomment-533590553
----==_mimepart_5d84ea28ce1a1_14663f9502ccd96414053e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I also agree the label should be explicitly defined in the quic-tls spec. I do like Kazuho's suggestion as well, to completely define the derivation function. I don't care too much what the label is. We were using <code>traffic udp</code> (and interop'ing with 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/3054?email_source=notifications&amp;email_token=AFTOJK6ARWENH4LHIIIQ6LDQKTQ2RA5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7G7EGI#issuecomment-533590553">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYE3SVY4IZOSFTIE3TQKTQ2RANCNFSM4IYTHQGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6B7WNZ7IJPK2UVR73QKTQ2RA5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7G7EGI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3054?email_source=notifications\u0026email_token=AFTOJK6ARWENH4LHIIIQ6LDQKTQ2RA5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7G7EGI#issuecomment-533590553",
"url": "https://github.com/quicwg/base-drafts/issues/3054?email_source=notifications\u0026email_token=AFTOJK6ARWENH4LHIIIQ6LDQKTQ2RA5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7G7EGI#issuecomment-533590553",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d84ea28ce1a1_14663f9502ccd96414053e--


From nobody Fri Sep 20 08:29: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 6BBBA120848 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:29: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 nfP3SLeGxpfS for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:29:29 -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 66DE012083B for <quic-issues@ietf.org>; Fri, 20 Sep 2019 08:29:29 -0700 (PDT)
Date: Fri, 20 Sep 2019 08:29:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568993368; bh=TlLfWhBBplS8PqJKu/5UQgjm1G5ODeROYZzaHFd/KFU=; h=Date:From:To:Subject:From; b=XSYunNRQI7sA7xxja+lNGvmaPP7Bnzy4aJg2TQvYej3GsEZ1Yw3ky7SmY3vEiUXlS 4JLIoEBY+ml9k78p1FUCNjw2ars5tQ1gFqm8dYJs2AC5GvERDUfV/Xe1euXw/DHaZC aO6DbfTYb9zIMY4DUeqZLmnqiXBHa/iBoPpLvD6M=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-no-1RTT-ack-delay/000000-cdad59@github.com>
Subject: [quicwg/base-drafts] cdad59: Remove 1 RTT delayed ack 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/mBYriSOzb2OyfRcnLNaiZOkQHlU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 15:29:31 -0000

  Branch: refs/heads/ianswett-no-1RTT-ack-delay
  Home:   https://github.com/quicwg/base-drafts
  Commit: cdad59a14836263a07f85ba9388f50d748f915d6
      https://github.com/quicwg/base-drafts/commit/cdad59a14836263a07f85ba9388f50d748f915d6
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-20 (Fri, 20 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Remove 1 RTT delayed ack requirement

Fixes #3030



From nobody Fri Sep 20 08:30: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 B380F12086C for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:30: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, 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 hSngrcg7weY4 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:30:01 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9C2C8120848 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 08:30:01 -0700 (PDT)
Date: Fri, 20 Sep 2019 08:30:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568993400; bh=1ho5zFsWMtx4KWXkRBww2qHwY/aXhYPQppenyu2Pe00=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=lT9GnFPSKrKFil/drPU5A35CN3f6qjfzVxJvUVXh+CVtESJyZbaHnR4TXI9aEhkk+ 4Wt7cHHnsUKmo88atRTxMk1OAG0nlSkvw7ffeRc9bOR7JRrdakO7I0Dy8m4jwYfIbj 5BU3c0jQyKWgXZQdJB5Ce0SX6F38oic6r3yaQIg8=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3CSGORJLUFBQ3RGVV3SIYQREVBNHHB3FVVWY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3055@github.com>
Subject: [quicwg/base-drafts] Remove 1 RTT delayed ack requirement (#3055)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d84f078a2bff_7f4a3fcc0b0cd96c4660d4"; 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/HiyxqaWKyUp9YA-6oEmDuY3dhdY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 15:30:04 -0000

----==_mimepart_5d84f078a2bff_7f4a3fcc0b0cd96c4660d4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Fixes #3030
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3055

-- Commit Summary --

  * Remove 1 RTT delayed ack requirement

-- File Changes --

    M draft-ietf-quic-transport.md (9)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3055.patch
https://github.com/quicwg/base-drafts/pull/3055.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/3055

----==_mimepart_5d84f078a2bff_7f4a3fcc0b0cd96c4660d4
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 #3030.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="493415765" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3030" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3030/hovercard" href="https://github.com/quicwg/base-drafts/issues/3030">#3030</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/3055'>https://github.com/quicwg/base-drafts/pull/3055</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Remove 1 RTT delayed ack requirement</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3055/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/3055.patch'>https://github.com/quicwg/base-drafts/pull/3055.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3055.diff'>https://github.com/quicwg/base-drafts/pull/3055.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/3055?email_source=notifications&amp;email_token=AFTOJK3IJR3ELYW3FXCAAKLQKTT7RA5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMWWW3A">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2VSANLLHOQMX6MFWLQKTT7RANCNFSM4IYYNZOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYKCNEW2M4ZULYE5NLQKTT7RA5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMWWW3A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3055?email_source=notifications\u0026email_token=AFTOJK3IJR3ELYW3FXCAAKLQKTT7RA5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMWWW3A",
"url": "https://github.com/quicwg/base-drafts/pull/3055?email_source=notifications\u0026email_token=AFTOJK3IJR3ELYW3FXCAAKLQKTT7RA5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMWWW3A",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d84f078a2bff_7f4a3fcc0b0cd96c4660d4--


From nobody Fri Sep 20 08:31: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 31018120889 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:31:06 -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 Uon1WyKP6TEe for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:30:57 -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 0E019120875 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 08:30:54 -0700 (PDT)
Date: Fri, 20 Sep 2019 08:30:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568993453; bh=NQo0OkPdRDYHmXIQH6L6rATxWlsVAaWoihWZVctpqyM=; h=Date:From:To:Subject:From; b=FGDBDpo6g334PakuPdmoVunpg081JjY7Hx9wFnhxUbQFRu6NSHjXkzrRHhJyEUkRO RhjHVE8JLydwYMznNERoezzyb3zgQ3OOC1YYngsZFeWvl6OyBUoQMjLA7Jti1ETPYD V3KnFJoygTfqZ8CvW/4xLWXTCummbiWKVi5zpSAE=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-no-1RTT-ack-delay/cdad59-3696d8@github.com>
Subject: [quicwg/base-drafts] 3696d8: 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/fIjszDJaDAhBnJ3FlC02bH6xZkk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 15:31:08 -0000

  Branch: refs/heads/ianswett-no-1RTT-ack-delay
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3696d8ce68c95063cc6e2e1b9392784f9cf25a24
      https://github.com/quicwg/base-drafts/commit/3696d8ce68c95063cc6e2e1b9392784f9cf25a24
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-20 (Fri, 20 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md



From nobody Fri Sep 20 08: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 1DE9812089C for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:31:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.28
X-Spam-Level: 
X-Spam-Status: No, score=-6.28 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, 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 o-1o8CLxX34A for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:31: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 8E2B412087B for <quic-issues@ietf.org>; Fri, 20 Sep 2019 08:31:02 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id E109FA10B8 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 08:31:01 -0700 (PDT)
Date: Fri, 20 Sep 2019 08:31:01 -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/3055/push/4058236155@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3055@github.com>
References: <quicwg/base-drafts/pull/3055@github.com>
Subject: Re: [quicwg/base-drafts] Remove 1 RTT delayed ack requirement (#3055)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d84f0b5d27c9_2c483f98168cd960858fd"; 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/c56NiQsRicAaN2Bv0BJqEESbm4o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 15:31:15 -0000

----==_mimepart_5d84f0b5d27c9_2c483f98168cd960858fd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

3696d8ce68c95063cc6e2e1b9392784f9cf25a24  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/3055/files/cdad59a14836263a07f85ba9388f50d748f915d6..3696d8ce68c95063cc6e2e1b9392784f9cf25a24

----==_mimepart_5d84f0b5d27c9_2c483f98168cd960858fd
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/3696d8ce68c95063cc6e2e1b9392784f9cf25a24">3696d8c</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/3055/files/cdad59a14836263a07f85ba9388f50d748f915d6..3696d8ce68c95063cc6e2e1b9392784f9cf25a24?email_source=notifications&amp;email_token=AFTOJK64CWUDCVQTREBTWBDQKTUDLA5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNZXGM3TSOKQOVZWQIZUGA2TQMRTGYYTKNI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZLNLWWRGHQZP4AMZ3QKTUDLANCNFSM4IYYNZOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZEUBE5BSDA37SUNU3QKTUDLA5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNZXGM3TSOKQOVZWQIZUGA2TQMRTGYYTKNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3055/files/cdad59a14836263a07f85ba9388f50d748f915d6..3696d8ce68c95063cc6e2e1b9392784f9cf25a24?email_source=notifications\u0026email_token=AFTOJK64CWUDCVQTREBTWBDQKTUDLA5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNZXGM3TSOKQOVZWQIZUGA2TQMRTGYYTKNI",
"url": "https://github.com/quicwg/base-drafts/pull/3055/files/cdad59a14836263a07f85ba9388f50d748f915d6..3696d8ce68c95063cc6e2e1b9392784f9cf25a24?email_source=notifications\u0026email_token=AFTOJK64CWUDCVQTREBTWBDQKTUDLA5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNZXGM3TSOKQOVZWQIZUGA2TQMRTGYYTKNI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d84f0b5d27c9_2c483f98168cd960858fd--


From nobody Fri Sep 20 08:31: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 DA5BF12087D for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:31: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 5jPFMTAhdv-u for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:31: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 50B3C12087B for <quic-issues@ietf.org>; Fri, 20 Sep 2019 08:31:25 -0700 (PDT)
Date: Fri, 20 Sep 2019 08:31:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568993484; bh=yv+s4Kk0McwVLXIwrTSlJ/FTtxhMpm/ogA5lg7PScfk=; h=Date:From:To:Subject:From; b=kJAw05JiiS5T4OltrnG9B8c8MtVloKghrA9VfaKSvGhEnLxyreJ2nv9Y3kdXo+Wdt rLw57DVsRdPzzM6nlQqlrP2Dj9LrXZf5MiDw4I/SHLmV0w0NHrxhM9vjgqZto6Z7+R vZSiIg9ReTgyhkwhI4mU6uaTLYiNuQbURNzHMSyE=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f82e2a-61b5b9@github.com>
Subject: [quicwg/base-drafts] 61b5b9: Script updating gh-pages from 3696d8ce. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2MBeTzmJ-oRilbSkLoCzIAixRm0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 15:31:27 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 61b5b981b45db43bf0491e7e3c9c23bb357b06a4
      https://github.com/quicwg/base-drafts/commit/61b5b981b45db43bf0491e7e3c9c23bb357b06a4
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-20 (Fri, 20 Sep 2019)

  Changed paths:
    A ianswett-no-1RTT-ack-delay/draft-ietf-quic-http.html
    A ianswett-no-1RTT-ack-delay/draft-ietf-quic-http.txt
    A ianswett-no-1RTT-ack-delay/draft-ietf-quic-invariants.html
    A ianswett-no-1RTT-ack-delay/draft-ietf-quic-invariants.txt
    A ianswett-no-1RTT-ack-delay/draft-ietf-quic-qpack.html
    A ianswett-no-1RTT-ack-delay/draft-ietf-quic-qpack.txt
    A ianswett-no-1RTT-ack-delay/draft-ietf-quic-recovery.html
    A ianswett-no-1RTT-ack-delay/draft-ietf-quic-recovery.txt
    A ianswett-no-1RTT-ack-delay/draft-ietf-quic-tls.html
    A ianswett-no-1RTT-ack-delay/draft-ietf-quic-tls.txt
    A ianswett-no-1RTT-ack-delay/draft-ietf-quic-transport.html
    A ianswett-no-1RTT-ack-delay/draft-ietf-quic-transport.txt
    A ianswett-no-1RTT-ack-delay/index.html
    M index.html
    R no-tls-short-title/draft-ietf-quic-http.html
    R no-tls-short-title/draft-ietf-quic-http.txt
    R no-tls-short-title/draft-ietf-quic-invariants.html
    R no-tls-short-title/draft-ietf-quic-invariants.txt
    R no-tls-short-title/draft-ietf-quic-qpack.html
    R no-tls-short-title/draft-ietf-quic-qpack.txt
    R no-tls-short-title/draft-ietf-quic-recovery.html
    R no-tls-short-title/draft-ietf-quic-recovery.txt
    R no-tls-short-title/draft-ietf-quic-tls.html
    R no-tls-short-title/draft-ietf-quic-tls.txt
    R no-tls-short-title/draft-ietf-quic-transport.html
    R no-tls-short-title/draft-ietf-quic-transport.txt
    R no-tls-short-title/index.html

  Log Message:
  -----------
  Script updating gh-pages from 3696d8ce. [ci skip]



From nobody Fri Sep 20 08:36: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 EC67E120219 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:36: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 LcY2ewozJSWN for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:36: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 69189120019 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 08:36:45 -0700 (PDT)
Date: Fri, 20 Sep 2019 08:36:44 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568993804; bh=FqP/dpwMeOocv3nYdhqZmaFUYIXkoxhdeWdN5svIjAY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ypkaDz5bEvRF5tfujdmAV5i9Hgp1hOYLqXhLw2oIOM29BUT58G0T+Fz9jCNC6mcxG wnQxk2Ys7nH1CrJvGhVpilGKbooxrgqSkwNqdCz2zW6GRxZgeVmclel2xdCVg1TjfR ExbsxT6NljZwNpRPVI3iQ4V0VHDLzmi/xnJtFZi8=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4WUTOBY64WDWRQXQ53SIZJZEVBNHHB3FVVWY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3055/review/291242154@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3055@github.com>
References: <quicwg/base-drafts/pull/3055@github.com>
Subject: Re: [quicwg/base-drafts] Remove 1 RTT delayed ack requirement (#3055)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d84f20c7670f_4d5f3f9dc54cd96469232"; 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/HU3i6SqH9LGViKB5UgTYfe3f0nw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 15:36:47 -0000

----==_mimepart_5d84f20c7670f_4d5f3f9dc54cd96469232
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

nibanks approved this pull request.

LGTM



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3055#pullrequestreview-291242154
----==_mimepart_5d84f20c7670f_4d5f3f9dc54cd96469232
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@nibanks</b> approved this pull request.</p>

<p>LGTM</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3055?email_source=notifications&amp;email_token=AFTOJK23HNHQSEQZDKR3FDTQKTUYZA5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFOABKQ#pullrequestreview-291242154">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4GMMSHASRK7AVIQZ3QKTUYZANCNFSM4IYYNZOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4L3K3RDJIHZ3S6HTDQKTUYZA5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFOABKQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3055?email_source=notifications\u0026email_token=AFTOJK23HNHQSEQZDKR3FDTQKTUYZA5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFOABKQ#pullrequestreview-291242154",
"url": "https://github.com/quicwg/base-drafts/pull/3055?email_source=notifications\u0026email_token=AFTOJK23HNHQSEQZDKR3FDTQKTUYZA5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFOABKQ#pullrequestreview-291242154",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d84f20c7670f_4d5f3f9dc54cd96469232--


From nobody Fri Sep 20 08:40: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 682FC12006B for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:40:04 -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 kiNgXGTHFO73 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:40: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 1B712120889 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 08:40:03 -0700 (PDT)
Date: Fri, 20 Sep 2019 08:40:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568994002; bh=1/5KG/fO4ee0EwNAguMQniCxo18gThMrXvw58dck6OY=; h=Date:From:To:Subject:From; b=l4VnwC/GpfITgbVibOAftLB9dBsMhFXOXAjDJzIVUwiUc4rPkFv/cZiHz/R3Xjnna TqgeDVE8YF2sKwcaqsxpfmwDQ56dBO3AMQvDEUkwy043mwIrqsrGJ+yFVGu8noJQqf rTD1m25aFixdmaYMZGFL4hvm020HXiXkXNKTALvo=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-no-1RTT-ack-delay/3696d8-ace2a5@github.com>
Subject: [quicwg/base-drafts] ace2a5: Remove obsolete text on ACKing CRYPTO frames
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xPgd3LPeXb039jv_96rzV0u6EfM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 15:40:04 -0000

  Branch: refs/heads/ianswett-no-1RTT-ack-delay
  Home:   https://github.com/quicwg/base-drafts
  Commit: ace2a505a3f8f96c2758458ec523047afe8db92e
      https://github.com/quicwg/base-drafts/commit/ace2a505a3f8f96c2758458ec523047afe8db92e
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-20 (Fri, 20 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Remove obsolete text on ACKing CRYPTO frames



From nobody Fri Sep 20 08: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 2F64012024E for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:40: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 nUXy9lcXOU4F for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:40:12 -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 97C2512006B for <quic-issues@ietf.org>; Fri, 20 Sep 2019 08:40:12 -0700 (PDT)
Date: Fri, 20 Sep 2019 08:40:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568994012; bh=RCud99tRWyjFSgyn6Az4720rKp0S1BQ5arXCwam2NiA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=iNAeizyUNQVYIFPuO5/s1FJskSzW8ajLbm0piB/fVK75uNGSNThe3y1NynvCQWUzo TQRg0jWGIyDKCuzirgrD7injOqzpA0KTmyZSSd3wSLfRIY45qabLqK/Ox2HrL35yFN QOlZVcdWirXj9qfkyEXhVUyScc5Nq2CtMPVqYyPc=
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/3055/push/4058271838@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3055@github.com>
References: <quicwg/base-drafts/pull/3055@github.com>
Subject: Re: [quicwg/base-drafts] Remove 1 RTT delayed ack requirement (#3055)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d84f2dbea87f_1b903fa269ccd9682399d8"; 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/KqEGUJvTmQq35Xol-4IGGSRNEuM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 15:40:14 -0000

----==_mimepart_5d84f2dbea87f_1b903fa269ccd9682399d8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

ace2a505a3f8f96c2758458ec523047afe8db92e  Remove obsolete text on ACKing CRYPTO frames


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3055/files/3696d8ce68c95063cc6e2e1b9392784f9cf25a24..ace2a505a3f8f96c2758458ec523047afe8db92e

----==_mimepart_5d84f2dbea87f_1b903fa269ccd9682399d8
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/ace2a505a3f8f96c2758458ec523047afe8db92e">ace2a50</a>  Remove obsolete text on ACKing CRYPTO 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/3055/files/3696d8ce68c95063cc6e2e1b9392784f9cf25a24..ace2a505a3f8f96c2758458ec523047afe8db92e?email_source=notifications&amp;email_token=AFTOJK43FAD3PHDVLXUQ4W3QKTVFXA5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNZXGM3TSOKQOVZWQIZUGA2TQMRXGE4DGOA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK36F2K22SKFSM6ROLTQKTVFXANCNFSM4IYYNZOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5P4QN6LUXI4LCU35TQKTVFXA5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNZXGM3TSOKQOVZWQIZUGA2TQMRXGE4DGOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3055/files/3696d8ce68c95063cc6e2e1b9392784f9cf25a24..ace2a505a3f8f96c2758458ec523047afe8db92e?email_source=notifications\u0026email_token=AFTOJK43FAD3PHDVLXUQ4W3QKTVFXA5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNZXGM3TSOKQOVZWQIZUGA2TQMRXGE4DGOA",
"url": "https://github.com/quicwg/base-drafts/pull/3055/files/3696d8ce68c95063cc6e2e1b9392784f9cf25a24..ace2a505a3f8f96c2758458ec523047afe8db92e?email_source=notifications\u0026email_token=AFTOJK43FAD3PHDVLXUQ4W3QKTVFXA5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNZXGM3TSOKQOVZWQIZUGA2TQMRXGE4DGOA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d84f2dbea87f_1b903fa269ccd9682399d8--


From nobody Fri Sep 20 08: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 A3E4B1208AF for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:40: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, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qntYIdXyeJTt for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:40:51 -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 2F29D1208A5 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 08:40:43 -0700 (PDT)
Date: Fri, 20 Sep 2019 08:40:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1568994042; bh=xXOPAMUKPjL0gO11EGUhQSqMkPJvxCwtSLIr8FDMPgY=; h=Date:From:To:Subject:From; b=xBnbMHDdIi+AhxdaAXhpb9AAy3v0SkR8Bn08J0jaErlAmO4klIP+eHchkDnZOQ2Uw Olg0Qt4u5s/+meg9HqLIiGhhRVhCM7C+qu+6UunYr+DfnH2qqMgQvQPfg9Risqu6e2 tQ7hrnfZQ7VwvgkR9/TLU3pBTqPhjiNgGC+4pZ/0=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/61b5b9-ae9044@github.com>
Subject: [quicwg/base-drafts] ae9044: Script updating gh-pages from ace2a505. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dhkgsoY3ORLRpBINkiV0DqW_nUw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 15:40:55 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ae904450e57359aaded95d54079b52df83d46b91
      https://github.com/quicwg/base-drafts/commit/ae904450e57359aaded95d54079b52df83d46b91
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-20 (Fri, 20 Sep 2019)

  Changed paths:
    M ianswett-no-1RTT-ack-delay/draft-ietf-quic-transport.html
    M ianswett-no-1RTT-ack-delay/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from ace2a505. [ci skip]



From nobody Fri Sep 20 08:52: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 2896B12024E for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:52:23 -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 0Fr05t7IXFLb for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 08:52:21 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AA4AA120019 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 08:52:21 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 06649520847 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 08:52:21 -0700 (PDT)
Date: Fri, 20 Sep 2019 08:52:20 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4LF5Y5EX3FUZNXN4V3SI3EJEVBNHHB22HNKU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3030/533610757@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3030@github.com>
References: <quicwg/base-drafts/issues/3030@github.com>
Subject: Re: [quicwg/base-drafts] Remove Requirement of an Acknowledgement per Round Trip (#3030)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d84f5b4ec3fb_13f53ffd7eacd968847d2"; 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/Z2sv-08BclAi1Utzi81XnRq-7xg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 20 Sep 2019 15:52:23 -0000

----==_mimepart_5d84f5b4ec3fb_13f53ffd7eacd968847d2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This is changing text in a SHOULD statement, so I believe it should be marked as 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/3030#issuecomment-533610757
----==_mimepart_5d84f5b4ec3fb_13f53ffd7eacd968847d2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This is changing text in a SHOULD statement, so I believe it should be marked as 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/3030?email_source=notifications&amp;email_token=AFTOJK77UJCW5M5XRSIDSVTQKTWTJA5CNFSM4IWR4NR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7HECBI#issuecomment-533610757">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2ZY6UQ3XLS46YBJX3QKTWTJANCNFSM4IWR4NRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5WG5E3UYIJ4SYO4K3QKTWTJA5CNFSM4IWR4NR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7HECBI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3030?email_source=notifications\u0026email_token=AFTOJK77UJCW5M5XRSIDSVTQKTWTJA5CNFSM4IWR4NR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7HECBI#issuecomment-533610757",
"url": "https://github.com/quicwg/base-drafts/issues/3030?email_source=notifications\u0026email_token=AFTOJK77UJCW5M5XRSIDSVTQKTWTJA5CNFSM4IWR4NR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7HECBI#issuecomment-533610757",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d84f5b4ec3fb_13f53ffd7eacd968847d2--


From nobody Fri Sep 20 17:49: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 3B990120916 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 17:49: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 VHHDa6bU9zYs for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 17:49:49 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 369C6120912 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 17:49:49 -0700 (PDT)
Date: Fri, 20 Sep 2019 17:49:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569026988; bh=QMIsGx6SD2l7KncBnnSw2ZZkUlXOOwZLCuCioaHKZU4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0IfsiIIeEt+44Uh7qAt9+zZzutF+2GcwYIEQ40wL8eztP7C+d7M2MbyUNfnpvJslD TZik1QrMu5WoSoBCDrE0oSDGqqE76QKO7yrO/lj3Htoe6ou2CvGY2I+XPlh3tPj9zy 7TsHWj6vQcIFvDm/8Tsebif6sCPGMfKCzX9DZNXo=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYTBS5REZNZCRWQNKV3SKTCZEVBNHHB3EM4KU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3053/533753588@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3053@github.com>
References: <quicwg/base-drafts/issues/3053@github.com>
Subject: Re: [quicwg/base-drafts] Padding requirement seems to be incorrect. (#3053)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8573ac67968_2b13fa0a70cd9601154bf"; 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/Vpd-IVb3XOwyYuLDXmVTKS7X6iE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Sep 2019 00:49:51 -0000

----==_mimepart_5d8573ac67968_2b13fa0a70cd9601154bf
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

It might be simpler to require every UDP packet that contains an Initial be padded to at least 1200?

I'm worried that only requiring that of Initial if there is no Handshake/1-RTT present might be tricky on the receiver: what do I do if I receive a non-padded Initial with Handshake but I can't decrypt the Handshake data?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3053#issuecomment-533753588
----==_mimepart_5d8573ac67968_2b13fa0a70cd9601154bf
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>It might be simpler to require every UDP packet that contains an Initial be padded to at least 1200?</p>
<p>I'm worried that only requiring that of Initial if there is no Handshake/1-RTT present might be tricky on the receiver: what do I do if I receive a non-padded Initial with Handshake but I can't decrypt the Handshake data?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications&amp;email_token=AFTOJK6BN7TINDJDD7XWTZ3QKVVSZA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IG55A#issuecomment-533753588">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK336M2IVG3QHPL6MK3QKVVSZANCNFSM4IYRI3TA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7IK4OAMTQEW2VMDUDQKVVSZA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IG55A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJK6BN7TINDJDD7XWTZ3QKVVSZA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IG55A#issuecomment-533753588",
"url": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJK6BN7TINDJDD7XWTZ3QKVVSZA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IG55A#issuecomment-533753588",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8573ac67968_2b13fa0a70cd9601154bf--


From nobody Fri Sep 20 18:06: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 51FB61200B5 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 18:06: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 YthVzO1hC7X8 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 18:06: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 3F61712008F for <quic-issues@ietf.org>; Fri, 20 Sep 2019 18:06:02 -0700 (PDT)
Date: Fri, 20 Sep 2019 18:06:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569027961; bh=/tKEmmH4mjIMPku0ftb/0x3MMcJxaiLK75WtjtqrlGM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=O34iF83uUNt5AuT2SD0fgdbBTU23OlriRYPlFICDWvDnkqviufSWc3EO03owDvLXk 0NUVmC+myyCO7ZUjFzXlWCQED5qJm9EKpbbrOevRw4RD2d1Sz79rAc8jk1MWVV0wGY mtzFj2BFeDC/iR/vaTNqzFvLTUikU6MXqVYbRMVw=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZFTOYE2MLFRZJHBRV3SK4ATEVBNHHB22URPQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3032/533754949@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3032@github.com>
References: <quicwg/base-drafts/issues/3032@github.com>
Subject: Re: [quicwg/base-drafts] Detectable Stateless Resets (#3032)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d857779766ef_3ac73fb8d90cd95c62958"; 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/j8UesVgcS0qWn80IKBPPaE8312M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Sep 2019 01:06:05 -0000

----==_mimepart_5d857779766ef_3ac73fb8d90cd95c62958
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Why would a server use a connection ID if stuck with a 4-tuple based infrastructure? The only reason is to allow stateless resets, which only requires a byte.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3032#issuecomment-533754949
----==_mimepart_5d857779766ef_3ac73fb8d90cd95c62958
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Why would a server use a connection ID if stuck with a 4-tuple based infrastructure? The only reason is to allow stateless resets, which only requires a byte.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications&amp;email_token=AFTOJK56FNCIMHN6PDFNFRLQKVXPTA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IHIRI#issuecomment-533754949">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6NSHIJFD7UK5AXP5TQKVXPTANCNFSM4IWUGA6Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2DRBBRIQJ5VOBMVULQKVXPTA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IHIRI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications\u0026email_token=AFTOJK56FNCIMHN6PDFNFRLQKVXPTA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IHIRI#issuecomment-533754949",
"url": "https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications\u0026email_token=AFTOJK56FNCIMHN6PDFNFRLQKVXPTA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IHIRI#issuecomment-533754949",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d857779766ef_3ac73fb8d90cd95c62958--


From nobody Fri Sep 20 19:20: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 4C22312008F for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 19:20: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 ruR2UWfN4KjD for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 19:20: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 DB85812004F for <quic-issues@ietf.org>; Fri, 20 Sep 2019 19:20:22 -0700 (PDT)
Date: Fri, 20 Sep 2019 19:20:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569032422; bh=Pb/bvlMO2of5sVCg3YtcIMMSkis7VasRmMTwfin6eVQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Ad5kewAqX5WoEJxwjabdLeRc+/mBHJawt5t4ZqyagnqxnLCijiNjI6uN2Yb+cisgQ d1lQ90h9TVbgh0cBv7vcgB639PhgTbYgVweIfJde4ZgK6scMHN3POihLQxnHgcJWMn R9J7UgZjAWgc7dlQWnprqp3Xfm0LXYL+mkJuo0Ro=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3SP6YMHRSEPNHOHO53SK5WNEVBNHHB3EM4KU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3053/533759994@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3053@github.com>
References: <quicwg/base-drafts/issues/3053@github.com>
Subject: Re: [quicwg/base-drafts] Padding requirement seems to be incorrect. (#3053)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8588e6f071_4cd63f82fdecd9601061b6"; 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/pig_VWVSQCaDo3qEe6yvL1xK8eQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Sep 2019 02:20:25 -0000

----==_mimepart_5d8588e6f071_4cd63f82fdecd9601061b6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson 
>  I think that it should be any packets that contain Initial and don't contain Handshake or 1-RTT packets.

What we are talking here is a requirement specific to clients, and I am not sure if a client has a chance of sending Initial and Handshake packets at the same time. Quoting [Section 4.9.1](https://quicwg.org/base-drafts/draft-ietf-quic-tls.html#rfc.section.4.9.1) of the TLS draft, "_a client MUST discard Initial keys when it first sends a Handshake packet_."

And even if there is a possibility of a client sending Initial and Handshake at the same moment, I do not think requiring the client to pad a packet that contains only an Initial is correct, as coalescing is an optional behavior to the send side. It would mean that clients coalescing the QUIC packets would send a non-padded packet, while clients not coalescing would send a padded Initial packet. That seems like an odd 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/issues/3053#issuecomment-533759994
----==_mimepart_5d8588e6f071_4cd63f82fdecd9601061b6
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></p>
<blockquote>
<p>I think that it should be any packets that contain Initial and don't contain Handshake or 1-RTT packets.</p>
</blockquote>
<p>What we are talking here is a requirement specific to clients, and I am not sure if a client has a chance of sending Initial and Handshake packets at the same time. Quoting <a href="https://quicwg.org/base-drafts/draft-ietf-quic-tls.html#rfc.section.4.9.1" rel="nofollow">Section 4.9.1</a> of the TLS draft, "<em>a client MUST discard Initial keys when it first sends a Handshake packet</em>."</p>
<p>And even if there is a possibility of a client sending Initial and Handshake at the same moment, I do not think requiring the client to pad a packet that contains only an Initial is correct, as coalescing is an optional behavior to the send side. It would mean that clients coalescing the QUIC packets would send a non-padded packet, while clients not coalescing would send a padded Initial packet. That seems like an odd 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/issues/3053?email_source=notifications&amp;email_token=AFTOJKZAXFUNJMCD7C5CN5LQKWAGNA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IIP6Q#issuecomment-533759994">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3CTBZ27OAWNKVZ4JTQKWAGNANCNFSM4IYRI3TA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6RMEWB2VCKSCMK3BDQKWAGNA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IIP6Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJKZAXFUNJMCD7C5CN5LQKWAGNA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IIP6Q#issuecomment-533759994",
"url": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJKZAXFUNJMCD7C5CN5LQKWAGNA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IIP6Q#issuecomment-533759994",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8588e6f071_4cd63f82fdecd9601061b6--


From nobody Fri Sep 20 20:26: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 B2F3C12004A for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 20:26: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 18ijlfp7EwOb for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 20:26:29 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3A64012004F for <quic-issues@ietf.org>; Fri, 20 Sep 2019 20:26:29 -0700 (PDT)
Date: Fri, 20 Sep 2019 20:26:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569036388; bh=OXIl2ImAc3KxS6+XQClUCJtTBLmzw9dHG7WA4rnTdz4=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=2VRJjn9HwD/11WMge7s0VxHHY4lDKh5T4rOKxbesX1ebNLu21vdzH3WE4mtts1g6U RkorO3zdq1H+r3Yr/owRB2r/hGgSJbQVQPrVI40Gpqx3e/x2O4OB/ttid0q8/FtTUA 6z5aQNlPQ7Xq6805PT0FFL7XywPxxaesGJkjRplI=
From: Benjamin Saunders <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK46HE4V3IGWKDQCFH53SLMPJEVBNHHB3GNALI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3056@github.com>
Subject: [quicwg/base-drafts] Lost client Initial is never retransmitted (#3056)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8598642625e_5eb93fd33aecd9644409d"; 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/akgAo5hFxSar3aGJ0M71wnU1jug>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Sep 2019 03:26:31 -0000

----==_mimepart_5d8598642625e_5eb93fd33aecd9644409d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

As of https://github.com/quicwg/base-drafts/pull/2806, if the client's Initial is lost, there is no required behavior that leads to it being retransmitted. Because the client has received no ACKs, no `loss_time` is set, and no loss is detected, leading to the client only sending probe packets, which are not required to bear any particular data ("A probe packet **MAY** carry retransmitted unacknowledged data") so long as they are ACK-eliciting. The server, having no established connection state, cannot do anything with these packets. 

Quinn probes are currently a single PING frame (plus padding, when appropriate) for simplicity, so implementing the new logic immediately broke our tests. If recovery logic now requires probe packets to bear specific data to function correctly in certain circumstances, this should be specified explicitly.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3056
----==_mimepart_5d8598642625e_5eb93fd33aecd9644409d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>As of <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>, if the client's Initial is lost, there is no required behavior that leads to it being retransmitted. Because the client has received no ACKs, no <code>loss_time</code> is set, and no loss is detected, leading to the client only sending probe packets, which are not required to bear any particular data ("A probe packet <strong>MAY</strong> carry retransmitted unacknowledged data") so long as they are ACK-eliciting. The server, having no established connection state, cannot do anything with these packets.</p>
<p>Quinn probes are currently a single PING frame (plus padding, when appropriate) for simplicity, so implementing the new logic immediately broke our tests. If recovery logic now requires probe packets to bear specific data to function correctly in certain circumstances, this should be specified explicitly.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications&amp;email_token=AFTOJKYU3W5SJ6XI77W45LTQKWH6JA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMZUBNA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZVEIQ2VJS6NR4ZZH3QKWH6JANCNFSM4IY4XW2A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYR6H4N5ICFFTXUZ4TQKWH6JA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMZUBNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications\u0026email_token=AFTOJKYU3W5SJ6XI77W45LTQKWH6JA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMZUBNA",
"url": "https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications\u0026email_token=AFTOJKYU3W5SJ6XI77W45LTQKWH6JA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMZUBNA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8598642625e_5eb93fd33aecd9644409d--


From nobody Fri Sep 20 21: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 1E9AB120052 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 21:33:06 -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 EyiQt0hNxcL4 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 21:33:04 -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 7333F12004F for <quic-issues@ietf.org>; Fri, 20 Sep 2019 21:33:04 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id E75BB120279 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 21:33:03 -0700 (PDT)
Date: Fri, 20 Sep 2019 21:33:03 -0700
From: Tatsuhiro Tsujikawa <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4CKBXPBMZHN3UHDNF3SLNH7EVBNHHB3GNALI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3056/533766800@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3056@github.com>
References: <quicwg/base-drafts/issues/3056@github.com>
Subject: Re: [quicwg/base-drafts] Lost client Initial is never retransmitted (#3056)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d85a7ffa0db2_50653fc2e4ecd95c1592b1"; 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/D4jcqcBmaLU1kc1D7VRmV_NFSN8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Sep 2019 04:33:06 -0000

----==_mimepart_5d85a7ffa0db2_50653fc2e4ecd95c1592b1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I also hit this issue too.  After several hours tries and error, I came to the conclusion that implementation should mark the in-flight Initial packet lost in this case, and resend it.  Draft-22 has explicit statement that implementation should not mark in-flight crypto packet lost, but draft-23 does not have it anymore.
BTW, draft-23 does not allow PING in Initial or Handshake 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/3056#issuecomment-533766800
----==_mimepart_5d85a7ffa0db2_50653fc2e4ecd95c1592b1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I also hit this issue too.  After several hours tries and error, I came to the conclusion that implementation should mark the in-flight Initial packet lost in this case, and resend it.  Draft-22 has explicit statement that implementation should not mark in-flight crypto packet lost, but draft-23 does not have it anymore.<br>
BTW, draft-23 does not allow PING in Initial or Handshake 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/3056?email_source=notifications&amp;email_token=AFTOJK4LXIX3SO4A7HIAV4TQKWPX7A5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IKFEA#issuecomment-533766800">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7DH5ERTPHTRU6ICX3QKWPX7ANCNFSM4IY4XW2A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYFXCJF4BB373VKHIDQKWPX7A5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IKFEA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications\u0026email_token=AFTOJK4LXIX3SO4A7HIAV4TQKWPX7A5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IKFEA#issuecomment-533766800",
"url": "https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications\u0026email_token=AFTOJK4LXIX3SO4A7HIAV4TQKWPX7A5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IKFEA#issuecomment-533766800",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d85a7ffa0db2_50653fc2e4ecd95c1592b1--


From nobody Fri Sep 20 21:53: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 F11B8120052 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 21:53: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 O135q4iXTXag for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 21:53: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 680E812004F for <quic-issues@ietf.org>; Fri, 20 Sep 2019 21:53:36 -0700 (PDT)
Date: Fri, 20 Sep 2019 21:53:35 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569041615; bh=xs7s8ySHxYYyWDgot2qnSiNeswDGdJrSbm/AxO1I7lE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZJED4pvFPBcKTk9zYyUf0q3fdGxfFcuW9pEZPh5tATr4rWZth0xm7K9umKqmOnSzA V4yUngiHvs5Jdd1evvNRQXC0wGKI67qU+GCzYVMWHyigE0R3tpx1/AlG+1Kwz3qkwX XVhJOcT1ejgLiajdb4b/uLF1AjQp4QfD2XXMsKeQ=
From: Benjamin Saunders <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7GTODAOF2DFKVLEDV3SLWV7EVBNHHB3GNALI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3056/533767769@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3056@github.com>
References: <quicwg/base-drafts/issues/3056@github.com>
Subject: Re: [quicwg/base-drafts] Lost client Initial is never retransmitted (#3056)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d85accf66be9_38c3f8306ecd95c2137ad"; 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/gqH67mA0RVvswx9eZIVyuoi7zX0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Sep 2019 04:53:38 -0000

----==_mimepart_5d85accf66be9_38c3f8306ecd95c2137ad
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> implementation should mark the in-flight Initial packet lost

Why not retransmit the data without declaring the in-flight packet lost?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3056#issuecomment-533767769
----==_mimepart_5d85accf66be9_38c3f8306ecd95c2137ad
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>implementation should mark the in-flight Initial packet lost</p>
</blockquote>
<p>Why not retransmit the data without declaring the in-flight packet lost?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications&amp;email_token=AFTOJK3IRVB52KFQXXPJ4GTQKWSE7A5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IKMWI#issuecomment-533767769">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6B2VQRNY4YGGRVCPTQKWSE7ANCNFSM4IY4XW2A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6UALR72WGZZ6XSTALQKWSE7A5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IKMWI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications\u0026email_token=AFTOJK3IRVB52KFQXXPJ4GTQKWSE7A5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IKMWI#issuecomment-533767769",
"url": "https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications\u0026email_token=AFTOJK3IRVB52KFQXXPJ4GTQKWSE7A5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IKMWI#issuecomment-533767769",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d85accf66be9_38c3f8306ecd95c2137ad--


From nobody Fri Sep 20 22:03: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 BB8EA120072 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 22:03:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 Xw8emnPGAm_K for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 22:03: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 3751D12004F for <quic-issues@ietf.org>; Fri, 20 Sep 2019 22:03:31 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 59BFE1C02FD for <quic-issues@ietf.org>; Fri, 20 Sep 2019 22:03:30 -0700 (PDT)
Date: Fri, 20 Sep 2019 22:03:30 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-1200-payloads/3801eb-6cfcbe@github.com>
Subject: [quicwg/base-drafts] 6cfcbe: Closes #3053 too
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/H6qp90HsBZy3z_VvrppVC0jzxGE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Sep 2019 05:03:33 -0000

  Branch: refs/heads/ianswett-1200-payloads
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6cfcbe26385f17072ccd330aea619f65bf3bdcb4
      https://github.com/quicwg/base-drafts/commit/6cfcbe26385f17072ccd330aea619f65bf3bdcb4
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-21 (Sat, 21 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Closes #3053 too



From nobody Fri Sep 20 22: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 A5B0C12004F for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 22:03:43 -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 tir7rIc-NNvK for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 22:03:40 -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 8F81D120072 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 22:03:40 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id DE933A03B2 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 22:03:39 -0700 (PDT)
Date: Fri, 20 Sep 2019 22:03:39 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3051/push/4060071700@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3051@github.com>
References: <quicwg/base-drafts/pull/3051@github.com>
Subject: Re: [quicwg/base-drafts] Clients send datagrams with 1200 byte payloads (#3051)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d85af2bcec9e_20843fe7702cd96c70465"; 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/qMOjEtSFENhlOCrCWne96knxzmA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Sep 2019 05:03:44 -0000

----==_mimepart_5d85af2bcec9e_20843fe7702cd96c70465
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

6cfcbe26385f17072ccd330aea619f65bf3bdcb4  Closes #3053 too


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3051/files/3801ebda3af7418505f1aed87138ae72a3178829..6cfcbe26385f17072ccd330aea619f65bf3bdcb4

----==_mimepart_5d85af2bcec9e_20843fe7702cd96c70465
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/6cfcbe26385f17072ccd330aea619f65bf3bdcb4">6cfcbe2</a>  Closes #3053 too</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3051/files/3801ebda3af7418505f1aed87138ae72a3178829..6cfcbe26385f17072ccd330aea619f65bf3bdcb4?email_source=notifications&amp;email_token=AFTOJK7ZVWD26556MSACBATQKWTKXA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNBXGA3DCNSQOVZWQIZUGA3DAMBXGE3TAMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7J23PQ3W7YLQP6O2TQKWTKXANCNFSM4IYQIHGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3FBO7TW2DO4YNR57LQKWTKXA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNBXGA3DCNSQOVZWQIZUGA3DAMBXGE3TAMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3051/files/3801ebda3af7418505f1aed87138ae72a3178829..6cfcbe26385f17072ccd330aea619f65bf3bdcb4?email_source=notifications\u0026email_token=AFTOJK7ZVWD26556MSACBATQKWTKXA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNBXGA3DCNSQOVZWQIZUGA3DAMBXGE3TAMA",
"url": "https://github.com/quicwg/base-drafts/pull/3051/files/3801ebda3af7418505f1aed87138ae72a3178829..6cfcbe26385f17072ccd330aea619f65bf3bdcb4?email_source=notifications\u0026email_token=AFTOJK7ZVWD26556MSACBATQKWTKXA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNBXGA3DCNSQOVZWQIZUGA3DAMBXGE3TAMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d85af2bcec9e_20843fe7702cd96c70465--


From nobody Fri Sep 20 22:04: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 B1126120052 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 22:04:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.926
X-Spam-Level: 
X-Spam-Status: No, score=-6.926 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.026, 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 OvGpmwSnkEAU for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 22:04: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 6156612004F for <quic-issues@ietf.org>; Fri, 20 Sep 2019 22:04:11 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id A31FCC60E58 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 22:04:10 -0700 (PDT)
Date: Fri, 20 Sep 2019 22:04:10 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ae9044-eacb38@github.com>
Subject: [quicwg/base-drafts] eacb38: Script updating gh-pages from 6cfcbe26. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/YV3XelrYjke8tQwYMjA-Qbg6bnM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Sep 2019 05:04:13 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: eacb389c4621e54a71bf4e336d6a67afca78baf4
      https://github.com/quicwg/base-drafts/commit/eacb389c4621e54a71bf4e336d6a67afca78baf4
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-21 (Sat, 21 Sep 2019)

  Changed paths:
    M ianswett-1200-payloads/draft-ietf-quic-http.html
    M ianswett-1200-payloads/draft-ietf-quic-http.txt
    M ianswett-1200-payloads/draft-ietf-quic-invariants.html
    M ianswett-1200-payloads/draft-ietf-quic-invariants.txt
    M ianswett-1200-payloads/draft-ietf-quic-qpack.html
    M ianswett-1200-payloads/draft-ietf-quic-qpack.txt
    M ianswett-1200-payloads/draft-ietf-quic-recovery.html
    M ianswett-1200-payloads/draft-ietf-quic-recovery.txt
    M ianswett-1200-payloads/draft-ietf-quic-tls.html
    M ianswett-1200-payloads/draft-ietf-quic-tls.txt
    M ianswett-1200-payloads/draft-ietf-quic-transport.html
    M ianswett-1200-payloads/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6cfcbe26. [ci skip]



From nobody Fri Sep 20 22: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 589F1120096 for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 22:22:44 -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 MkHmInMwpmCu for <quic-issues@ietfa.amsl.com>; Fri, 20 Sep 2019 22:22:43 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 16AB3120052 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 22:22:43 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 278C0A0054 for <quic-issues@ietf.org>; Fri, 20 Sep 2019 22:22:42 -0700 (PDT)
Date: Fri, 20 Sep 2019 22:22:42 -0700
From: Tatsuhiro Tsujikawa <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZCBHGZHHHDBRLNNLV3SLTCFEVBNHHB3GNALI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3056/533769324@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3056@github.com>
References: <quicwg/base-drafts/issues/3056@github.com>
Subject: Re: [quicwg/base-drafts] Lost client Initial is never retransmitted (#3056)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d85b3a2183bb_2be3fbf750cd964218160"; 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/jr0DXWKbTotze8Et6lEFq5WlH00>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Sep 2019 05:22:44 -0000

----==_mimepart_5d85b3a2183bb_2be3fbf750cd964218160
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think it is rather implementation detail to internally mark in-flight packet lost but keep it in order to catch late ACK.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3056#issuecomment-533769324
----==_mimepart_5d85b3a2183bb_2be3fbf750cd964218160
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I think it is rather implementation detail to internally mark in-flight packet lost but keep it in order to catch late ACK.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications&amp;email_token=AFTOJK2Y4VEXLVSJZZSCE53QKWVSFA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IKY3A#issuecomment-533769324">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4QANUKXQZEHJR4X63QKWVSFANCNFSM4IY4XW2A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3LPL26LUVJUP3HPY3QKWVSFA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IKY3A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications\u0026email_token=AFTOJK2Y4VEXLVSJZZSCE53QKWVSFA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IKY3A#issuecomment-533769324",
"url": "https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications\u0026email_token=AFTOJK2Y4VEXLVSJZZSCE53QKWVSFA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IKY3A#issuecomment-533769324",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d85b3a2183bb_2be3fbf750cd964218160--


From nobody Sat Sep 21 14:17: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 E78B91200F8 for <quic-issues@ietfa.amsl.com>; Sat, 21 Sep 2019 14:17: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 mXy3rh4NGaPQ for <quic-issues@ietfa.amsl.com>; Sat, 21 Sep 2019 14:17:30 -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 414C6120099 for <quic-issues@ietf.org>; Sat, 21 Sep 2019 14:17:30 -0700 (PDT)
Date: Sat, 21 Sep 2019 14:17:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569100649; bh=nMr5XpqZdIwyD7vUqMbXikG/JTTDQX5rkvf84Y6vzaI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vr4VQ4o8wM+xRDsIFfifcnhXJHYU3+8mvAubtXY6evDKXSsh81uTY2+QLdfsFAZYm qPbPI6iYyF/0DmANwh6WVFX/rE1UhjbAfInFSgiN0V09ienQ4lqbuuyxkbXW9sHnZs Pw0ZsrxEbLmyEaTUcPfz4avVuEQdCttSVxxbzqjY=
From: Benjamin Saunders <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3TL3DDVWPRBRB53SV3SPJ7TEVBNHHB3GNALI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3056/533830875@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3056@github.com>
References: <quicwg/base-drafts/issues/3056@github.com>
Subject: Re: [quicwg/base-drafts] Lost client Initial is never retransmitted (#3056)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d869369564a1_43de3fb2882cd95c59054e"; 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/9UH8FfmG4fdh4YvxJVewsaIotLg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 21 Sep 2019 21:17:32 -0000

----==_mimepart_5d869369564a1_43de3fb2882cd95c59054e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

There's a related problem where if the server's first flight goes missing, the only response the new logic has is to send a probe at unspecified, i.e. highest known, encryption level. The server will generally have 1-RTT keys at this point, so it sends a 1-RTT probe, which the client, not having received anything prior, cannot decrypt and drops.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3056#issuecomment-533830875
----==_mimepart_5d869369564a1_43de3fb2882cd95c59054e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>There's a related problem where if the server's first flight goes missing, the only response the new logic has is to send a probe at unspecified, i.e. highest known, encryption level. The server will generally have 1-RTT keys at this point, so it sends a 1-RTT probe, which the client, not having received anything prior, cannot decrypt and drops.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications&amp;email_token=AFTOJK7JWI4FHG4U33ULVNLQK2FOTA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IZZWY#issuecomment-533830875">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK52KKYG6FL2UB36IELQK2FOTANCNFSM4IY4XW2A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2TX4PIEO7HLWWOCZDQK2FOTA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IZZWY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications\u0026email_token=AFTOJK7JWI4FHG4U33ULVNLQK2FOTA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IZZWY#issuecomment-533830875",
"url": "https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications\u0026email_token=AFTOJK7JWI4FHG4U33ULVNLQK2FOTA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7IZZWY#issuecomment-533830875",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d869369564a1_43de3fb2882cd95c59054e--


From nobody Sun Sep 22 16:39: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 D8FAB120074 for <quic-issues@ietfa.amsl.com>; Sun, 22 Sep 2019 16:39: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 WeLOSHSlPUT0 for <quic-issues@ietfa.amsl.com>; Sun, 22 Sep 2019 16:39: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 0CC85120024 for <quic-issues@ietf.org>; Sun, 22 Sep 2019 16:39:43 -0700 (PDT)
Date: Sun, 22 Sep 2019 16:39:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569195582; bh=HkZGWtTQxTi4Im0I5cEq+YHxJ7BkoSY+6ioLoiVY0o4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MWmdCZlzVchidw9il5Ol43CGKocIn8epUXCvREwiL9tjR7/7SZrmDyglnUNj/H7Qw 9jGzXjDJNuNUfyEKBw9fIeG7e79ILRuIvIAqyKKg7y2sSSZZjWgEYlCi2R4afyzNbv rPk6vFjelBy5gCVck6g0PJWOr6Ew3qC8p8EB4zVs=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZCHEHC4MNYVWY62G53SUVK5EVBNHHB3EM4KU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3053/533928935@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3053@github.com>
References: <quicwg/base-drafts/issues/3053@github.com>
Subject: Re: [quicwg/base-drafts] Padding requirement seems to be incorrect. (#3053)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d88063e17b36_7b423ff4d36cd95c119112"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EqNoXasGmNWzM1WJtBLcxvtSSdY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 22 Sep 2019 23:39:45 -0000

----==_mimepart_5d88063e17b36_7b423ff4d36cd95c119112
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> I am not sure if a client has a chance of sending Initial and Handshake packets at the same time

And yet another issue gets sucked into the wormhole that is the key discard mess.  I guess that we will have to make a final determination based on the outcome of that stuff.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3053#issuecomment-533928935
----==_mimepart_5d88063e17b36_7b423ff4d36cd95c119112
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>I am not sure if a client has a chance of sending Initial and Handshake packets at the same time</p>
</blockquote>
<p>And yet another issue gets sucked into the wormhole that is the key discard mess.  I guess that we will have to make a final determination based on the outcome of that stuff.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications&amp;email_token=AFTOJK3JHGIXTRKDAFDXDODQK7635A5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7JRXZY#issuecomment-533928935">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3AZW2NM5O3CRP5SHDQK7635ANCNFSM4IYRI3TA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ3A4MKQI4TJDEZEWLQK7635A5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7JRXZY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJK3JHGIXTRKDAFDXDODQK7635A5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7JRXZY#issuecomment-533928935",
"url": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJK3JHGIXTRKDAFDXDODQK7635A5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7JRXZY#issuecomment-533928935",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d88063e17b36_7b423ff4d36cd95c119112--


From nobody Sun Sep 22 19:39: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 94CF61200EF for <quic-issues@ietfa.amsl.com>; Sun, 22 Sep 2019 19:39: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 h4-fmdnrQF-J for <quic-issues@ietfa.amsl.com>; Sun, 22 Sep 2019 19:39: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 AA7C1120041 for <quic-issues@ietf.org>; Sun, 22 Sep 2019 19:39:40 -0700 (PDT)
Date: Sun, 22 Sep 2019 19:39:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569206379; bh=x2SOnynJvR4adsX9snqsQABrDOODzCcvAOpT9y/wwtk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Ie+8pGj/sYS+88C3Cwpc8na7zCBg5mg9DyJv44IB3fbDtWba8NJ6H/gpM+QPtgtzT ePZZ7DGey6UMYgfW3SrQuskPmfebnAsUcIKQPBIravbyQdGdD19OSsktI4K9OyAYTf h05OZtU8GoCOwJ2dGuEPXmPuZePjRiRuZUXMHgHw=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6EEA5HF7UTZ4YYATF3SVKNXEVBNHHB3EM4KU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3053/533944616@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3053@github.com>
References: <quicwg/base-drafts/issues/3053@github.com>
Subject: Re: [quicwg/base-drafts] Padding requirement seems to be incorrect. (#3053)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d88306bb5ff5_273b3fb3278cd95c22954b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jAqUhEtIXn4pp6mojrxdNl7Zw5k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 02:39:43 -0000

----==_mimepart_5d88306bb5ff5_273b3fb3278cd95c22954b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

On consideration, I think that the requirement is simple and we don't have to stress about interactions with discarding keys.  If the packet contains an Initial, it's possible that the Initial packet is the only packet that can be used by a server.  Therefore, the datagram should be padded to 1200, regardless of whatever else is included.

So we strike the "only" and we're good.  See 6cfcbe26385f17072ccd330aea619f65bf3bdcb4.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3053#issuecomment-533944616
----==_mimepart_5d88306bb5ff5_273b3fb3278cd95c22954b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>On consideration, I think that the requirement is simple and we don't have to stress about interactions with discarding keys.  If the packet contains an Initial, it's possible that the Initial packet is the only packet that can be used by a server.  Therefore, the datagram should be padded to 1200, regardless of whatever else is included.</p>
<p>So we strike the "only" and we're good.  See <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/quicwg/base-drafts/commit/6cfcbe26385f17072ccd330aea619f65bf3bdcb4/hovercard" href="https://github.com/quicwg/base-drafts/commit/6cfcbe26385f17072ccd330aea619f65bf3bdcb4"><tt>6cfcbe2</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/3053?email_source=notifications&amp;email_token=AFTOJKYEU2OSLHCZD4EXNKTQLAT6XA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7JVSKA#issuecomment-533944616">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4S4WRYPP4JTW7IYU3QLAT6XANCNFSM4IYRI3TA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7I5JG2Z6FUCICN6DTQLAT6XA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7JVSKA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJKYEU2OSLHCZD4EXNKTQLAT6XA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7JVSKA#issuecomment-533944616",
"url": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJKYEU2OSLHCZD4EXNKTQLAT6XA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7JVSKA#issuecomment-533944616",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d88306bb5ff5_273b3fb3278cd95c22954b--


From nobody Mon Sep 23 00:17: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 1843D120114 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 00:17: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 eHouDZOM4hlJ for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 00:17: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 9AA7A12004F for <quic-issues@ietf.org>; Mon, 23 Sep 2019 00:17:21 -0700 (PDT)
Date: Mon, 23 Sep 2019 00:17:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569223040; bh=s/fHdIrOkOC3NqqxwgFs5qwx3u3LFfUhg8VsRebwrcw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xFy4vBFZ010u1GP11PZUMgddPkavcuVKMUqmck1MNDWhv7OXUkb1qWBVnUWIAe9xB GaEshI8Ec399B0/6/F1iCRkjQ3pQFTrorWbLU38fpBpyV1EDq9hpaMW3wrZGk6/vak qA/LVt+Yp6NFwNkaEdcisqZ50fbtPYRLQ+qVhwBM=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4POD6OI5ZOHXMX7IF3SWK7BEVBNHHB3EXW64@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3054/533984889@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3054@github.com>
References: <quicwg/base-drafts/issues/3054@github.com>
Subject: Re: [quicwg/base-drafts] Label for key updates (#3054)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d88718067776_33b03feb5e0cd96884438"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2K0SpieJ3jTdrWXtho8znkC-GIQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 07:17:23 -0000

----==_mimepart_5d88718067776_33b03feb5e0cd96884438
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

There's a difference between defining the function and providing a much clearer example of what the function is for TLS 1.3.  I've chosen the latter on the basis that the cryptographic handshake function provides us with a KDF and that we shouldn't be making our own if we can avoid it.  If TLS 1.4 wants to use a different KDF, then that will be used here instead.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3054#issuecomment-533984889
----==_mimepart_5d88718067776_33b03feb5e0cd96884438
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>There's a difference between defining the function and providing a much clearer example of what the function is for TLS 1.3.  I've chosen the latter on the basis that the cryptographic handshake function provides us with a KDF and that we shouldn't be making our own if we can avoid it.  If TLS 1.4 wants to use a different KDF, then that will be used here instead.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3054?email_source=notifications&amp;email_token=AFTOJKZBKGMVCUVZIFCYWV3QLBUQBA5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7J7M6I#issuecomment-533984889">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ5O3UTKFCUQTWIJX3QLBUQBANCNFSM4IYTHQGA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7E7LOSWL6BKMGSW5TQLBUQBA5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7J7M6I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3054?email_source=notifications\u0026email_token=AFTOJKZBKGMVCUVZIFCYWV3QLBUQBA5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7J7M6I#issuecomment-533984889",
"url": "https://github.com/quicwg/base-drafts/issues/3054?email_source=notifications\u0026email_token=AFTOJKZBKGMVCUVZIFCYWV3QLBUQBA5CNFSM4IYTHQGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7J7M6I#issuecomment-533984889",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d88718067776_33b03feb5e0cd96884438--


From nobody Mon Sep 23 00:35: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 605A0120052 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 00:35: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 3VxSjNqfhQGS for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 00:35:17 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 15CBB12004F for <quic-issues@ietf.org>; Mon, 23 Sep 2019 00:35:16 -0700 (PDT)
Date: Mon, 23 Sep 2019 00:35:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569224115; bh=YPzAG+TG+KbvJ5/HktUlKf8QBvi+UbRQBHIby6ejbbk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=AFggPdL/V1Lf0q5x2dzzvfXUsgrD8heZe3rwtAMBYy6HxBAwKLhLoFUeAAQWyWPt6 PGOS5iX3+4w9m1QmUuDfNAWPwC/3DtWoV6aKap5pZhq0mhWIBESKfQ1j14nEvTU9GS 3PZY1Xrq7N0Cvnwp/HQ5rFmjJO8xsf5mX7xfiFJI=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYF3IO2EWX4DEPJMJF3SW3EHEVBNHHB3EM4KU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3053/533989748@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3053@github.com>
References: <quicwg/base-drafts/issues/3053@github.com>
Subject: Re: [quicwg/base-drafts] Padding requirement seems to be incorrect. (#3053)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8875b3cf124_77ed3f8c1dccd95c3317c2"; 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/cgtYBtCKfp1ZTO0BrqNa6qweAkc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 07:35:19 -0000

----==_mimepart_5d8875b3cf124_77ed3f8c1dccd95c3317c2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I wonder - if 0-RTT does not have huge certificates, would it not make sense to permit small packets in this case, provided the auth token validates. But in other cases 1200 bytes must be provided. But since 0-RTT might fail, this could then require a retransmission. Restrained devices might be prefer the latter.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3053#issuecomment-533989748
----==_mimepart_5d8875b3cf124_77ed3f8c1dccd95c3317c2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I wonder - if 0-RTT does not have huge certificates, would it not make sense to permit small packets in this case, provided the auth token validates. But in other cases 1200 bytes must be provided. But since 0-RTT might fail, this could then require a retransmission. Restrained devices might be prefer the latter.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications&amp;email_token=AFTOJK73Z6J5L6HDZSRFUFLQLBWTHA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7KAS5A#issuecomment-533989748">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4NKNEKYUNF6QWISNLQLBWTHANCNFSM4IYRI3TA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7GUFRONQOVYMUXLX3QLBWTHA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7KAS5A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJK73Z6J5L6HDZSRFUFLQLBWTHA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7KAS5A#issuecomment-533989748",
"url": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJK73Z6J5L6HDZSRFUFLQLBWTHA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7KAS5A#issuecomment-533989748",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8875b3cf124_77ed3f8c1dccd95c3317c2--


From nobody Mon Sep 23 00:53: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 BFAD512011C for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 00:53:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 sM6_fQgwfYIB for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 00:53:53 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1653E12004F for <quic-issues@ietf.org>; Mon, 23 Sep 2019 00:53:53 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id E77D82C0092 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 00:53:51 -0700 (PDT)
Date: Mon, 23 Sep 2019 00:53:51 -0700
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2925/push/4064276597@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 to security considerations (#2925)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d887a0fd823f_12d83f82244cd96c24309"; 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/xyjCvJBkdabhVVOl5-XK91hrt9Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 07:53:55 -0000

----==_mimepart_5d887a0fd823f_12d83f82244cd96c24309
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@erickinnear pushed 2 commits.

5e14c63697de9794cbc3cff171b1df481a45d6d3  Merge branch 'master' into ek/migration_threat_model
510536d8109fe5635c7bf86566368b20fbcf2b66  Update with modified terminology and new text around active and passive attacks


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2925/files/0ba5b02857f64d231a7ece491c9d26dd5a0b353a..510536d8109fe5635c7bf86566368b20fbcf2b66

----==_mimepart_5d887a0fd823f_12d83f82244cd96c24309
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/erickinnear" class="user-mention">@erickinnear</a> pushed 2 commits.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/5e14c63697de9794cbc3cff171b1df481a45d6d3">5e14c63</a>  Merge branch &#39;master&#39; into ek/migration_threat_model</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/510536d8109fe5635c7bf86566368b20fbcf2b66">510536d</a>  Update with modified terminology and new text around active and passive attacks</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#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/0ba5b02857f64d231a7ece491c9d26dd5a0b353a..510536d8109fe5635c7bf86566368b20fbcf2b66?email_source=notifications&amp;email_token=AFTOJK7WACI6H43EQAVZK2TQLBYY7A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZUGA3DIMRXGY2TSNY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZHL2U55AA2VQFV56TQLBYY7ANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7UOU4DTQLQQFM6S4LQLBYY7A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZUGA3DIMRXGY2TSNY.gif" height="1" width="1" 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/0ba5b02857f64d231a7ece491c9d26dd5a0b353a..510536d8109fe5635c7bf86566368b20fbcf2b66?email_source=notifications\u0026email_token=AFTOJK7WACI6H43EQAVZK2TQLBYY7A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZUGA3DIMRXGY2TSNY",
"url": "https://github.com/quicwg/base-drafts/pull/2925/files/0ba5b02857f64d231a7ece491c9d26dd5a0b353a..510536d8109fe5635c7bf86566368b20fbcf2b66?email_source=notifications\u0026email_token=AFTOJK7WACI6H43EQAVZK2TQLBYY7A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZUGA3DIMRXGY2TSNY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d887a0fd823f_12d83f82244cd96c24309--


From nobody Mon Sep 23 00:56: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 A80F112011C for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 00:56:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 UQQ3B7YM3IIh for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 00:56:57 -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 12CBB12004F for <quic-issues@ietf.org>; Mon, 23 Sep 2019 00:56:57 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 4123FC60686 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 00:56:56 -0700 (PDT)
Date: Mon, 23 Sep 2019 00:56:56 -0700
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY3REHZU2E75TNFPMN3SW5VREVBNHHBOSK35E@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/533995444@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_5d887ac8330b6_5bbd3f95b6acd95c1741bc"; 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/e3D5lMMlRADa2Iu09WVi8qIhS14>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 07:56:59 -0000

----==_mimepart_5d887ac8330b6_5bbd3f95b6acd95c1741bc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair, I've now pushed some updates that try to make this clearer, another look and comments would be most welcome! (I expect this will take some iterating, but let's start with what's there and improve it.)

@mikkelfj I've added a paragraph about blind active attackers (which are probably off-path since it's hard to not see the packets if you're on-path). 

Overall, I've kept the distinction of on-path vs. off-path, and referenced the definition for such in RFC 3552 which may help make things a bit clearer.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/2143#issuecomment-533995444
----==_mimepart_5d887ac8330b6_5bbd3f95b6acd95c1741bc
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=7386514" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gorryfair">@gorryfair</a>, I've now pushed some updates that try to make this clearer, another look and comments would be most welcome! (I expect this will take some iterating, but let's start with what's there and improve it.)</p>
<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> I've added a paragraph about blind active attackers (which are probably off-path since it's hard to not see the packets if you're on-path).</p>
<p>Overall, I've kept the distinction of on-path vs. off-path, and referenced the definition for such in RFC 3552 which may help make things a bit clearer.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/2143?email_source=notifications&amp;email_token=AFTOJK62NOF3NHG3QVMP363QLBZERA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7KB7NA#issuecomment-533995444">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZS6DU7O6KHKNTCZ5LQLBZERANCNFSM4GKGTPSA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZQ3VAJG2SAL3RLB33QLBZERA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7KB7NA.gif" height="1" width="1" 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=AFTOJK62NOF3NHG3QVMP363QLBZERA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7KB7NA#issuecomment-533995444",
"url": "https://github.com/quicwg/base-drafts/issues/2143?email_source=notifications\u0026email_token=AFTOJK62NOF3NHG3QVMP363QLBZERA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7KB7NA#issuecomment-533995444",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d887ac8330b6_5bbd3f95b6acd95c1741bc--


From nobody Mon Sep 23 00:58: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 7911F120120 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 00:58: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 qM71XO1kLhVQ for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 00:58: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 44FEC12011C for <quic-issues@ietf.org>; Mon, 23 Sep 2019 00:58:24 -0700 (PDT)
Date: Mon, 23 Sep 2019 00:58:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569225503; bh=WxEc0vlh62hW/99TskSpE+T0MdZH25X9d++nuTK7dek=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EMqSX8Vb3NP7slQPvu39pB+QGmCQfx3Jd/DLvl6rGhVXwccgVugYFNuj+zBj+lRqS HxXjw+4bCnuR7vJH0I1MAw54YGwUshe/0G/Yov7YmqYkVB8w2Zie1nvamV3WIt7syI qqIuYPiPmKo4GGURZsRN4crdnHqkTP4v2lrZpUEA=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4K4QL7X563GVIO4U53SW527EVBNHHBYGSUE4@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/c533995831@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 to security considerations (#2925)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d887b1f57c48_f243f9f22ccd96c300384"; 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/R6aAZ58e3YQc8itxHEYs_PR1VZc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 07:58:26 -0000

----==_mimepart_5d887b1f57c48_f243f9f22ccd96c300384
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Added a few paragraphs describing general active and passive attacks in the context of RFC 3552 and more clearly defined off-path and on-path attackers to follow the definition established by that document. This will likely still take some iteration, but it should be mostly ready for that, comments 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/pull/2925#issuecomment-533995831
----==_mimepart_5d887b1f57c48_f243f9f22ccd96c300384
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Added a few paragraphs describing general active and passive attacks in the context of RFC 3552 and more clearly defined off-path and on-path attackers to follow the definition established by that document. This will likely still take some iteration, but it should be mostly ready for that, comments 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/pull/2925?email_source=notifications&amp;email_token=AFTOJKZOEI52Q7QDVQFOYQLQLBZJ7A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7KCCNY#issuecomment-533995831">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3HPNZWAJUIOXATHRLQLBZJ7ANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6VWHUWJW252Z4AQILQLBZJ7A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7KCCNY.gif" height="1" width="1" 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=AFTOJKZOEI52Q7QDVQFOYQLQLBZJ7A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7KCCNY#issuecomment-533995831",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJKZOEI52Q7QDVQFOYQLQLBZJ7A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7KCCNY#issuecomment-533995831",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d887b1f57c48_f243f9f22ccd96c300384--


From nobody Mon Sep 23 00:58: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 A4B48120120 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 00:58: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 ZrHbT-1xuBgK for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 00:58:54 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7618E12011C for <quic-issues@ietf.org>; Mon, 23 Sep 2019 00:58:54 -0700 (PDT)
Date: Mon, 23 Sep 2019 00:58:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569225533; bh=xnJ9aX5Hb8DmqumQM9Ti7I/Kk7HDvhPfzVta3m/Bp90=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UCXOcaG85MjuamCudyHrruxadBGBwTlCzOqhhdN4W96eLPRWihzD7gypzq6CcM0G1 We+aXy3bMxqAX0W08UudPvcSRtnQwgThMfubhdsx7nIlA0L32Sp1P4WFQsRPg6ha9F YWLAdncHrwwYRWcP1iSImv3AepiVUJs1vg9umFUo=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2SN3REYPFDZSKUOLN3SW543EVBNHHBYGSUE4@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/291610617@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 to security considerations (#2925)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d887b3d96c4b_44f93f93d54cd9682818de"; 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/1PJLaUPRgk2tUoUn5Y4hARk-VL4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 07:58:56 -0000

----==_mimepart_5d887b3d96c4b_44f93f93d54cd9682818de
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}

Thanks! I've moved it up and updated the text to refer to it as such.

-- 
You are receiving this 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_r326986076
----==_mimepart_5d887b3d96c4b_44f93f93d54cd9682818de
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_r326986076">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}
</pre>
<p>Thanks! I've moved it up and updated the text to refer to it as such.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJKZUQMFILHKCIM4FJTLQLBZL3A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFQZ76I#discussion_r326986076">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3G2IRATC3BQKTN3RTQLBZL3ANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7OPHIN7YQJY6VIUITQLBZL3A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFQZ76I.gif" height="1" width="1" 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=AFTOJKZUQMFILHKCIM4FJTLQLBZL3A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFQZ76I#discussion_r326986076",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJKZUQMFILHKCIM4FJTLQLBZL3A5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFQZ76I#discussion_r326986076",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d887b3d96c4b_44f93f93d54cd9682818de--


From nobody Mon Sep 23 01:01: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 49D6F120120 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 01:01:15 -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 EpxEKRqXp-da for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 01:01: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 DAD7F12004F for <quic-issues@ietf.org>; Mon, 23 Sep 2019 01:01:13 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id ED085C61832 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 01:01:12 -0700 (PDT)
Date: Mon, 23 Sep 2019 01:01:12 -0700
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/2925/push/4064300753@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 to security considerations (#2925)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d887bc8de53e_6d613fea716cd9642496e5"; 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/-uKlqylE5MpZqQaC49gYvGSRtCE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 08:01:15 -0000

----==_mimepart_5d887bc8de53e_6d613fea716cd9642496e5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@erickinnear pushed 1 commit.

5f80f8b12d669a1dad61c27ef18c84784892d5b9  Add reference and minor wording update.


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/2925/files/510536d8109fe5635c7bf86566368b20fbcf2b66..5f80f8b12d669a1dad61c27ef18c84784892d5b9

----==_mimepart_5d887bc8de53e_6d613fea716cd9642496e5
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/5f80f8b12d669a1dad61c27ef18c84784892d5b9">5f80f8b</a>  Add reference and minor wording update.</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#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/510536d8109fe5635c7bf86566368b20fbcf2b66..5f80f8b12d669a1dad61c27ef18c84784892d5b9?email_source=notifications&amp;email_token=AFTOJK4SLSQS2SVGNIKIQILQLBZURA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZUGA3DIMZQGA3TKMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK45QZ63O26R6CTCIDTQLBZURANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3IIML6B6YWFHHM3STQLBZURA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZUGA3DIMZQGA3TKMY.gif" height="1" width="1" 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/510536d8109fe5635c7bf86566368b20fbcf2b66..5f80f8b12d669a1dad61c27ef18c84784892d5b9?email_source=notifications\u0026email_token=AFTOJK4SLSQS2SVGNIKIQILQLBZURA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZUGA3DIMZQGA3TKMY",
"url": "https://github.com/quicwg/base-drafts/pull/2925/files/510536d8109fe5635c7bf86566368b20fbcf2b66..5f80f8b12d669a1dad61c27ef18c84784892d5b9?email_source=notifications\u0026email_token=AFTOJK4SLSQS2SVGNIKIQILQLBZURA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYDAMJSHA3TQNKQOVZWQIZUGA3DIMZQGA3TKMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d887bc8de53e_6d613fea716cd9642496e5--


From nobody Mon Sep 23 01:02: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 18F0B12011C for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 01:01:59 -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 WoGSce_-x1si for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 01:01: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 37AB512004F for <quic-issues@ietf.org>; Mon, 23 Sep 2019 01:01:57 -0700 (PDT)
Date: Mon, 23 Sep 2019 01:01:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569225716; bh=dUoPB6ZGG/BDbJRodLlM9d/TLtY+69a16HIFKIH+GTE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FqTBklbvRbiSRONiV3FO3hfrEOFsFGyvmCzwe7Otkn6R8oN6LVBFaGhxoZqMMZMjp LY+Gt5i1OV/DRLX+srRrGXRgDZm1b7+hvYAUvZA7Fa47EWKrgYslgWLqSm/NgNZdws jxiwcTV0umDhMbwDqAYF0AxtGlUk5+3h8qH/w9ss=
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3ZPHGFG63HHIBODYV3SW6IJEVBNHHBYGSUE4@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/291611816@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 to security considerations (#2925)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d887bf44f165_4de83fbb792cd96c258355"; 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/5U8ItbgBy4oOiutk00aki9XeksI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 08:01:59 -0000

----==_mimepart_5d887bf44f165_4de83fbb792cd96c258355
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

erickinnear 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

Open to moving it around / trimming it down a bit. Mostly I wanted a place so if you read this you've got links and references to the appropriate sections, but without going beyond a sentence or three.

-- 
You are receiving this 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_r326987034
----==_mimepart_5d887bf44f165_4de83fbb792cd96c258355
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_r326987034">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>Open to moving it around / trimming it down a bit. Mostly I wanted a place so if you read this you've got links and references to the appropriate sections, but without going beyond a sentence or three.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK37UKZQQARC7RJWXCTQLBZXJA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFQ2JKA#discussion_r326987034">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYLQ557RGW5JP7ZWF3QLBZXJANCNFSM4IF76LWA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7XOATACODZFDCPBTLQLBZXJA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFQ2JKA.gif" height="1" width="1" 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=AFTOJK37UKZQQARC7RJWXCTQLBZXJA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFQ2JKA#discussion_r326987034",
"url": "https://github.com/quicwg/base-drafts/pull/2925?email_source=notifications\u0026email_token=AFTOJK37UKZQQARC7RJWXCTQLBZXJA5CNFSM4IF76LWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFQ2JKA#discussion_r326987034",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d887bf44f165_4de83fbb792cd96c258355--


From nobody Mon Sep 23 01:29: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 38E8D120121 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 01:29: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 XiDdn8R4LjPD for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 01:29: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 84568120106 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 01:29:22 -0700 (PDT)
Date: Mon, 23 Sep 2019 01:29:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569227360; bh=ueqVHa3GMQ+u7se+r1vTos43sYasURXuwByCXgIaOy0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vxajwdxDOOgL8+wefJv3Xxmi3jC8h0PVZRC79dOhydoZTOKqR5TYf3iBjgzWXFunJ Ol0lCZMRAw1IAi4teVZBWSOMU2596TjLKr/mSdKSqd91BcX2lz5n9O25hgsPXkMXG1 nvLnvQFub9w7xfV9WxgXadqRe7h0jj0yc5lX4LAA=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY7CV23RRYDQTXHRLV3SXBPBEVBNHHBOSK35E@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/534005029@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_5d888260ce17c_2ba43fd96bacd968104394"; 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/t2TenLMtYaWgklRxCRGGWeODbZA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 08:29:24 -0000

----==_mimepart_5d888260ce17c_2ba43fd96bacd968104394
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@erickinnear that makes sense. I just read the section on blind attacks. You mention it is not likely to successful which is probably true, but the reason is not limited to what you state. There is a lot of pain in path migration/discovery to avoid blind attacks being successful in hijacking or interrupting connections (I don't recall all 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/2143#issuecomment-534005029
----==_mimepart_5d888260ce17c_2ba43fd96bacd968104394
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=32474881" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/erickinnear">@erickinnear</a> that makes sense. I just read the section on blind attacks. You mention it is not likely to successful which is probably true, but the reason is not limited to what you state. There is a lot of pain in path migration/discovery to avoid blind attacks being successful in hijacking or interrupting connections (I don't recall all 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/2143?email_source=notifications&amp;email_token=AFTOJKZDQIQETEV7M7HMBSTQLB46BA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7KEKJI#issuecomment-534005029">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3ISGGDEZT3U4RJIWTQLB46BANCNFSM4GKGTPSA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3UNIUGU6F224BRNVDQLB46BA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7KEKJI.gif" height="1" width="1" 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=AFTOJKZDQIQETEV7M7HMBSTQLB46BA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7KEKJI#issuecomment-534005029",
"url": "https://github.com/quicwg/base-drafts/issues/2143?email_source=notifications\u0026email_token=AFTOJKZDQIQETEV7M7HMBSTQLB46BA5CNFSM4GKGTPSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7KEKJI#issuecomment-534005029",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d888260ce17c_2ba43fd96bacd968104394--


From nobody Mon Sep 23 03: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 2136E120806 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 03:57:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 SS8iAE_NHM-G for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 03:57: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 62BEB120073 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 03:57:32 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 7FDF46A01A2 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 03:57:31 -0700 (PDT)
Date: Mon, 23 Sep 2019 03:57:31 -0700
From: Mark Nottingham <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/c524a5-0d5d19@github.com>
Subject: [quicwg/base-drafts] b0bdac: add ietf.json
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/pywR9ZZEg1QuCvZFlM7ye2sVAeY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 10:57:34 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: b0bdac1ec7067031c2f2640ae31979d0c2ed0c03
      https://github.com/quicwg/base-drafts/commit/b0bdac1ec7067031c2f2640ae31979d0c2ed0c03
  Author: Mark Nottingham <mnot@mnot.net>
  Date:   2019-09-23 (Mon, 23 Sep 2019)

  Changed paths:
    A ietf.json

  Log Message:
  -----------
  add ietf.json


  Commit: 0d5d19353a8f63ee31d08e30b69df81d3b0e78bb
      https://github.com/quicwg/base-drafts/commit/0d5d19353a8f63ee31d08e30b69df81d3b0e78bb
  Author: Mark Nottingham <mnot@mnot.net>
  Date:   2019-09-23 (Mon, 23 Sep 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Merge branch 'master' of github.com:quicwg/base-drafts


Compare: https://github.com/quicwg/base-drafts/compare/c524a55ed4e1...0d5d19353a8f


From nobody Mon Sep 23 03: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 3308B120806 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 03:58:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 bRNWGlGktyp8 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 03:58: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 C414A120073 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 03:58:04 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id EC513521184 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 03:58:03 -0700 (PDT)
Date: Mon, 23 Sep 2019 03:58:03 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/eacb38-433b5d@github.com>
Subject: [quicwg/base-drafts] 433b5d: Script updating gh-pages from 0d5d1935. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kZ2IKkviELRVajp4Wm_ZTAHr9xo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 10:58:06 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 433b5d1db716bcaacdb0b7695b6404f0f0f4c2ce
      https://github.com/quicwg/base-drafts/commit/433b5d1db716bcaacdb0b7695b6404f0f0f4c2ce
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-23 (Mon, 23 Sep 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 0d5d1935. [ci skip]



From nobody Mon Sep 23 07: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 36C4912006D for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 07:57:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 MeGYnbqEcUoa for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 07:57:55 -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 C2BB3120013 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 07:57:55 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id DDB9EA0835 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 07:57:54 -0700 (PDT)
Date: Mon, 23 Sep 2019 07:57:54 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-must-retransmit/000000-295e0c@github.com>
Subject: [quicwg/base-drafts] 295e0c: MUST send new data or retransmit data if possible
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gngYl7Fq1PVQ__uAZUjmz2_8gms>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 14:57:58 -0000

  Branch: refs/heads/ianswett-must-retransmit
  Home:   https://github.com/quicwg/base-drafts
  Commit: 295e0c9afc7eb80454f3fd0bd9d64d4879f85573
      https://github.com/quicwg/base-drafts/commit/295e0c9afc7eb80454f3fd0bd9d64d4879f85573
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-23 (Mon, 23 Sep 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  MUST send new data or retransmit data if possible

Fixes #3056



From nobody Mon Sep 23 07:58: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 01ED112006D for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 07:58:18 -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 gEZlZnkfe3zw for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 07:58:16 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2416D120013 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 07:58:16 -0700 (PDT)
Date: Mon, 23 Sep 2019 07:58:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569250695; bh=JyNsUMmq1d+0mmqnj84puOJBYrAH6Jtz3ylJ/uVv//8=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=mk/NM+XjFGzO+qj0IyYwdmsvwrlXGFCimCQHvtQXXh1Mf2ES6sv7I+9ud9+spJYoP IxmdLfIQlh2UWs6dUL/HmWWZ5roTnYq/nKPIWsDJ7+xlWgxUXHMNQ3ozelJaO33FmJ IU+Ii/nqW2aeAqIerxPw5sXtOLZsvYWD28SgmdUA=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7XXH6LWJJVWYZHSL53SYPBPEVBNHHB3IPO4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057@github.com>
Subject: [quicwg/base-drafts] MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d88dd8752fbf_44f53feb17acd96480445"; 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/oSBQPkOYk4c929-fTxjL1HWrleI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 14:58:18 -0000

----==_mimepart_5d88dd8752fbf_44f53feb17acd96480445
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Fixes #3056
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3057

-- Commit Summary --

  * MUST send new data or retransmit data if possible

-- File Changes --

    M draft-ietf-quic-recovery.md (11)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3057.patch
https://github.com/quicwg/base-drafts/pull/3057.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/3057

----==_mimepart_5d88dd8752fbf_44f53feb17acd96480445
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 #3056.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="496607322" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3056" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3056/hovercard" href="https://github.com/quicwg/base-drafts/issues/3056">#3056</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/3057'>https://github.com/quicwg/base-drafts/pull/3057</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>MUST send new data or retransmit data if possible</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3057/files#diff-0">draft-ietf-quic-recovery.md</a>
    (11)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3057.patch'>https://github.com/quicwg/base-drafts/pull/3057.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3057.diff'>https://github.com/quicwg/base-drafts/pull/3057.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/3057?email_source=notifications&amp;email_token=AFTOJK4LQZWH27EFJF7LHXLQLDKQPA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNB53RQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK74IY7MCJ3NB3BSUATQLDKQPANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3P57SEVKFX44YYLQ3QLDKQPA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNB53RQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK4LQZWH27EFJF7LHXLQLDKQPA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNB53RQ",
"url": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK4LQZWH27EFJF7LHXLQLDKQPA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNB53RQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d88dd8752fbf_44f53feb17acd96480445--


From nobody Mon Sep 23 07: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 539AD12006D for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 07:58: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 Mm5J8preA6ff for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 07:58:33 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C51E0120013 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 07:58:33 -0700 (PDT)
Date: Mon, 23 Sep 2019 07:58:33 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569250713; bh=oVmqEandlpg+TQyJIskYYdMsWIBirHKuCTuuh+3Tf04=; h=Date:From:To:Subject:From; b=ca6nF1jzTMNNGFeQc8+JLwJrWU2pwA7wq1Aw/84R2CvFj9oOM2D0TENiNDK3YHyAo sE2xav/JqGGgLCXXY2QuJP9WAj82uebjc0u5hZVA4sA0SUyVFtJ+dqPfZIrZ/4SRNC AuLDgj682l6R412zdo8DpdbeJsWy3yXVFZlaKKPo=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/433b5d-821a92@github.com>
Subject: [quicwg/base-drafts] 821a92: Script updating gh-pages from 295e0c9a. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-qSjW7JK026hKg5O5kZl0Uwni7I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 14:58:36 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 821a92d55fe24ba10aace2c94af126dd1a8f9bb6
      https://github.com/quicwg/base-drafts/commit/821a92d55fe24ba10aace2c94af126dd1a8f9bb6
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-23 (Mon, 23 Sep 2019)

  Changed paths:
    A ianswett-must-retransmit/draft-ietf-quic-http.html
    A ianswett-must-retransmit/draft-ietf-quic-http.txt
    A ianswett-must-retransmit/draft-ietf-quic-invariants.html
    A ianswett-must-retransmit/draft-ietf-quic-invariants.txt
    A ianswett-must-retransmit/draft-ietf-quic-qpack.html
    A ianswett-must-retransmit/draft-ietf-quic-qpack.txt
    A ianswett-must-retransmit/draft-ietf-quic-recovery.html
    A ianswett-must-retransmit/draft-ietf-quic-recovery.txt
    A ianswett-must-retransmit/draft-ietf-quic-tls.html
    A ianswett-must-retransmit/draft-ietf-quic-tls.txt
    A ianswett-must-retransmit/draft-ietf-quic-transport.html
    A ianswett-must-retransmit/draft-ietf-quic-transport.txt
    A ianswett-must-retransmit/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 295e0c9a. [ci skip]



From nobody Mon Sep 23 08:00: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 1F09D12081D for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:00: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 Sf2DYA5O9XU8 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:00: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 9C71B1200D6 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 08:00:40 -0700 (PDT)
Date: Mon, 23 Sep 2019 08:00:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569250839; bh=DPU4JgXYJpOg20YQMVJvffUzFOBJHpf0i3FfUZJLKBo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=2O95lRBO1uIjuPi91dkcokSa2LpsDlUaz8NXwKmEsbnkXbXuWfQWDXkvqos9TDZOc Spl9j8hNjH/UjgVksmrz4ltCt2KA72vFrpUYKNN7wbcu+Cz0Xi0Hu2xIQW4qyDcs2T hFKt8B7HjOv9+2E5jzZW/UOBqzVghQwUDcfusvOE=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYOUAL23KXXOYANPJN3SYPKPEVBNHHB3GNALI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3056/534138698@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3056@github.com>
References: <quicwg/base-drafts/issues/3056@github.com>
Subject: Re: [quicwg/base-drafts] Lost client Initial is never retransmitted (#3056)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d88de178cc83_69cb3f9e900cd9601239cd"; 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/CzL3vsscO8vQDO9glABUWWwki3o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 15:00:54 -0000

----==_mimepart_5d88de178cc83_69cb3f9e900cd9601239cd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The packets should not be marked as lost, but data needs to be retransmitted before sending a PING.

I sent out a PR #3057, feel free to make further suggestions there.


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3056#issuecomment-534138698
----==_mimepart_5d88de178cc83_69cb3f9e900cd9601239cd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The packets should not be marked as lost, but data needs to be retransmitted before sending a PING.</p>
<p>I sent out a PR <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="497151715" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3057" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3057/hovercard" href="https://github.com/quicwg/base-drafts/pull/3057">#3057</a>, feel free to make further suggestions there.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications&amp;email_token=AFTOJK3W7INNFIVWZ6O7U2TQLDKZPA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LE6SQ#issuecomment-534138698">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5WQIANYWNNKZSN343QLDKZPANCNFSM4IY4XW2A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7LNQYL4RNOFTM2VS3QLDKZPA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LE6SQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications\u0026email_token=AFTOJK3W7INNFIVWZ6O7U2TQLDKZPA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LE6SQ#issuecomment-534138698",
"url": "https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications\u0026email_token=AFTOJK3W7INNFIVWZ6O7U2TQLDKZPA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LE6SQ#issuecomment-534138698",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d88de178cc83_69cb3f9e900cd9601239cd--


From nobody Mon Sep 23 08:16: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 E3788120018 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:16: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 AC5eZ53U6nQI for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:16:14 -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 9D945120013 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 08:16:14 -0700 (PDT)
Date: Mon, 23 Sep 2019 08:16:13 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569251773; bh=oWLNSdiPjueBKXjn3oGKiwABWbfvXxwh/zEYBKAmKxY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IdNodQtQRsAXcocFz77GIoejQHIjHMiTD4MBSR1o5SkyKgdBrv616nFpWrnOk8f+K tTR5rXAWXIXRI/tPjQO8dHSwocvpSB3ZjjAYRnxgTpiwHihdALEshP2tiuRvavwUyg Ir6eiRFDDT2J+GWwBmTJrelZnP7aww4z2futrwBA=
From: Benjamin Saunders <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZICEDS5Z3SSOISSCF3SYRE3EVBNHHB3IPO4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057/review/291851055@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d88e1bda688c_3b173febd78cd964576de"; 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/ebHlr0bNTOUYrKsRuIqX7Cr7BGo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 15:16:17 -0000

----==_mimepart_5d88e1bda688c_3b173febd78cd964576de
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Ralith commented on this pull request.

Will the larger PTO packets this produces (often MTU-sized instead of minimally-sized) adversely affect performance under heavy congestion?

Do we also need to add logic guiding the level at which a PTO is sent? Quinn currently always sends PTOs at the highest encryption level for which keys are known, which under the current logic would make loss of any part of the server's first flight unrecoverable.

> @@ -526,12 +526,11 @@ as a probe, unless there is no data available to send.  An endpoint MAY send up
 to two full-sized datagrams containing ack-eliciting packets, to avoid an
 expensive consecutive PTO expiration due to a single lost datagram.
 
-It is possible that the sender has no new or previously-sent data to send.  As
-an example, consider the following sequence of events: new application data is
-sent in a STREAM frame, deemed lost, then retransmitted in a new packet, and
-then the original transmission is acknowledged.  In the absence of any new
-application data, a PTO timer expiration now would find the sender with no new
-or previously-sent data to send.
+When the PTO timer expires, and there is new or previously sent data, it MUST
+be sent.  It is possible the sender has no new or previously-sent data to send.
+As an example, consider the following sequence of events: new application data
+is sent in a STREAM frame, deemed lost, then retransmitted in a new packet,
+and then the original transmission is acknowledged.

This example only applies to implementations that can usefully process acknowledgements for packets they've already deemed lost and retransmitted the contents of, which I don't think is required. Is there a more common 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/3057#pullrequestreview-291851055
----==_mimepart_5d88e1bda688c_3b173febd78cd964576de
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@Ralith</b> commented on this pull request.</p>

<p>Will the larger PTO packets this produces (often MTU-sized instead of minimally-sized) adversely affect performance under heavy congestion?</p>
<p>Do we also need to add logic guiding the level at which a PTO is sent? Quinn currently always sends PTOs at the highest encryption level for which keys are known, which under the current logic would make loss of any part of the server's first flight unrecoverable.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3057#discussion_r327170889">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -526,12 +526,11 @@ as a probe, unless there is no data available to send.  An endpoint MAY send up
 to two full-sized datagrams containing ack-eliciting packets, to avoid an
 expensive consecutive PTO expiration due to a single lost datagram.
 
-It is possible that the sender has no new or previously-sent data to send.  As
-an example, consider the following sequence of events: new application data is
-sent in a STREAM frame, deemed lost, then retransmitted in a new packet, and
-then the original transmission is acknowledged.  In the absence of any new
-application data, a PTO timer expiration now would find the sender with no new
-or previously-sent data to send.
+When the PTO timer expires, and there is new or previously sent data, it MUST
+be sent.  It is possible the sender has no new or previously-sent data to send.
+As an example, consider the following sequence of events: new application data
+is sent in a STREAM frame, deemed lost, then retransmitted in a new packet,
+and then the original transmission is acknowledged.
</pre>
<p>This example only applies to implementations that can usefully process acknowledgements for packets they've already deemed lost and retransmitted the contents of, which I don't think is required. Is there a more common 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/3057?email_source=notifications&amp;email_token=AFTOJKZD2ZGWEJCDDLEFPCLQLDMT3A5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFSUWLY#pullrequestreview-291851055">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ5KVCEH2YBDAML5VTQLDMT3ANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK24LIPHR7DIGBCTG6LQLDMT3A5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFSUWLY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJKZD2ZGWEJCDDLEFPCLQLDMT3A5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFSUWLY#pullrequestreview-291851055",
"url": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJKZD2ZGWEJCDDLEFPCLQLDMT3A5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFSUWLY#pullrequestreview-291851055",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d88e1bda688c_3b173febd78cd964576de--


From nobody Mon Sep 23 08: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 4D0091200C1 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:22:39 -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 bmEWm2uO55WJ for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:22:36 -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 B8CD6120013 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 08:22:36 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 51551120218 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 08:22:36 -0700 (PDT)
Date: Mon, 23 Sep 2019 08:22:36 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2DH7CWYGEPHPUWLB53SYR4ZEVBNHHB3IPO4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057/review/291860283@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d88e33c9d91_7a523fd65f6cd96c10805a"; 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/xo3CCUgU5ySV6CD_WXYvYLJS1_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, 23 Sep 2019 15:22:40 -0000

----==_mimepart_5d88e33c9d91_7a523fd65f6cd96c10805a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> @@ -526,12 +526,11 @@ as a probe, unless there is no data available to send.  An endpoint MAY send up
 to two full-sized datagrams containing ack-eliciting packets, to avoid an
 expensive consecutive PTO expiration due to a single lost datagram.
 
-It is possible that the sender has no new or previously-sent data to send.  As
-an example, consider the following sequence of events: new application data is
-sent in a STREAM frame, deemed lost, then retransmitted in a new packet, and
-then the original transmission is acknowledged.  In the absence of any new
-application data, a PTO timer expiration now would find the sender with no new
-or previously-sent data to send.
+When the PTO timer expires, and there is new or previously sent data, it MUST
+be sent.  It is possible the sender has no new or previously-sent data to send.
+As an example, consider the following sequence of events: new application data
+is sent in a STREAM frame, deemed lost, then retransmitted in a new packet,
+and then the original transmission is acknowledged.

This is a fairly common case in our implementation, so I think it's a good example.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3057#discussion_r327177944
----==_mimepart_5d88e33c9d91_7a523fd65f6cd96c10805a
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/3057#discussion_r327177944">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -526,12 +526,11 @@ as a probe, unless there is no data available to send.  An endpoint MAY send up
 to two full-sized datagrams containing ack-eliciting packets, to avoid an
 expensive consecutive PTO expiration due to a single lost datagram.
 
-It is possible that the sender has no new or previously-sent data to send.  As
-an example, consider the following sequence of events: new application data is
-sent in a STREAM frame, deemed lost, then retransmitted in a new packet, and
-then the original transmission is acknowledged.  In the absence of any new
-application data, a PTO timer expiration now would find the sender with no new
-or previously-sent data to send.
+When the PTO timer expires, and there is new or previously sent data, it MUST
+be sent.  It is possible the sender has no new or previously-sent data to send.
+As an example, consider the following sequence of events: new application data
+is sent in a STREAM frame, deemed lost, then retransmitted in a new packet,
+and then the original transmission is acknowledged.
</pre>
<p>This is a fairly common case in our implementation, so I think it's a good example.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications&amp;email_token=AFTOJK5JHYJTGUQWN4U5N23QLDNLZA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFSW6OY#discussion_r327177944">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6P4UQA5KQCNN663BDQLDNLZANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6PFCWF6AJGGUFE5CLQLDNLZA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFSW6OY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK5JHYJTGUQWN4U5N23QLDNLZA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFSW6OY#discussion_r327177944",
"url": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK5JHYJTGUQWN4U5N23QLDNLZA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFSW6OY#discussion_r327177944",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d88e33c9d91_7a523fd65f6cd96c10805a--


From nobody Mon Sep 23 08:24: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 C234A1200C1 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:24:32 -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 ERWeg7RVWKzn for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:24: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 848D9120013 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 08:24:30 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 4E00F960504 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 08:24:29 -0700 (PDT)
Date: Mon, 23 Sep 2019 08:24:29 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK66IXK5ACGIDH2RVOF3SYSD3EVBNHHB3IPO4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057/c534149774@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d88e3ad3f622_1d0d3f9f8f8cd96c1419e7"; 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/Ue07IzMywT4Eg2takpHxx6MO97k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 15:24:33 -0000

----==_mimepart_5d88e3ad3f622_1d0d3f9f8f8cd96c1419e7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Under "Handshakes and New Paths", it says "Data at Initial encryption MUST be retransmitted before Handshake data and data at Handshake encryption MUST be retransmitted before any ApplicationData".  I moved that down to this section, since I think it fits slightly better 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/3057#issuecomment-534149774
----==_mimepart_5d88e3ad3f622_1d0d3f9f8f8cd96c1419e7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Under "Handshakes and New Paths", it says "Data at Initial encryption MUST be retransmitted before Handshake data and data at Handshake encryption MUST be retransmitted before any ApplicationData".  I moved that down to this section, since I think it fits slightly better 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/3057?email_source=notifications&amp;email_token=AFTOJK4IXGIGH5N5DTH73I3QLDNS3A5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LHVDQ#issuecomment-534149774">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5FIS44AGZPQ56J3OTQLDNS3ANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2MKXHF6NMD6W72RWTQLDNS3A5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LHVDQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK4IXGIGH5N5DTH73I3QLDNS3A5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LHVDQ#issuecomment-534149774",
"url": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK4IXGIGH5N5DTH73I3QLDNS3A5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LHVDQ#issuecomment-534149774",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d88e3ad3f622_1d0d3f9f8f8cd96c1419e7--


From nobody Mon Sep 23 08:26: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 6F14D120018 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:26:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 wjTe8InDXOQp for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:26: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 05F61120013 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 08:26:48 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 1EC8F8C0E3F for <quic-issues@ietf.org>; Mon, 23 Sep 2019 08:26:47 -0700 (PDT)
Date: Mon, 23 Sep 2019 08:26:47 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-must-retransmit/295e0c-409286@github.com>
Subject: [quicwg/base-drafts] 409286: 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/kDJjz_1NN54oA89mZvO2F_3r4WM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 15:26:49 -0000

  Branch: refs/heads/ianswett-must-retransmit
  Home:   https://github.com/quicwg/base-drafts
  Commit: 409286b111330780882fe2ae17bbe405d9f25b09
      https://github.com/quicwg/base-drafts/commit/409286b111330780882fe2ae17bbe405d9f25b09
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-23 (Mon, 23 Sep 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Move the section on what encryption level to send first down.



From nobody Mon Sep 23 08: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 DA6B3120018 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:27: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 qktF8GjMfueg for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:27:06 -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 BF6F3120013 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 08:27:06 -0700 (PDT)
Date: Mon, 23 Sep 2019 08:27:06 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569252426; bh=/WmUUPWwRDsYB+cza59cn3kOHuIJMW7vEJaqEjoK/Aw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hzltR2HAmm5PAVbnascXYflrBGYVRAwTuwxM57GS4cBDk5rlXoQUusZGaI1eR0jW0 3sK0PmU0JdJcpSjcISmZWpu1Xkvv7HHDdt0mT4gLCEghkUqGNY5hSd4BDECR4KVMYf dSUieG7Nxn6CZU2FIu6MtDs9yRZKEJud6NTfT6y0=
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/3057/push/4066129249@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d88e44af27c_4a213ff4902cd96c1504d"; 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/DlcPPaFJx7f8fK5xU_Li_tyjLF0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 15:27:08 -0000

----==_mimepart_5d88e44af27c_4a213ff4902cd96c1504d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

409286b111330780882fe2ae17bbe405d9f25b09  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/3057/files/295e0c9afc7eb80454f3fd0bd9d64d4879f85573..409286b111330780882fe2ae17bbe405d9f25b09

----==_mimepart_5d88e44af27c_4a213ff4902cd96c1504d
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/409286b111330780882fe2ae17bbe405d9f25b09">409286b</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/3057/files/295e0c9afc7eb80454f3fd0bd9d64d4879f85573..409286b111330780882fe2ae17bbe405d9f25b09?email_source=notifications&amp;email_token=AFTOJK4WO23QEVQYQOOT6FTQLDN4VA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAMZTHAZTGMCQOVZWQIZUGA3DMMJSHEZDIOI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK76NCUBVPNAJUMEBJ3QLDN4VANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ5CKCBOBSPOU67YHLQLDN4VA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAMZTHAZTGMCQOVZWQIZUGA3DMMJSHEZDIOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057/files/295e0c9afc7eb80454f3fd0bd9d64d4879f85573..409286b111330780882fe2ae17bbe405d9f25b09?email_source=notifications\u0026email_token=AFTOJK4WO23QEVQYQOOT6FTQLDN4VA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAMZTHAZTGMCQOVZWQIZUGA3DMMJSHEZDIOI",
"url": "https://github.com/quicwg/base-drafts/pull/3057/files/295e0c9afc7eb80454f3fd0bd9d64d4879f85573..409286b111330780882fe2ae17bbe405d9f25b09?email_source=notifications\u0026email_token=AFTOJK4WO23QEVQYQOOT6FTQLDN4VA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAMZTHAZTGMCQOVZWQIZUGA3DMMJSHEZDIOI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d88e44af27c_4a213ff4902cd96c1504d--


From nobody Mon Sep 23 08:27: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 05E55120129 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:27:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 kWn7h5feu4bJ for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:27: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 207211200D7 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 08:27:41 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 5EC77C60A83 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 08:27:40 -0700 (PDT)
Date: Mon, 23 Sep 2019 08:27:40 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/821a92-1e8a12@github.com>
Subject: [quicwg/base-drafts] 1e8a12: Script updating gh-pages from 409286b1. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/XbzxNi-NwMo3DKOpzBqBHGxjqPs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 15:27:46 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1e8a126df979dda878ce3f4aae56f234127c26af
      https://github.com/quicwg/base-drafts/commit/1e8a126df979dda878ce3f4aae56f234127c26af
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-23 (Mon, 23 Sep 2019)

  Changed paths:
    M ianswett-must-retransmit/draft-ietf-quic-recovery.html
    M ianswett-must-retransmit/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 409286b1. [ci skip]



From nobody Mon Sep 23 08:29: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 A85461200C1 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:29:16 -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 4wJTioOb3eUy for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:29:15 -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 3209B120018 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 08:29:15 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id DB8BA261646 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 08:29:14 -0700 (PDT)
Date: Mon, 23 Sep 2019 08:29:14 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYLIPKTUNUM3PXHG4V3SYSVVEVBNHHB3IPO4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057/c534151991@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d88e4ca9424f_6db43fb22b0cd95c143417"; 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/-nMchDNZfpC06L6YmGJTR3zEC68>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 15:29:17 -0000

----==_mimepart_5d88e4ca9424f_6db43fb22b0cd95c143417
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

In terms of packet size, this is similar to what the old Handshake text recommended and what PTO should have said all along, as it aligns well with TCP's TLP and RTO 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/3057#issuecomment-534151991
----==_mimepart_5d88e4ca9424f_6db43fb22b0cd95c143417
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>In terms of packet size, this is similar to what the old Handshake text recommended and what PTO should have said all along, as it aligns well with TCP's TLP and RTO 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/3057?email_source=notifications&amp;email_token=AFTOJKZ2LE6VSPSY5WM5CB3QLDOEVA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LIGNY#issuecomment-534151991">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYBODDXJJQVA3ZFT7DQLDOEVANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ7N2TAGQXS7A7IWLDQLDOEVA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LIGNY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJKZ2LE6VSPSY5WM5CB3QLDOEVA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LIGNY#issuecomment-534151991",
"url": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJKZ2LE6VSPSY5WM5CB3QLDOEVA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LIGNY#issuecomment-534151991",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d88e4ca9424f_6db43fb22b0cd95c143417--


From nobody Mon Sep 23 08:31: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 3D3C81200C1 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:31:51 -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 4smHUxVtSMru for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:31:49 -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 4FAD7120018 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 08:31:49 -0700 (PDT)
Date: Mon, 23 Sep 2019 08:31:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569252708; bh=mgm9TuTYu0bQBC6R/9fbda2tAWKnP2KPWj6eOn69cFM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wH3xynZ8if9LvirSc3Q+WDgyCCLw6T8wUNJDNO97BddhxWal8Rt41a71tepN230qZ SnIfuWVIYuUZzqRAptsKr/3HD6t+Doazyftmai0ca4kIcDGyLie+MtmEDnuQSQ7bkW ZuMKiQRVKG+s6qZzl7/CDU5bHJ2spAqcrCcfMweo=
From: Benjamin Saunders <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2MGJ66V3LLMOXOZNV3SYS7JEVBNHHB3IPO4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057/review/291866648@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d88e56457b9f_1c923fceb0acd960110376"; 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/GKIjAFcSaFk4FdeXBGydMPMo5dI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 15:31:52 -0000

----==_mimepart_5d88e56457b9f_1c923fceb0acd960110376
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Ralith commented on this pull request.



> @@ -526,12 +526,11 @@ as a probe, unless there is no data available to send.  An endpoint MAY send up
 to two full-sized datagrams containing ack-eliciting packets, to avoid an
 expensive consecutive PTO expiration due to a single lost datagram.
 
-It is possible that the sender has no new or previously-sent data to send.  As
-an example, consider the following sequence of events: new application data is
-sent in a STREAM frame, deemed lost, then retransmitted in a new packet, and
-then the original transmission is acknowledged.  In the absence of any new
-application data, a PTO timer expiration now would find the sender with no new
-or previously-sent data to send.
+When the PTO timer expires, and there is new or previously sent data, it MUST
+be sent.  It is possible the sender has no new or previously-sent data to send.
+As an example, consider the following sequence of events: new application data
+is sent in a STREAM frame, deemed lost, then retransmitted in a new packet,
+and then the original transmission is acknowledged.

Maybe note that this is optional behavior? I know if I was reading this for the first time, I'd try to work out where it was required and get confused.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3057#discussion_r327183006
----==_mimepart_5d88e56457b9f_1c923fceb0acd960110376
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@Ralith</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3057#discussion_r327183006">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -526,12 +526,11 @@ as a probe, unless there is no data available to send.  An endpoint MAY send up
 to two full-sized datagrams containing ack-eliciting packets, to avoid an
 expensive consecutive PTO expiration due to a single lost datagram.
 
-It is possible that the sender has no new or previously-sent data to send.  As
-an example, consider the following sequence of events: new application data is
-sent in a STREAM frame, deemed lost, then retransmitted in a new packet, and
-then the original transmission is acknowledged.  In the absence of any new
-application data, a PTO timer expiration now would find the sender with no new
-or previously-sent data to send.
+When the PTO timer expires, and there is new or previously sent data, it MUST
+be sent.  It is possible the sender has no new or previously-sent data to send.
+As an example, consider the following sequence of events: new application data
+is sent in a STREAM frame, deemed lost, then retransmitted in a new packet,
+and then the original transmission is acknowledged.
</pre>
<p>Maybe note that this is optional behavior? I know if I was reading this for the first time, I'd try to work out where it was required and get confused.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications&amp;email_token=AFTOJK2IFOXVEPYH7SVOSTDQLDOOJA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFSYQGA#discussion_r327183006">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6RE6ORH26JHFMPW4LQLDOOJANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY5BXW4VIY4L75W5YTQLDOOJA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFSYQGA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK2IFOXVEPYH7SVOSTDQLDOOJA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFSYQGA#discussion_r327183006",
"url": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK2IFOXVEPYH7SVOSTDQLDOOJA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFSYQGA#discussion_r327183006",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d88e56457b9f_1c923fceb0acd960110376--


From nobody Mon Sep 23 08: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 681A5120129 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:34:38 -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 2cN6BQxkfQkS for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:34: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 0E054120018 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 08:34:35 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 60C6B1C02DD for <quic-issues@ietf.org>; Mon, 23 Sep 2019 08:34:34 -0700 (PDT)
Date: Mon, 23 Sep 2019 08:34:34 -0700
From: Benjamin Saunders <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK35XG53HPBA2SWEGO53SYTJVEVBNHHB3IPO4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057/c534154481@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d88e60a522ac_4b7a3febf20cd960482b"; 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/_Fj2ztAq3wDTwXh5IJy_iTBJnac>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 15:34:38 -0000

----==_mimepart_5d88e60a522ac_4b7a3febf20cd960482b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The previous text read like it only described retransmission of lost data, and this now reads like it only describes retransmission in PTOs. Are both intended?

Is there a restriction anywhere that retransmitted data must not be sent at a higher encryption level than it was originally sent, or similar?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3057#issuecomment-534154481
----==_mimepart_5d88e60a522ac_4b7a3febf20cd960482b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The previous text read like it only described retransmission of lost data, and this now reads like it only describes retransmission in PTOs. Are both intended?</p>
<p>Is there a restriction anywhere that retransmitted data must not be sent at a higher encryption level than it was originally sent, or similar?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications&amp;email_token=AFTOJKYISLKCEJPYEOZFKW3QLDOYVA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LIZ4I#issuecomment-534154481">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6NVIYH6FQ3OQKYKSLQLDOYVANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7ZJZXXJKS5EEDK7JTQLDOYVA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LIZ4I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJKYISLKCEJPYEOZFKW3QLDOYVA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LIZ4I#issuecomment-534154481",
"url": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJKYISLKCEJPYEOZFKW3QLDOYVA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LIZ4I#issuecomment-534154481",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d88e60a522ac_4b7a3febf20cd960482b--


From nobody Mon Sep 23 08:42: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 03FB91200C1 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:42: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 cLE4bgQsW38y for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 08:42: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 7EE14120013 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 08:42:13 -0700 (PDT)
Date: Mon, 23 Sep 2019 08:42:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569253332; bh=lmuWYtZiOu/0t6GNdO35jaMy9kDzbXgeX9R9unzHZJ0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oOI/XIfwBp9bH6TbTvNhEvCxSELHYgnopwJmBre79dKZMiheyudAVTjIcLaVQ8Jvz 0mDd5avd++a4o+NAzNuFI1UHoRZ9OEync1tGmF97XTmbDZr4F8GVcujtZRmBxmWy8i LEuM3/psOTpBKdv40gXF61xYWQXXWig6Mo7LK7WY=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZQROQ7RJQ46VIPIVF3SYUGJEVBNHHB3IPO4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057/c534157897@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d88e7d477af6_10413fc5ed0cd96822859e"; 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/pOwkOK1_bngaQAWjs82B7ZUJozw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 15:42:15 -0000

----==_mimepart_5d88e7d477af6_10413fc5ed0cd96822859e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

All of this text is in the PTO section, so only applies to PTO.

I think transport is usually the best place to talk about where data is retransmitted, but it might be worth an editorial note that data is never retransmitted at a different packet number space than the original 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/3057#issuecomment-534157897
----==_mimepart_5d88e7d477af6_10413fc5ed0cd96822859e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>All of this text is in the PTO section, so only applies to PTO.</p>
<p>I think transport is usually the best place to talk about where data is retransmitted, but it might be worth an editorial note that data is never retransmitted at a different packet number space than the original 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/3057?email_source=notifications&amp;email_token=AFTOJK6WPVE5NEFKP7H2L33QLDPVJA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LJUSI#issuecomment-534157897">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4DSSJHOKUDNORJFRDQLDPVJANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ5IBNYUG3SIH2LEGTQLDPVJA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LJUSI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK6WPVE5NEFKP7H2L33QLDPVJA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LJUSI#issuecomment-534157897",
"url": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK6WPVE5NEFKP7H2L33QLDPVJA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LJUSI#issuecomment-534157897",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d88e7d477af6_10413fc5ed0cd96822859e--


From nobody Mon Sep 23 09:24: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 33511120875 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 09:24:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 IDBTOyVERaJ8 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 09:24: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 7412E120112 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 09:24:41 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id ABF9D96036D for <quic-issues@ietf.org>; Mon, 23 Sep 2019 09:24:40 -0700 (PDT)
Date: Mon, 23 Sep 2019 09:24:40 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3CLTZ66MZZL5ILHFV3SYZFREVBNHHB3IVNPI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3058@github.com>
Subject: [quicwg/base-drafts] Clearer description of detecting spurious retransmission (#3058)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d88f1c89d2ce_2d193f86294cd9682698fc"; 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/QTWsKl25kGua4JP5FmTz3ReGwaw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 16:24:43 -0000

----==_mimepart_5d88f1c89d2ce_2d193f86294cd9682698fc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

There are multiple mentions of spurious retransmission in the recovery draft, but no text on what detecting this may require from an implementation.  Maybe there should be?

"Spuriously declaring packets as lost leads to unnecessary retransmissions and may result in degraded performance due to the actions of the congestion controller upon detecting loss. Implementations that detect spurious retransmissions and increase the reordering threshold in packets or time MAY choose to start with smaller initial reordering thresholds to minimize recovery latency."

>From comments on #3057 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3058
----==_mimepart_5d88f1c89d2ce_2d193f86294cd9682698fc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>There are multiple mentions of spurious retransmission in the recovery draft, but no text on what detecting this may require from an implementation.  Maybe there should be?</p>
<p>"Spuriously declaring packets as lost leads to unnecessary retransmissions and may result in degraded performance due to the actions of the congestion controller upon detecting loss. Implementations that detect spurious retransmissions and increase the reordering threshold in packets or time MAY choose to start with smaller initial reordering thresholds to minimize recovery latency."</p>
<p>From comments on <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="497151715" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3057" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3057/hovercard" href="https://github.com/quicwg/base-drafts/pull/3057">#3057</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/3058?email_source=notifications&amp;email_token=AFTOJKYUD3AN2TONMHHZWLLQLDUURA5CNFSM4IZM73GKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNCVV5A">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4S2OPQFPVCOB2YZQLQLDUURANCNFSM4IZM73GA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY6NXMKZSQTHQALGALQLDUURA5CNFSM4IZM73GKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNCVV5A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3058?email_source=notifications\u0026email_token=AFTOJKYUD3AN2TONMHHZWLLQLDUURA5CNFSM4IZM73GKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNCVV5A",
"url": "https://github.com/quicwg/base-drafts/issues/3058?email_source=notifications\u0026email_token=AFTOJKYUD3AN2TONMHHZWLLQLDUURA5CNFSM4IZM73GKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNCVV5A",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d88f1c89d2ce_2d193f86294cd9682698fc--


From nobody Mon Sep 23 09:25: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 8D40C1200D5 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 09:25:18 -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 XAh8PjjNOafM for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 09:25: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 203D8120112 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 09:25:17 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 69F67A0834 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 09:25:16 -0700 (PDT)
Date: Mon, 23 Sep 2019 09:25:16 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK65N6X7DCHCMWTX4JF3SYZHZEVBNHHB3IPO4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057/review/291901280@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d88f1ec5a81a_40333fd88b0cd96c1551a9"; 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/uxYnKCFwB8Aiy0fqBydTcdxbeho>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 16:25:19 -0000

----==_mimepart_5d88f1ec5a81a_40333fd88b0cd96c1551a9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> @@ -526,12 +526,11 @@ as a probe, unless there is no data available to send.  An endpoint MAY send up
 to two full-sized datagrams containing ack-eliciting packets, to avoid an
 expensive consecutive PTO expiration due to a single lost datagram.
 
-It is possible that the sender has no new or previously-sent data to send.  As
-an example, consider the following sequence of events: new application data is
-sent in a STREAM frame, deemed lost, then retransmitted in a new packet, and
-then the original transmission is acknowledged.  In the absence of any new
-application data, a PTO timer expiration now would find the sender with no new
-or previously-sent data to send.
+When the PTO timer expires, and there is new or previously sent data, it MUST
+be sent.  It is possible the sender has no new or previously-sent data to send.
+As an example, consider the following sequence of events: new application data
+is sent in a STREAM frame, deemed lost, then retransmitted in a new packet,
+and then the original transmission is acknowledged.

It probably should be recommended behavior, and we should probably have some text on it.  Filed #3058 to discuss if and what to do to improve 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/3057#discussion_r327209845
----==_mimepart_5d88f1ec5a81a_40333fd88b0cd96c1551a9
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/3057#discussion_r327209845">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -526,12 +526,11 @@ as a probe, unless there is no data available to send.  An endpoint MAY send up
 to two full-sized datagrams containing ack-eliciting packets, to avoid an
 expensive consecutive PTO expiration due to a single lost datagram.
 
-It is possible that the sender has no new or previously-sent data to send.  As
-an example, consider the following sequence of events: new application data is
-sent in a STREAM frame, deemed lost, then retransmitted in a new packet, and
-then the original transmission is acknowledged.  In the absence of any new
-application data, a PTO timer expiration now would find the sender with no new
-or previously-sent data to send.
+When the PTO timer expires, and there is new or previously sent data, it MUST
+be sent.  It is possible the sender has no new or previously-sent data to send.
+As an example, consider the following sequence of events: new application data
+is sent in a STREAM frame, deemed lost, then retransmitted in a new packet,
+and then the original transmission is acknowledged.
</pre>
<p>It probably should be recommended behavior, and we should probably have some text on it.  Filed <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="497200506" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3058" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3058/hovercard" href="https://github.com/quicwg/base-drafts/issues/3058">#3058</a> to discuss if and what to do to improve 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/3057?email_source=notifications&amp;email_token=AFTOJK7XBPKRNLGKS5ICTW3QLDUWZA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFTA6YA#discussion_r327209845">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5LSAAWJ6SM2UIPOGDQLDUWZANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3GSZSW6LPMTE6IC7LQLDUWZA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFTA6YA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK7XBPKRNLGKS5ICTW3QLDUWZA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFTA6YA#discussion_r327209845",
"url": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK7XBPKRNLGKS5ICTW3QLDUWZA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFTA6YA#discussion_r327209845",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d88f1ec5a81a_40333fd88b0cd96c1551a9--


From nobody Mon Sep 23 10: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 ECD64120047 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 10:34: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 yNUrwwFzV9TH for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 10:34: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 F29D51200F4 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 10:34:05 -0700 (PDT)
Date: Mon, 23 Sep 2019 10:34:05 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569260045; bh=P3VcwXYlVZvmBET6fOIIRTnGUvKagIPwez6/P/mSZTA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SWM0/FCeR+tw6qj/rBB0xFJkVwxtSXoBVYzpDMM/zKWzmSg/BoftwscKoeVaLxsRu coN4Y+2M3V/iXZ4iCF5Lao9hMvPTj4s2JKBYW+kKwHaMbI8Cl1TWC5Kmf6on9pFdDo Se1TaTPc0xV8vFNA7MUPF+3CKL/AOzaJubtImzDs=
From: Benjamin Saunders <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4XKROEYR5WJE3PWGN3SZBJ3EVBNHHB3IVNPI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3058/534203423@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3058@github.com>
References: <quicwg/base-drafts/issues/3058@github.com>
Subject: Re: [quicwg/base-drafts] Clearer description of detecting spurious retransmissions (#3058)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d89020d9915_6d603ff5e52cd95c83857"; 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/dW5IMC1RdSemejiouTZeZptw5ms>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 17:34:08 -0000

----==_mimepart_5d89020d9915_6d603ff5e52cd95c83857
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Some discussion of implementation strategies here would absolutely be helpful; it doesn't obviously fall out of Quinn's current architecture.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3058#issuecomment-534203423
----==_mimepart_5d89020d9915_6d603ff5e52cd95c83857
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Some discussion of implementation strategies here would absolutely be helpful; it doesn't obviously fall out of Quinn's current architecture.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3058?email_source=notifications&amp;email_token=AFTOJKYAT4OETBJDBRWB6ZLQLD4Y3A5CNFSM4IZM73GKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LUYHY#issuecomment-534203423">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6SSOOYR237Q55R4XLQLD4Y3ANCNFSM4IZM73GA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5HOD7TWBSAOZRKPMTQLD4Y3A5CNFSM4IZM73GKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LUYHY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3058?email_source=notifications\u0026email_token=AFTOJKYAT4OETBJDBRWB6ZLQLD4Y3A5CNFSM4IZM73GKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LUYHY#issuecomment-534203423",
"url": "https://github.com/quicwg/base-drafts/issues/3058?email_source=notifications\u0026email_token=AFTOJKYAT4OETBJDBRWB6ZLQLD4Y3A5CNFSM4IZM73GKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7LUYHY#issuecomment-534203423",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d89020d9915_6d603ff5e52cd95c83857--


From nobody Mon Sep 23 12:19: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 9F87F120071 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 12:19: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 CFGNLefO8EB6 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 12:19:09 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3B345120020 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 12:19:09 -0700 (PDT)
Date: Mon, 23 Sep 2019 12:19:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569266348; bh=xtubgut8pxQEd0plqtb1MWIGG/7jbjDEUyJC++7jGgo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rf+lCu0r06kBSuqnVnmSd0zHHeNQ5c+lC/dGsFd5uVuykABG6Qe43IQhcrAS0w33c bAycR13czpFh7FiRgPGFe8b1eVJ8LiOlHo52ZVxz6p/o2sCAFDOOVjKjs3I+ZOr85S cJo3en76bxL9ITkU3eMMz3pOeT2kqV9Q/Pb+1hz8=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2FTH6PLO6XYDQ3IZF3SZNTZEVBNHHB25V4CU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3039/issue_event/2655602425@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3039@github.com>
References: <quicwg/base-drafts/issues/3039@github.com>
Subject: Re: [quicwg/base-drafts] TLS Early Data is impossible (#3039)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d891aac51af7_46a63f955bccd96010502d"; 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/ThwK0LJVGk6VigGb5bQSVi-wTJQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 19:19:11 -0000

----==_mimepart_5d891aac51af7_46a63f955bccd96010502d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3039.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3039#event-2655602425
----==_mimepart_5d891aac51af7_46a63f955bccd96010502d
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="494320661" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3039" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3039/hovercard" href="https://github.com/quicwg/base-drafts/issues/3039">#3039</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/3039?email_source=notifications&amp;email_token=AFTOJKYHC6NNLHC3FKLZS43QLEJCZA5CNFSM4IXIKED2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTZEUN6I#event-2655602425">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2EJV3KNGSUS6HB2V3QLEJCZANCNFSM4IXIKEDQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7GN3ONAALXJ7M5T5DQLEJCZA5CNFSM4IXIKED2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTZEUN6I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3039?email_source=notifications\u0026email_token=AFTOJKYHC6NNLHC3FKLZS43QLEJCZA5CNFSM4IXIKED2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTZEUN6I#event-2655602425",
"url": "https://github.com/quicwg/base-drafts/issues/3039?email_source=notifications\u0026email_token=AFTOJKYHC6NNLHC3FKLZS43QLEJCZA5CNFSM4IXIKED2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTZEUN6I#event-2655602425",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d891aac51af7_46a63f955bccd96010502d--


From nobody Mon Sep 23 12:19: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 6A7371208DF for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 12:19: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 ANuBtGmgmPBb for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 12:19: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 943A2120020 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 12:19:31 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id B9AD6660608 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 12:19:30 -0700 (PDT)
Date: Mon, 23 Sep 2019 12:19:30 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZD2ZRQLIXVQZ7Y5O53SZNVFEVBNHHB22URPQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3032/issue_event/2655603510@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3032@github.com>
References: <quicwg/base-drafts/issues/3032@github.com>
Subject: Re: [quicwg/base-drafts] Detectable Stateless Resets (#3032)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d891ac2aa964_25f83fc8c8ecd968621cf"; 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/PzXfolwA5UzIYaWJJnf7DGPagrI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 19:19:40 -0000

----==_mimepart_5d891ac2aa964_25f83fc8c8ecd968621cf
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3032.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3032#event-2655603510
----==_mimepart_5d891ac2aa964_25f83fc8c8ecd968621cf
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="493523324" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3032" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3032/hovercard" href="https://github.com/quicwg/base-drafts/issues/3032">#3032</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/3032?email_source=notifications&amp;email_token=AFTOJK3JWJIINXQUHMPBKBTQLEJEFA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTZEUWNQ#event-2655603510">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7QIC3GJSNLTO4NQ7TQLEJEFANCNFSM4IWUGA6Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5U3HTJAV7NE2LPYATQLEJEFA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTZEUWNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications\u0026email_token=AFTOJK3JWJIINXQUHMPBKBTQLEJEFA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTZEUWNQ#event-2655603510",
"url": "https://github.com/quicwg/base-drafts/issues/3032?email_source=notifications\u0026email_token=AFTOJK3JWJIINXQUHMPBKBTQLEJEFA5CNFSM4IWUGA62YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTZEUWNQ#event-2655603510",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d891ac2aa964_25f83fc8c8ecd968621cf--


From nobody Mon Sep 23 15:32: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 463C9120045 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 15:32: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 UE7PYOnGQedU for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 15:32: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 9FD4C120044 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 15:32:35 -0700 (PDT)
Date: Mon, 23 Sep 2019 15:32:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569277954; bh=ZbytNdO85Ci2jigqvfj2lpQg2zjucSYkbMdljbIaSQ4=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=nXMeN0hyxSWsXStrvT2IAmHDQ77Nwb6e5pSJ2FljPDC6ZSdtl2xEeMXtshhOCUorS Zcgl6z5jcktWD4dt1u2Ii7duxHYCjVsieLM0xqWSWSn03A5hNzZ505HaWPi3RAlMjv pjiDtp3NMArLqN3YUg0CtnSh+brZI9fEn1+R0bJw=
From: Peter Wu <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5GOHEAZ6V5PPRIHQV3S2EJFEVBNHHB3JI7X4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3059@github.com>
Subject: [quicwg/base-drafts] http: syntax fixes for quic Alt-Svc parameter (#3059)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d894802bbf2e_4a933fdcefccd95c1141a5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: Lekensteyn
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/u-7NZM51xq8QWM6LWPbjuKNwRrY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 22:32:37 -0000

----==_mimepart_5d894802bbf2e_4a933fdcefccd95c1141a5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Following https://tools.ietf.org/html/rfc7838#section-3, the Alt-Svc
parameter value can be unquoted. Do not further restrict that grammar
and use the correct ABNF syntax to express repetition.

Fix the Reserved frame type link.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3059

-- Commit Summary --

  * http: syntax fixes for quic Alt-Svc parameter

-- File Changes --

    M draft-ietf-quic-http.md (9)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3059.patch
https://github.com/quicwg/base-drafts/pull/3059.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/3059

----==_mimepart_5d894802bbf2e_4a933fdcefccd95c1141a5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Following <a rel="nofollow" href="https://tools.ietf.org/html/rfc7838#section-3">https://tools.ietf.org/html/rfc7838#section-3</a>, the Alt-Svc<br>
parameter value can be unquoted. Do not further restrict that grammar<br>
and use the correct ABNF syntax to express repetition.</p>
<p>Fix the Reserved frame type link.</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/3059'>https://github.com/quicwg/base-drafts/pull/3059</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>http: syntax fixes for quic Alt-Svc parameter</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3059/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/3059.patch'>https://github.com/quicwg/base-drafts/pull/3059.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3059.diff'>https://github.com/quicwg/base-drafts/pull/3059.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/3059?email_source=notifications&amp;email_token=AFTOJK7QY4LNL6LZPYSQQULQLE7YFA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFD67Q">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZPG34PENIVEGD5ZNTQLE7YFANCNFSM4IZUFMQQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZY2JQHDPZUDXV7P4LQLE7YFA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFD67Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3059?email_source=notifications\u0026email_token=AFTOJK7QY4LNL6LZPYSQQULQLE7YFA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFD67Q",
"url": "https://github.com/quicwg/base-drafts/pull/3059?email_source=notifications\u0026email_token=AFTOJK7QY4LNL6LZPYSQQULQLE7YFA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFD67Q",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d894802bbf2e_4a933fdcefccd95c1141a5--


From nobody Mon Sep 23 16: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 C07F5120045 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:00: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 qPP1d__4dCha for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:00: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 1DD7D12004C for <quic-issues@ietf.org>; Mon, 23 Sep 2019 16:00:37 -0700 (PDT)
Date: Mon, 23 Sep 2019 16:00:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569279636; bh=++/Ra1mwoHyp+s6cep4IrZgtK54KhUp3gQ48qd++ByU=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=dE/al7JtJf2TfwC2DtKrEle8Eii7EdmKlJAMD6891u/n5Qe8T0RehZwE3xoqHPt56 HMLsf9PLZrAuKccTOu/TleRKYXedb84H2sKE5URnJLToxrmcGJejgDSHREZjOTtuCw fOQHFYZpb5QCAw6Ph7wRx0STNzcCpM8Kc7di9Or0=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZGSW5YWKPJGZAMYZV3S2HSJEVBNHHB3JJ6UI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3060@github.com>
Subject: [quicwg/base-drafts] Clarify how servers enable 0-RTT (#3060)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d894e9487e6_7773fc5424cd960147136"; 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/I8Te0YP6WLwAyOQKKI7Ac2OykAI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 23:00:39 -0000

----==_mimepart_5d894e9487e6_7773fc5424cd960147136
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The current text was unclear to me: how does one enforce a MUST on TLS? The updated text hopefully clarifies that it&#39;s legal for a server to send a NewSessionTicket without the &quot;early_data&quot; extension - that indicates that the server supports resumption but not 0-RTT, as it does in TLS.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3060

-- Commit Summary --

  * Clarify how servers enable 0-RTT

-- File Changes --

    M draft-ietf-quic-tls.md (12)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3060.patch
https://github.com/quicwg/base-drafts/pull/3060.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/3060

----==_mimepart_5d894e9487e6_7773fc5424cd960147136
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The current text was unclear to me: how does one enforce a MUST on TLS? The updated text hopefully clarifies that it's legal for a server to send a NewSessionTicket without the "early_data" extension - that indicates that the server supports resumption but not 0-RTT, as it does in TLS.</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/3060'>https://github.com/quicwg/base-drafts/pull/3060</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Clarify how servers enable 0-RTT</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3060/files#diff-0">draft-ietf-quic-tls.md</a>
    (12)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3060.patch'>https://github.com/quicwg/base-drafts/pull/3060.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3060.diff'>https://github.com/quicwg/base-drafts/pull/3060.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/3060?email_source=notifications&amp;email_token=AFTOJK3U7RECBSDVZX4GNXDQLFDBJA5CNFSM4IZUXQD2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFH2RA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3JWGCJCRAPWLRVVO3QLFDBJANCNFSM4IZUXQDQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK43JGFQLRCHLXNYUETQLFDBJA5CNFSM4IZUXQD2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFH2RA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3060?email_source=notifications\u0026email_token=AFTOJK3U7RECBSDVZX4GNXDQLFDBJA5CNFSM4IZUXQD2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFH2RA",
"url": "https://github.com/quicwg/base-drafts/pull/3060?email_source=notifications\u0026email_token=AFTOJK3U7RECBSDVZX4GNXDQLFDBJA5CNFSM4IZUXQD2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFH2RA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d894e9487e6_7773fc5424cd960147136--


From nobody Mon Sep 23 16:07: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 D167712004C for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:07: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 Su4gW8LLU9HG for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:07:25 -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 2FD1D120045 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 16:07:25 -0700 (PDT)
Date: Mon, 23 Sep 2019 16:07:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569280044; bh=vDQBz0kP0erEX62Q/yHj/dS3nbf5eH3l/SzVyG1Eoy0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=fGVsuU/iV2RcBk3OvWZu4o6a2MliCoEzadN9OcqO19Ao0F+YFcjBpb4tX3MZ+pZv4 aPJk7g/ADTl2PSWMYRT9A3NFGMpUeNvALVFdkz7u6eHmx+vkg8skebNbi31SI70Bqv JYz9D8K7aunB/cqWZXP7A4T0i/n2Hl1Z3RZuCQQo=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYQ2ONICHP35CTDJVF3S2ILZEVBNHHB3JI7X4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3059/c534319043@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3059@github.com>
References: <quicwg/base-drafts/pull/3059@github.com>
Subject: Re: [quicwg/base-drafts] http: syntax fixes for quic Alt-Svc parameter (#3059)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d89502c2bc85_32c53fe4b84cd95c921eb"; 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/YwfXXsRTcGYJlow7JSUtj2JpqOI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 23:07:27 -0000

----==_mimepart_5d89502c2bc85_32c53fe4b84cd95c921eb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

There is some baggage with this parameter - https://github.com/quicwg/base-drafts/issues/1093

People were a bit grumpy with changing their parser 18 months ago, I think they might be even grumpier now that we have even more client implementations in the wild.

What is the benefit of this change? I think we need an issue for due process and discussion.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3059#issuecomment-534319043
----==_mimepart_5d89502c2bc85_32c53fe4b84cd95c921eb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>There is some baggage with this parameter - <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="293902356" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/1093" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/1093/hovercard" href="https://github.com/quicwg/base-drafts/issues/1093">#1093</a></p>
<p>People were a bit grumpy with changing their parser 18 months ago, I think they might be even grumpier now that we have even more client implementations in the wild.</p>
<p>What is the benefit of this change? I think we need an issue for due process and discussion.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3059?email_source=notifications&amp;email_token=AFTOJK2GFEENSPCIUQ5O5FTQLFD2ZA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MQ7QY#issuecomment-534319043">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK45EY66Y56XVTXAOFTQLFD2ZANCNFSM4IZUFMQQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4SSO4MTDVAYCZXD63QLFD2ZA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MQ7QY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3059?email_source=notifications\u0026email_token=AFTOJK2GFEENSPCIUQ5O5FTQLFD2ZA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MQ7QY#issuecomment-534319043",
"url": "https://github.com/quicwg/base-drafts/pull/3059?email_source=notifications\u0026email_token=AFTOJK2GFEENSPCIUQ5O5FTQLFD2ZA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MQ7QY#issuecomment-534319043",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d89502c2bc85_32c53fe4b84cd95c921eb--


From nobody Mon Sep 23 16:21: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 4B5A3120088 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:21:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 xuhH11uhFCAs for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:21: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 0F770120045 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 16:21:28 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 696A51C094A for <quic-issues@ietf.org>; Mon, 23 Sep 2019 16:21:27 -0700 (PDT)
Date: Mon, 23 Sep 2019 16:21:27 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6PKUS63ROUU37ANIV3S2C7PEVBNHHB3IPO4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057/review/292104940@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8953775a961_323f3fddc7acd96c100169"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_6NbRkTE4NQo_2IhgJ144Ec6WJs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 23:21:30 -0000

----==_mimepart_5d8953775a961_323f3fddc7acd96c100169
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.



>  
-When there is no data to send, the sender SHOULD send a PING or other
-ack-eliciting frame in a single packet, re-arming the PTO timer.
+It is possible the sender has no new or previously-sent data to send.
+As an example, consider the following sequence of events: new application data
+is sent in a STREAM frame, deemed lost, then retransmitted in a new packet,
+and then the original transmission is acknowledged.  When there is no data to
+send, the sender SHOULD send a PING or other ack-eliciting frame in a single
+packet, re-arming the PTO timer.

I don't get this example.  In this example, you have sent something, it was received, end of story.

The new text above says that you can't arm PTO if you have nothing to send (MUST NOT even).  Which did you mean?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3057#pullrequestreview-292104940
----==_mimepart_5d8953775a961_323f3fddc7acd96c100169
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/3057#discussion_r327370549">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;  
-When there is no data to send, the sender SHOULD send a PING or other
-ack-eliciting frame in a single packet, re-arming the PTO timer.
+It is possible the sender has no new or previously-sent data to send.
+As an example, consider the following sequence of events: new application data
+is sent in a STREAM frame, deemed lost, then retransmitted in a new packet,
+and then the original transmission is acknowledged.  When there is no data to
+send, the sender SHOULD send a PING or other ack-eliciting frame in a single
+packet, re-arming the PTO timer.
</pre>
<p>I don't get this example.  In this example, you have sent something, it was received, end of story.</p>
<p>The new text above says that you can't arm PTO if you have nothing to send (MUST NOT even).  Which did you mean?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications&amp;email_token=AFTOJK474RRKBSAQE33OPSLQLFFPPA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUSV3A#pullrequestreview-292104940">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5YTVYRDXDFDWQEV23QLFFPPANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7SA4WTP62GNUJC52TQLFFPPA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUSV3A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK474RRKBSAQE33OPSLQLFFPPA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUSV3A#pullrequestreview-292104940",
"url": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK474RRKBSAQE33OPSLQLFFPPA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUSV3A#pullrequestreview-292104940",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8953775a961_323f3fddc7acd96c100169--


From nobody Mon Sep 23 16:21: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 94457120088 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:21:54 -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 mDHwoJ3t73cC for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:21:52 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2BC3F120045 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 16:21:52 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 91D472C0B3F for <quic-issues@ietf.org>; Mon, 23 Sep 2019 16:21:51 -0700 (PDT)
Date: Mon, 23 Sep 2019 16:21:51 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3KB5WRLSVEQMGTYGV3SZ377EVBNHHB3EHJBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3051/review/292105048@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3051@github.com>
References: <quicwg/base-drafts/pull/3051@github.com>
Subject: Re: [quicwg/base-drafts] Clients send datagrams with 1200 byte payloads (#3051)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d89538f82449_2f3e3f7ea5ccd9644946c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/94UQLfKV5NUxUkX6bH0ZWS_uoQQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 23:21:55 -0000

----==_mimepart_5d89538f82449_2f3e3f7ea5ccd9644946c
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/3051#pullrequestreview-292105048
----==_mimepart_5d89538f82449_2f3e3f7ea5ccd9644946c
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/3051?email_source=notifications&amp;email_token=AFTOJKYRVFLH7SYPT62HLHTQLFFQ7A5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUSWWA#pullrequestreview-292105048">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYLGCT3LP5EEFNTW53QLFFQ7ANCNFSM4IYQIHGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2NFGHVIWHDO6YY3XTQLFFQ7A5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUSWWA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJKYRVFLH7SYPT62HLHTQLFFQ7A5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUSWWA#pullrequestreview-292105048",
"url": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJKYRVFLH7SYPT62HLHTQLFFQ7A5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUSWWA#pullrequestreview-292105048",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d89538f82449_2f3e3f7ea5ccd9644946c--


From nobody Mon Sep 23 16:27: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 547CC120088 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:27: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 Rdq71dBQh9mV for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:27:34 -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 41EA0120045 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 16:27:33 -0700 (PDT)
Date: Mon, 23 Sep 2019 16:27:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569281252; bh=jhVac22qWNGG3fpEJJh9Q7JzL7pHGRP7/qxmv8tT1uI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bfPYowWXyeU0NM4cBecn3hVflpNBA8XmY/5ZiNaMUiK2rhJefrT8Z6j3SShHTgWdN xdqVDSgPunqsN21HMJHfDMVoDizGZATXwyo/wwSd64+E+r+6/LcLQNQjb4DNFbSF6x 4cUbuloftcZURrvQYPoC92XeLPThUfE0Mzc4y2gQ=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7LCQ6RU3NL4OZPT7V3S2KXJEVBNHHB3EHJBY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3051/review/292106585@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3051@github.com>
References: <quicwg/base-drafts/pull/3051@github.com>
Subject: Re: [quicwg/base-drafts] Clients send datagrams with 1200 byte payloads (#3051)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8954e459592_6ea3ff230ecd96897492"; 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/nnklq-ApIn2CihhqdtfgbpC5G7g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 23:27:35 -0000

----==_mimepart_5d8954e459592_6ea3ff230ecd96897492
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/3051#pullrequestreview-292106585
----==_mimepart_5d8954e459592_6ea3ff230ecd96897492
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/3051?email_source=notifications&amp;email_token=AFTOJK44HRX5K5IWUWZJCK3QLFGGJA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUTCWI#pullrequestreview-292106585">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7Q5PSYCBI4JWJLXZ3QLFGGJANCNFSM4IYQIHGQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK64XUK34HRFCFJVIZLQLFGGJA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUTCWI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJK44HRX5K5IWUWZJCK3QLFGGJA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUTCWI#pullrequestreview-292106585",
"url": "https://github.com/quicwg/base-drafts/pull/3051?email_source=notifications\u0026email_token=AFTOJK44HRX5K5IWUWZJCK3QLFGGJA5CNFSM4IYQIHG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUTCWI#pullrequestreview-292106585",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8954e459592_6ea3ff230ecd96897492--


From nobody Mon Sep 23 16:28: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 6DD141200B4 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:28:04 -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 cETABbkcGMtc for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:28: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 7ECD1120089 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 16:28:01 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id C86669603A2 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 16:28:00 -0700 (PDT)
Date: Mon, 23 Sep 2019 16:28:00 -0700
From: Ryan Hamilton <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2B4CMEIHD3YW3DG753S2KZBEVBNHHB3JI7X4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3059/c534323939@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3059@github.com>
References: <quicwg/base-drafts/pull/3059@github.com>
Subject: Re: [quicwg/base-drafts] http: syntax fixes for quic Alt-Svc parameter (#3059)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d895500b9c29_32353fddc7acd96c928ba"; 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/Bt86PUiKkCU9padaNZjz2tlLRqY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 23:28:04 -0000

----==_mimepart_5d895500b9c29_32353fddc7acd96c928ba
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Oh joy. This caused me to go look at our parser in Chrome, and realized we're still doing the old (pre 1097) quic=<hex>;quic=<hex> format. So Chrome has work to do no matter how we resolve this. 

That being said, I'd really rather not have two different ways to do this, so +1 to @LPardue 's comment on the motivation.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3059#issuecomment-534323939
----==_mimepart_5d895500b9c29_32353fddc7acd96c928ba
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Oh joy. This caused me to go look at our parser in Chrome, and realized we're still doing the old (pre 1097) quic=;quic= format. So Chrome has work to do no matter how we resolve this.</p>
<p>That being said, I'd really rather not have two different ways to do this, so +1 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> 's comment on the motivation.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3059?email_source=notifications&amp;email_token=AFTOJKYNO26TUYJT2KCK5QLQLFGIBA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MSFYY#issuecomment-534323939">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZONMAW5LBU67PDD6LQLFGIBANCNFSM4IZUFMQQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3PBJ5URHFIKFUM3PLQLFGIBA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MSFYY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3059?email_source=notifications\u0026email_token=AFTOJKYNO26TUYJT2KCK5QLQLFGIBA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MSFYY#issuecomment-534323939",
"url": "https://github.com/quicwg/base-drafts/pull/3059?email_source=notifications\u0026email_token=AFTOJKYNO26TUYJT2KCK5QLQLFGIBA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MSFYY#issuecomment-534323939",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d895500b9c29_32353fddc7acd96c928ba--


From nobody Mon Sep 23 16:34: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 E20F9120090 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:34:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 ezcP17PF1Y5I for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:34: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 78A60120045 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 16:34:21 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id AE8EB8C06B6 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 16:34:20 -0700 (PDT)
Date: Mon, 23 Sep 2019 16:34:20 -0700
From: Benjamin Saunders <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3WYX7QMKWPYYYAG3F3S2LQZEVBNHHB3IPO4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057/review/292108400@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d89567c9fb72_7fe93ff0792cd964283d3"; 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/4yMSrrUTQJobtqdN2jIyyzfJLno>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 23:34:23 -0000

----==_mimepart_5d89567c9fb72_7fe93ff0792cd964283d3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Ralith commented on this pull request.



>  
-When there is no data to send, the sender SHOULD send a PING or other
-ack-eliciting frame in a single packet, re-arming the PTO timer.
+It is possible the sender has no new or previously-sent data to send.
+As an example, consider the following sequence of events: new application data
+is sent in a STREAM frame, deemed lost, then retransmitted in a new packet,
+and then the original transmission is acknowledged.  When there is no data to
+send, the sender SHOULD send a PING or other ack-eliciting frame in a single
+packet, re-arming the PTO timer.

In this case, the second packet is ack-eliciting and has not been acknowledged, eventually leading to a probe timeout. However, there is no unsent or sent-but-unacknowledged ack-eliciting data available to send, so a `PING` is fabricated instead.

Perhaps "there is new or previously sent data" should be more specific?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3057#discussion_r327373408
----==_mimepart_5d89567c9fb72_7fe93ff0792cd964283d3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@Ralith</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3057#discussion_r327373408">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;  
-When there is no data to send, the sender SHOULD send a PING or other
-ack-eliciting frame in a single packet, re-arming the PTO timer.
+It is possible the sender has no new or previously-sent data to send.
+As an example, consider the following sequence of events: new application data
+is sent in a STREAM frame, deemed lost, then retransmitted in a new packet,
+and then the original transmission is acknowledged.  When there is no data to
+send, the sender SHOULD send a PING or other ack-eliciting frame in a single
+packet, re-arming the PTO timer.
</pre>
<p>In this case, the second packet is ack-eliciting and has not been acknowledged, eventually leading to a probe timeout. However, there is no unsent or sent-but-unacknowledged ack-eliciting data available to send, so a <code>PING</code> is fabricated instead.</p>
<p>Perhaps "there is new or previously sent data" should be more specific?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications&amp;email_token=AFTOJK7N26HXNHLHJPJEIVDQLFG7ZA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUTQ4A#discussion_r327373408">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4AESD7QEH74ELR2JDQLFG7ZANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK57UBAJBWBQWXOPKTTQLFG7ZA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUTQ4A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK7N26HXNHLHJPJEIVDQLFG7ZA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUTQ4A#discussion_r327373408",
"url": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK7N26HXNHLHJPJEIVDQLFG7ZA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUTQ4A#discussion_r327373408",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d89567c9fb72_7fe93ff0792cd964283d3--


From nobody Mon Sep 23 16:39: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 B7822120047 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:39:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 RRfi3MaQXehA for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:39:18 -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 E3C66120045 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 16:39:17 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 618642603B7 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 16:39:17 -0700 (PDT)
Date: Mon, 23 Sep 2019 16:39:17 -0700
From: Peter Wu <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6UHMIAVS43P5S6CKN3S2MDLEVBNHHB3JI7X4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3059/c534326183@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3059@github.com>
References: <quicwg/base-drafts/pull/3059@github.com>
Subject: Re: [quicwg/base-drafts] http: syntax fixes for quic Alt-Svc parameter (#3059)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8957a51a892_45883fde0cecd96478628"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: Lekensteyn
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Oqjf1X0VaBZd0rF-3cIUMudNBco>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 23:39:20 -0000

----==_mimepart_5d8957a51a892_45883fde0cecd96478628
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I can remove the additional unquoted token change and keep this PR purely as editorial fix. Before the PR, the current text does not have correct ABNF grammar.

I added the unquoted token variant since it is permitted (but not required) by the grammar at https://tools.ietf.org/html/rfc7838#section-3
>    parameter     = token "=" ( token / quoted-string )

Since HTTP/3 over QUIC is not the only user of this Alt-Svc header, I can imagine that generic parsers are written such that they already understand the unquoted token value. Thus, adding support for this should not be an additional burden?

I have no strong opinion here. The additional CPU cost of handling both unquoted and quoted forms should be neglible. Disallowing the unquoted form is a restriction of the RFC 7838 grammar.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3059#issuecomment-534326183
----==_mimepart_5d8957a51a892_45883fde0cecd96478628
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I can remove the additional unquoted token change and keep this PR purely as editorial fix. Before the PR, the current text does not have correct ABNF grammar.</p>
<p>I added the unquoted token variant since it is permitted (but not required) by the grammar at <a href="https://tools.ietf.org/html/rfc7838#section-3" rel="nofollow">https://tools.ietf.org/html/rfc7838#section-3</a></p>
<blockquote>
<p>parameter     = token "=" ( token / quoted-string )</p>
</blockquote>
<p>Since HTTP/3 over QUIC is not the only user of this Alt-Svc header, I can imagine that generic parsers are written such that they already understand the unquoted token value. Thus, adding support for this should not be an additional burden?</p>
<p>I have no strong opinion here. The additional CPU cost of handling both unquoted and quoted forms should be neglible. Disallowing the unquoted form is a restriction of the RFC 7838 grammar.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3059?email_source=notifications&amp;email_token=AFTOJK37VH3W7ECNP64UPVDQLFHSLA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MSXJY#issuecomment-534326183">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK73CNJ3SX6ZRKQYDK3QLFHSLANCNFSM4IZUFMQQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZAO7FI3UAMGCRLHRTQLFHSLA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MSXJY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3059?email_source=notifications\u0026email_token=AFTOJK37VH3W7ECNP64UPVDQLFHSLA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MSXJY#issuecomment-534326183",
"url": "https://github.com/quicwg/base-drafts/pull/3059?email_source=notifications\u0026email_token=AFTOJK37VH3W7ECNP64UPVDQLFHSLA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MSXJY#issuecomment-534326183",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8957a51a892_45883fde0cecd96478628--


From nobody Mon Sep 23 16:49: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 9DBFB120098 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:49:32 -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 1KrX_-IUCLUL for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:49: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 C7F9D120077 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 16:49:30 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id D707B6A0C91 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 16:49:29 -0700 (PDT)
Date: Mon, 23 Sep 2019 16:49:29 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2NX5CFIUIIOKYJMO53S2NJTEVBNHHB3JLRAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3061@github.com>
Subject: [quicwg/base-drafts] Unclear what to do when QUIC Version Hints are missing (#3061)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d895a09c7bbb_26893f81c6ccd968471b3"; 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/MJo_jX_LCyplVUP-KaMKEbm9asE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 23:49:33 -0000

----==_mimepart_5d895a09c7bbb_26893f81c6ccd968471b3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

[draft-quic-http defines QUIC Version Hints](https://tools.ietf.org/html/draft-ietf-quic-http-23#section-3.2.1). This allows the server to indicate which versions of quic-transport it prefers. However, there is no guidance as to what to do in the absence of such hints.

If a client receives `Alt-Svc: h3=":443"` (without any hints), is it expected to start with QUIC version 1, or with the client's preferred QUIC version?

If a client receives `Alt-Svc: h3-23=":443"`, is it expected to start with `0xff000017` (draft-ietf-quic-transport-23)?

We may want to provide guidance in draft-quic-http to ensure everyone's on the same page.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3061
----==_mimepart_5d895a09c7bbb_26893f81c6ccd968471b3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://tools.ietf.org/html/draft-ietf-quic-http-23#section-3.2.1" rel="nofollow">draft-quic-http defines QUIC Version Hints</a>. This allows the server to indicate which versions of quic-transport it prefers. However, there is no guidance as to what to do in the absence of such hints.</p>
<p>If a client receives <code>Alt-Svc: h3=":443"</code> (without any hints), is it expected to start with QUIC version 1, or with the client's preferred QUIC version?</p>
<p>If a client receives <code>Alt-Svc: h3-23=":443"</code>, is it expected to start with <code>0xff000017</code> (draft-ietf-quic-transport-23)?</p>
<p>We may want to provide guidance in draft-quic-http to ensure everyone's on the same page.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications&amp;email_token=AFTOJK7KJMHBYAKVZZECR4LQLFIYTA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFOECQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4THEKDX3CWKMTDZDLQLFIYTANCNFSM4IZVWQRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7OZBQHBDN4NRDK7BTQLFIYTA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFOECQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications\u0026email_token=AFTOJK7KJMHBYAKVZZECR4LQLFIYTA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFOECQ",
"url": "https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications\u0026email_token=AFTOJK7KJMHBYAKVZZECR4LQLFIYTA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFOECQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d895a09c7bbb_26893f81c6ccd968471b3--


From nobody Mon Sep 23 16:53: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 CAF421201DB for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:53:30 -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 ecP0SYWGuLgc for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 16:53: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 A3A55120111 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 16:53:28 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id C2D41660773 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 16:53:27 -0700 (PDT)
Date: Mon, 23 Sep 2019 16:53:27 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6HRMJEDIWEYCYEQB53S2NYPEVBNHHB3JLU5Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3062@github.com>
Subject: [quicwg/base-drafts] Disconnect version number from draft number (#3062)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d895af7b46b0_76953ff9d9acd95c19103a"; 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/Lm1Pg-59gd1nDZwnsd7b8lQVsBc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Sep 2019 23:53:35 -0000

----==_mimepart_5d895af7b46b0_76953ff9d9acd95c19103a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

As the documents are becoming more mature, the amount of protocol-level changes is going down. Would it make sense to start disconnecting the protocol versions ([ALPN](https://tools.ietf.org/html/draft-ietf-quic-http-23#section-3.1) `h3-23`, [transport version](https://tools.ietf.org/html/draft-ietf-quic-transport-23#section-15) `0xff000017`) from the draft numbers (i.e. `draft-ietf-quic-http-23`, `draft-ietf-quic-transport-23`)?

This correlation caused a few headaches in the final stages of TLS 1.3 standardization, it would be nice not to repeat that here.

(This was discussed a while back, and is not my idea, but is now the right 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/3062
----==_mimepart_5d895af7b46b0_76953ff9d9acd95c19103a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>As the documents are becoming more mature, the amount of protocol-level changes is going down. Would it make sense to start disconnecting the protocol versions (<a href="https://tools.ietf.org/html/draft-ietf-quic-http-23#section-3.1" rel="nofollow">ALPN</a> <code>h3-23</code>, <a href="https://tools.ietf.org/html/draft-ietf-quic-transport-23#section-15" rel="nofollow">transport version</a> <code>0xff000017</code>) from the draft numbers (i.e. <code>draft-ietf-quic-http-23</code>, <code>draft-ietf-quic-transport-23</code>)?</p>
<p>This correlation caused a few headaches in the final stages of TLS 1.3 standardization, it would be nice not to repeat that here.</p>
<p>(This was discussed a while back, and is not my idea, but is now the right 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/3062?email_source=notifications&amp;email_token=AFTOJK7DDI36M3TITMESWPLQLFJHPA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFOTWA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYX5TM43C2DMH6TCJDQLFJHPANCNFSM4IZVY72A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZECNPOGQELZJ6T2V3QLFJHPA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFOTWA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3062?email_source=notifications\u0026email_token=AFTOJK7DDI36M3TITMESWPLQLFJHPA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFOTWA",
"url": "https://github.com/quicwg/base-drafts/issues/3062?email_source=notifications\u0026email_token=AFTOJK7DDI36M3TITMESWPLQLFJHPA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFOTWA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d895af7b46b0_76953ff9d9acd95c19103a--


From nobody Mon Sep 23 17:04: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 9F6E9120098 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:04:31 -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 uqJEm9NhVcPu for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:04: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 ADACD120045 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 17:04:29 -0700 (PDT)
Date: Mon, 23 Sep 2019 17:04:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569283468; bh=+oTM4PCtqJQg1mde1sSDdB9zlujrCu2U5rTNT85eEzg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Ngpv7r8L9j1lJRuE/+sRA+KYLQ/WlmO4j9QA8Obs4oSLCSenvCBu29QjEfyP9qko8 jxtXNdD2ylIfc/TaEC9AbytuvAlIoYxCeFQiWYKdMW7oOfitPbU7N/xOJvLMjvYBwE iBGm0TpA0Udijn4i3RTH/1l+RlA0iOTLsoSTioEE=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYC7ELH7ZZTQ4PPSCF3S2PBZEVBNHHB3JI7X4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3059/c534331561@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3059@github.com>
References: <quicwg/base-drafts/pull/3059@github.com>
Subject: Re: [quicwg/base-drafts] http: syntax fixes for quic Alt-Svc parameter (#3059)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d895d8cc797b_3ca73fda64ecd96049946"; 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/3rdp9WMuNwGHBIj9SWRuxITQnL0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 00:04:32 -0000

----==_mimepart_5d895d8cc797b_3ca73fda64ecd96049946
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Let's create a new issue. 

You're correct that non-HTTP/3 implementations might need to handle this - hence the original issue which related back to structured headers (an attempt at defining some best practice in this regard -https://github.com/httpwg/http-extensions/issues/281).

Part of the problem is not CPU cost of DQUOTEs but expressing "a list of versions" and making sure that implementations know how to do that. Alt-Svc defines the parameter syntax but not how to handle repetition of parameters.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3059#issuecomment-534331561
----==_mimepart_5d895d8cc797b_3ca73fda64ecd96049946
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Let's create a new issue.</p>
<p>You're correct that non-HTTP/3 implementations might need to handle this - hence the original issue which related back to structured headers (an attempt at defining some best practice in this regard -<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="199098919" data-permission-text="Issue title is private" data-url="https://github.com/httpwg/http-extensions/issues/281" data-hovercard-type="issue" data-hovercard-url="/httpwg/http-extensions/issues/281/hovercard" href="https://github.com/httpwg/http-extensions/issues/281">httpwg/http-extensions#281</a>).</p>
<p>Part of the problem is not CPU cost of DQUOTEs but expressing "a list of versions" and making sure that implementations know how to do that. Alt-Svc defines the parameter syntax but not how to handle repetition of parameters.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3059?email_source=notifications&amp;email_token=AFTOJK7LOFLQZQP2JF6ORFTQLFKQZA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MUBKI#issuecomment-534331561">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4AABEJZFE2PGB2QILQLFKQZANCNFSM4IZUFMQQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7XETDGFODFI2HNZPDQLFKQZA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MUBKI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3059?email_source=notifications\u0026email_token=AFTOJK7LOFLQZQP2JF6ORFTQLFKQZA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MUBKI#issuecomment-534331561",
"url": "https://github.com/quicwg/base-drafts/pull/3059?email_source=notifications\u0026email_token=AFTOJK7LOFLQZQP2JF6ORFTQLFKQZA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MUBKI#issuecomment-534331561",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d895d8cc797b_3ca73fda64ecd96049946--


From nobody Mon Sep 23 17:16: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 95E12120089 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:16: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 8q8gCNJTQaiF for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:16: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 A52D6120045 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 17:16:37 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id ADB42960301 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 17:16:36 -0700 (PDT)
Date: Mon, 23 Sep 2019 17:16:36 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZGKZFB6W3U4PPH5Q53S2QPJEVBNHHB3JLU5Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3062/534334209@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3062@github.com>
References: <quicwg/base-drafts/issues/3062@github.com>
Subject: Re: [quicwg/base-drafts] Disconnect version number from draft number (#3062)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8960649aefa_66ef3ff5a00cd96c1615b"; 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/JwbnTTBo9txHIyBkqejYHeGt_KM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 00:16:40 -0000

----==_mimepart_5d8960649aefa_66ef3ff5a00cd96c1615b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm sympathetic to the point that is being made here but I don't know how solvable it is. 

HTTP/3 has been quite independent of QUIC version for a while, so its been funny watching if move in lock step with transport.

On the one hand, there are implications to changing the alt-svc identifier, which makes migration a little annoying. But on the other hand we just made a breaking changes between h3-22 and h3-23. 



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3062#issuecomment-534334209
----==_mimepart_5d8960649aefa_66ef3ff5a00cd96c1615b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'm sympathetic to the point that is being made here but I don't know how solvable it is.</p>
<p>HTTP/3 has been quite independent of QUIC version for a while, so its been funny watching if move in lock step with transport.</p>
<p>On the one hand, there are implications to changing the alt-svc identifier, which makes migration a little annoying. But on the other hand we just made a breaking changes between h3-22 and h3-23.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3062?email_source=notifications&amp;email_token=AFTOJK6PBP5OGGHUKOQMYYTQLFL6JA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MUWAI#issuecomment-534334209">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY5JQP6T2OPSYQDV4TQLFL6JANCNFSM4IZVY72A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZHZV3LX5XDY4E4EITQLFL6JA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MUWAI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3062?email_source=notifications\u0026email_token=AFTOJK6PBP5OGGHUKOQMYYTQLFL6JA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MUWAI#issuecomment-534334209",
"url": "https://github.com/quicwg/base-drafts/issues/3062?email_source=notifications\u0026email_token=AFTOJK6PBP5OGGHUKOQMYYTQLFL6JA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MUWAI#issuecomment-534334209",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8960649aefa_66ef3ff5a00cd96c1615b--


From nobody Mon Sep 23 17: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 6CDA3120074 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:20: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 IvrTPYdGU_QZ for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:20: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 1DCF0120045 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 17:20:29 -0700 (PDT)
Date: Mon, 23 Sep 2019 17:20:28 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569284428; bh=BgZSI4Zh8JElAjdDZIvtgAzeYkrhIKRAFkkk94vvlHc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GrtjeEFeLhd2yL/AyHdDs0ORyCyoCdkwsJqoyuKqve6wLHkEnUn2xcskySRRcia+N sy7HNN3SZ4Kso+DzQ2HPMI0vnEisVgLc+MYFYo4pAqEQ+UGfgOJuuYPLmk2nz87bgP 9zPjvmGRkUnWTfG8ycVe8IUWRBNKVAGkvkij1c3c=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3ZWS63A552NYXXWAF3S2Q5ZEVBNHHB3JLRAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3061/534334981@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3061@github.com>
References: <quicwg/base-drafts/issues/3061@github.com>
Subject: Re: [quicwg/base-drafts] Unclear what to do when QUIC Version Hints are missing (#3061)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d89614c49967_3bae3fe9fc2cd960145124"; 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/IRBUKG4khzS2BrjNIx1duMJed34>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 00:20:31 -0000

----==_mimepart_5d89614c49967_3bae3fe9fc2cd960145124
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I happy to be proven wrong but it seems like noone uses this parameter and it raises all sorts of questions. I'm leaning towards killing it 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/issues/3061#issuecomment-534334981
----==_mimepart_5d89614c49967_3bae3fe9fc2cd960145124
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I happy to be proven wrong but it seems like noone uses this parameter and it raises all sorts of questions. I'm leaning towards killing it 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/issues/3061?email_source=notifications&amp;email_token=AFTOJK3K3JB5XKMSQKDB6ZDQLFMMZA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MU4BI#issuecomment-534334981">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2MQ5GHJM4SPYWXXITQLFMMZANCNFSM4IZVWQRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK73AGHS26NFKIUE7KDQLFMMZA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MU4BI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications\u0026email_token=AFTOJK3K3JB5XKMSQKDB6ZDQLFMMZA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MU4BI#issuecomment-534334981",
"url": "https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications\u0026email_token=AFTOJK3K3JB5XKMSQKDB6ZDQLFMMZA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MU4BI#issuecomment-534334981",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d89614c49967_3bae3fe9fc2cd960145124--


From nobody Mon Sep 23 17: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 BF5B6120099 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:23:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.28
X-Spam-Level: 
X-Spam-Status: No, score=-6.28 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, 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 BfaTQj3UENtP for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:23:47 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0F636120045 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 17:23:47 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 65779C60616 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 17:23:46 -0700 (PDT)
Date: Mon, 23 Sep 2019 17:23:46 -0700
From: Peter Wu <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6ZRQKI362C2HLJXTF3S2RKFEVBNHHB3JLRAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3061/534335642@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3061@github.com>
References: <quicwg/base-drafts/issues/3061@github.com>
Subject: Re: [quicwg/base-drafts] Unclear what to do when QUIC Version Hints are missing (#3061)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d896212569e7_2813ff3c72cd968113219"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: Lekensteyn
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tp4DF550kJHZ5XPf8zR2q8eLyRI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 00:23:49 -0000

----==_mimepart_5d896212569e7_2813ff3c72cd968113219
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The Version Hints presumably exist to avoid one roundtrip for the [Version Negotiation packet](https://tools.ietf.org/html/draft-ietf-quic-transport-23#section-17.2.1). Thus without hints, a client could probably decide to use any version it supports (1 or whatever latest version it desires to use).

FWIW Google uses alt-svc, but I do not remember seeing the version hint *parameters*. For example:
```
$ curl -sI https://google.com | grep alt-svc
alt-svc: quic=":443"; ma=2592000; v="46,43,39"
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3061#issuecomment-534335642
----==_mimepart_5d896212569e7_2813ff3c72cd968113219
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The Version Hints presumably exist to avoid one roundtrip for the <a href="https://tools.ietf.org/html/draft-ietf-quic-transport-23#section-17.2.1" rel="nofollow">Version Negotiation packet</a>. Thus without hints, a client could probably decide to use any version it supports (1 or whatever latest version it desires to use).</p>
<p>FWIW Google uses alt-svc, but I do not remember seeing the version hint <em>parameters</em>. For example:</p>
<pre><code>$ curl -sI https://google.com | grep alt-svc
alt-svc: quic=":443"; ma=2592000; v="46,43,39"
</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/3061?email_source=notifications&amp;email_token=AFTOJKYUZRAWYOIHZEJGIE3QLFMZFA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVBGQ#issuecomment-534335642">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2P4SAS7QDNE6YKVMLQLFMZFANCNFSM4IZVWQRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5A6XZ6R2XVSBKO5OLQLFMZFA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVBGQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications\u0026email_token=AFTOJKYUZRAWYOIHZEJGIE3QLFMZFA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVBGQ#issuecomment-534335642",
"url": "https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications\u0026email_token=AFTOJKYUZRAWYOIHZEJGIE3QLFMZFA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVBGQ#issuecomment-534335642",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d896212569e7_2813ff3c72cd968113219--


From nobody Mon Sep 23 17:25: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 D0DC61200F9 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:25:25 -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 5dMg6cHQKvhB for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:25: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 A9A4F1200FF for <quic-issues@ietf.org>; Mon, 23 Sep 2019 17:25:23 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 1092B660BBA for <quic-issues@ietf.org>; Mon, 23 Sep 2019 17:25:23 -0700 (PDT)
Date: Mon, 23 Sep 2019 17:25:23 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2TTDHU2RDEHH7D4T53S2RQFEVBNHHB3JLRAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3061/534335966@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3061@github.com>
References: <quicwg/base-drafts/issues/3061@github.com>
Subject: Re: [quicwg/base-drafts] Unclear what to do when QUIC Version Hints are missing (#3061)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d896273150b_4bc23fddb8ccd96071784"; 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/uZKGVernJZ1k-Edm4ihZ2TPfdSY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 00:25:26 -0000

----==_mimepart_5d896273150b_4bc23fddb8ccd96071784
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

in this case the "v" parameter is comparable to the "quic" 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/3061#issuecomment-534335966
----==_mimepart_5d896273150b_4bc23fddb8ccd96071784
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>in this case the "v" parameter is comparable to the "quic" 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/3061?email_source=notifications&amp;email_token=AFTOJKZWA57UHNN446XYUT3QLFM7HA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVDXQ#issuecomment-534335966">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6ZZA4GOY5KM54DIO3QLFM7HANCNFSM4IZVWQRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK42OIBPNT4F3OHFN73QLFM7HA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVDXQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications\u0026email_token=AFTOJKZWA57UHNN446XYUT3QLFM7HA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVDXQ#issuecomment-534335966",
"url": "https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications\u0026email_token=AFTOJKZWA57UHNN446XYUT3QLFM7HA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVDXQ#issuecomment-534335966",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d896273150b_4bc23fddb8ccd96071784--


From nobody Mon Sep 23 17:27: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 5F6FC120089 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:27: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 AKrpXF6G4yCH for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:27: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 19BDE120045 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 17:27:53 -0700 (PDT)
Date: Mon, 23 Sep 2019 17:27:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569284872; bh=BuBv+F36icK+EKSNHkLEGS1d6Cju6YwALeGufCk8GMg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tAUSx/le74S2o/CJ66sjrNBx3OM22EmZUss8wkFx+0V4SpeEGxR1tXmoPw3NSZAeI KUiToPDalfExZUa0aq7Pm11RuMGG3/EvYjXK3fJpy7M4cRsb9cyh4wARRGmaSox7YW Pl2u3iHeqEQp0FrO73ISN9vvXfsF9oPq1tvzHDsA=
From: Peter Wu <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK72RE3UB54TU72OV7F3S2RZREVBNHHB3JLRAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3061/534336449@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3061@github.com>
References: <quicwg/base-drafts/issues/3061@github.com>
Subject: Re: [quicwg/base-drafts] Unclear what to do when QUIC Version Hints are missing (#3061)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8963082bf52_32cf3fc559ccd96412957b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: Lekensteyn
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/T0GzwG_Geenoaq9ceaiHo1AcZkA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 00:27:54 -0000

----==_mimepart_5d8963082bf52_32cf3fc559ccd96412957b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Right, but that `v` is a parameter on its own whereas `quic` is a parameter value in the current -http draft.

Removing the `quic` parameter was previously suggested in #297, but that did not seem to proceed.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3061#issuecomment-534336449
----==_mimepart_5d8963082bf52_32cf3fc559ccd96412957b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Right, but that <code>v</code> is a parameter on its own whereas <code>quic</code> is a parameter value in the current -http draft.</p>
<p>Removing the <code>quic</code> parameter was previously suggested in <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="207384582" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/297" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/297/hovercard" href="https://github.com/quicwg/base-drafts/issues/297">#297</a>, but that did not seem to proceed.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications&amp;email_token=AFTOJKZSPW3VMMABK25SR33QLFNIRA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVHQI#issuecomment-534336449">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZO73EF5VKNJYSTYELQLFNIRANCNFSM4IZVWQRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYDPYG5LXZIKOFPTVTQLFNIRA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVHQI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications\u0026email_token=AFTOJKZSPW3VMMABK25SR33QLFNIRA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVHQI#issuecomment-534336449",
"url": "https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications\u0026email_token=AFTOJKZSPW3VMMABK25SR33QLFNIRA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVHQI#issuecomment-534336449",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8963082bf52_32cf3fc559ccd96412957b--


From nobody Mon Sep 23 17:30: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 14AD8120099 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:30: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 qTC5ts--ZBqM for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:30: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 66D85120045 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 17:30:37 -0700 (PDT)
Date: Mon, 23 Sep 2019 17:30:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569285036; bh=kMHeP4zArJ3EOUMUFjKjmo9Wj0E36kCveKBVsx+jnzQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qv2b5S5MDPL/0XCmPIfZUlnRLO9jutsr5uDSttkdCupHS5zC7kUCgJcepZlf/Hq9T b4MHlD5ypqJUTkDNfnlC5j5HjaLRphFGOMwGf3R3A/o3otRjzBBeiWE54xt+rELoRm 2rLP9Gj9Co7MwD5OjlqRDiJAKGYBp8v+n4KJqXdY=
From: Peter Wu <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3059/push/4068002579@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3059@github.com>
References: <quicwg/base-drafts/pull/3059@github.com>
Subject: Re: [quicwg/base-drafts] http: syntax fixes for quic Alt-Svc parameter (#3059)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8963ac7c9c4_32d33fc559ccd96415858a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: Lekensteyn
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-xD9WVrHxJI1VpTM9DWZ8fXSdwQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 00:30:39 -0000

----==_mimepart_5d8963ac7c9c4_32d33fc559ccd96415858a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@Lekensteyn pushed 1 commit.

fafd8726104bf1b6a4083b990b3525b92e0b7ecf  http: syntax fixes for quic Alt-Svc parameter


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3059/files/efd2db09c4cf1c943d006ab1c42148142fdd798b..fafd8726104bf1b6a4083b990b3525b92e0b7ecf

----==_mimepart_5d8963ac7c9c4_32d33fc559ccd96415858a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/Lekensteyn" class="user-mention">@Lekensteyn</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/fafd8726104bf1b6a4083b990b3525b92e0b7ecf">fafd872</a>  http: syntax fixes for quic Alt-Svc parameter</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3059/files/efd2db09c4cf1c943d006ab1c42148142fdd798b..fafd8726104bf1b6a4083b990b3525b92e0b7ecf?email_source=notifications&amp;email_token=AFTOJK6QG5BTGJ7UTFMJBXTQLFNSZA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDANJQG44TSOKQOVZWQIZUGA3DQMBQGI2TOOI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYN54H7FFYLY6Q6RU3QLFNSZANCNFSM4IZUFMQQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2QQUVVFAV433TYSX3QLFNSZA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDANJQG44TSOKQOVZWQIZUGA3DQMBQGI2TOOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3059/files/efd2db09c4cf1c943d006ab1c42148142fdd798b..fafd8726104bf1b6a4083b990b3525b92e0b7ecf?email_source=notifications\u0026email_token=AFTOJK6QG5BTGJ7UTFMJBXTQLFNSZA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDANJQG44TSOKQOVZWQIZUGA3DQMBQGI2TOOI",
"url": "https://github.com/quicwg/base-drafts/pull/3059/files/efd2db09c4cf1c943d006ab1c42148142fdd798b..fafd8726104bf1b6a4083b990b3525b92e0b7ecf?email_source=notifications\u0026email_token=AFTOJK6QG5BTGJ7UTFMJBXTQLFNSZA5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDANJQG44TSOKQOVZWQIZUGA3DQMBQGI2TOOI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8963ac7c9c4_32d33fc559ccd96415858a--


From nobody Mon Sep 23 17:32: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 A6BE5120099 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:31: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 DW1LGAHWqIRt for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:31:58 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 071C4120045 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 17:31:58 -0700 (PDT)
Date: Mon, 23 Sep 2019 17:31:57 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569285117; bh=bWj64o90lNPB7ztWEeA6r66VeclM7Om9h6dTMYiqB5A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jF7fL+szXTRibAHLqUKK1jZDUkHlpn0ldHEpAhE5RscJlhYBxZEGevWAcINToXCCY 7z50pRcV9XqFL/bnGvdIxJ6FHzYw1LkdpDvCNNbuzLSy46siUep5c60tzTJz8eKUvs 0N7AUhlgp68jCCYdo+GL12ujiMt5zscfNa6ySf5k=
From: Peter Wu <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK33RYWS6C5YPLBDI7V3S2SI3EVBNHHB3JI7X4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3059/c534337242@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3059@github.com>
References: <quicwg/base-drafts/pull/3059@github.com>
Subject: Re: [quicwg/base-drafts] http: syntax fixes for quic Alt-Svc parameter (#3059)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8963fd26c6d_1c6f3f86180cd964249957"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: Lekensteyn
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dBClfTdluYYw_PUlhz64_gYho9g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 00:32:00 -0000

----==_mimepart_5d8963fd26c6d_1c6f3f86180cd964249957
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I removed the single quote change, this should be a purely editorial fix now. I'll create a new issue for the unquoted parameter value.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3059#issuecomment-534337242
----==_mimepart_5d8963fd26c6d_1c6f3f86180cd964249957
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I removed the single quote change, this should be a purely editorial fix now. I'll create a new issue for the unquoted parameter value.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3059?email_source=notifications&amp;email_token=AFTOJK4AW6ZSGJGIHNY74OLQLFNX3A5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVNWQ#issuecomment-534337242">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5DUQW5TJBZULJ4TM3QLFNX3ANCNFSM4IZUFMQQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2ENKFL4DZXV4PNUZ3QLFNX3A5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVNWQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3059?email_source=notifications\u0026email_token=AFTOJK4AW6ZSGJGIHNY74OLQLFNX3A5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVNWQ#issuecomment-534337242",
"url": "https://github.com/quicwg/base-drafts/pull/3059?email_source=notifications\u0026email_token=AFTOJK4AW6ZSGJGIHNY74OLQLFNX3A5CNFSM4IZUFMQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVNWQ#issuecomment-534337242",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8963fd26c6d_1c6f3f86180cd964249957--


From nobody Mon Sep 23 17:37: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 8E38C12009C for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:37:37 -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 GCrWn5R964QX for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:37: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 AE659120045 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 17:37:35 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 0247966098D for <quic-issues@ietf.org>; Mon, 23 Sep 2019 17:37:35 -0700 (PDT)
Date: Mon, 23 Sep 2019 17:37:34 -0700
From: Ryan Hamilton <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK57MQ37JLRIA7UNLY53S2S55EVBNHHB3JLRAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3061/534338299@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3061@github.com>
References: <quicwg/base-drafts/issues/3061@github.com>
Subject: Re: [quicwg/base-drafts] Unclear what to do when QUIC Version Hints are missing (#3061)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d89654ee7a05_59833faf0d2cd96c1444d6"; 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/A5bBDPtuiHcpRl8Jn33lNszgIcE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 00:37:38 -0000

----==_mimepart_5d89654ee7a05_59833faf0d2cd96c1444d6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@LPardue I also lean towards killing it off. However, that would prevent us from doing something like:

h3=":443", quic="1,2"

At some future date when we have QUICv1 and QUICv2 and we want to support HTTP/3 over either of them. Does that seem problematic?

Of course, if the alpn continues to imply the transport version and HTTP+QUICv2 == HTTP/4 then we wouldn't ever need to advertise 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/3061#issuecomment-534338299
----==_mimepart_5d89654ee7a05_59833faf0d2cd96c1444d6
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> I also lean towards killing it off. However, that would prevent us from doing something like:</p>
<p>h3=":443", quic="1,2"</p>
<p>At some future date when we have QUICv1 and QUICv2 and we want to support HTTP/3 over either of them. Does that seem problematic?</p>
<p>Of course, if the alpn continues to imply the transport version and HTTP+QUICv2 == HTTP/4 then we wouldn't ever need to advertise 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/3061?email_source=notifications&amp;email_token=AFTOJKZR3P56GCYGHFOYMELQLFOM5A5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVV6Y#issuecomment-534338299">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5Q3BTL5LEFKTG5W3LQLFOM5ANCNFSM4IZVWQRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3OXROBK32FUWSBRLLQLFOM5A5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVV6Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications\u0026email_token=AFTOJKZR3P56GCYGHFOYMELQLFOM5A5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVV6Y#issuecomment-534338299",
"url": "https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications\u0026email_token=AFTOJKZR3P56GCYGHFOYMELQLFOM5A5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MVV6Y#issuecomment-534338299",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d89654ee7a05_59833faf0d2cd96c1444d6--


From nobody Mon Sep 23 17:45: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 64DE612006A for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:45: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, 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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2A25NYQlIfZQ for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:45: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 D9440120045 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 17:45:29 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 2AC498C0769 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 17:45:29 -0700 (PDT)
Date: Mon, 23 Sep 2019 17:45:29 -0700
From: Peter Wu <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY5BDFXIEPPJH6HC553S2T3TEVBNHHB3JNFTE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3063@github.com>
Subject: [quicwg/base-drafts] http: Allow unquoted tokens in Alt-Svc quic parameter (#3063)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8967291a890_1ce13fa3e10cd9646776d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: Lekensteyn
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gtF_r2HQMhht9K4Iu7ceY8QBwUo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 00:45:33 -0000

----==_mimepart_5d8967291a890_1ce13fa3e10cd9646776d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

According to https://tools.ietf.org/html/rfc7838#section-3, the Alt-Svc parameter value can be unquoted:
```
    parameter = token "=" ( token / quoted-string )
```

This means that this can be written:
```
alt-svc: h3=":443";quic=1
```
instead of only:
```
alt-svc: h3=":443";quic="1"
```

The current text in https://tools.ietf.org/html/draft-ietf-quic-http-23#section-3.2.1 forbids the unquoted variant which is an additional constraint on the RFC 7838 grammar. Should unquoted `quic` parameter values also be permitted?

Note that this does not change the situation when multiple versions are supported since an unquoted "token" type is not allowed to contain commas.

See also the discussion in #3059.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3063
----==_mimepart_5d8967291a890_1ce13fa3e10cd9646776d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>According to <a href="https://tools.ietf.org/html/rfc7838#section-3" rel="nofollow">https://tools.ietf.org/html/rfc7838#section-3</a>, the Alt-Svc parameter value can be unquoted:</p>
<pre><code>    parameter = token "=" ( token / quoted-string )
</code></pre>
<p>This means that this can be written:</p>
<pre><code>alt-svc: h3=":443";quic=1
</code></pre>
<p>instead of only:</p>
<pre><code>alt-svc: h3=":443";quic="1"
</code></pre>
<p>The current text in <a href="https://tools.ietf.org/html/draft-ietf-quic-http-23#section-3.2.1" rel="nofollow">https://tools.ietf.org/html/draft-ietf-quic-http-23#section-3.2.1</a> forbids the unquoted variant which is an additional constraint on the RFC 7838 grammar. Should unquoted <code>quic</code> parameter values also be permitted?</p>
<p>Note that this does not change the situation when multiple versions are supported since an unquoted "token" type is not allowed to contain commas.</p>
<p>See also the discussion in <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="497360831" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3059" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3059/hovercard" href="https://github.com/quicwg/base-drafts/pull/3059">#3059</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/3063?email_source=notifications&amp;email_token=AFTOJK3MNZYP74QSS32KP7TQLFPKTA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFUWMQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4ACUQU5OIGVJAAF2TQLFPKTANCNFSM4IZWYYMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY5OKGHDCLOE5SOA7LQLFPKTA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFUWMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications\u0026email_token=AFTOJK3MNZYP74QSS32KP7TQLFPKTA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFUWMQ",
"url": "https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications\u0026email_token=AFTOJK3MNZYP74QSS32KP7TQLFPKTA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNFUWMQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8967291a890_1ce13fa3e10cd9646776d--


From nobody Mon Sep 23 17:51: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 D3FC212006A for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:51: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 FuEob3t1cDbN for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 17:51: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 17845120045 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 17:51:35 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 579DD8C0C31 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 17:51:34 -0700 (PDT)
Date: Mon, 23 Sep 2019 17:51:34 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3J6EYBFKHCZ7IVOQN3S2USNEVBNHHB3JLRAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3061/534340875@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3061@github.com>
References: <quicwg/base-drafts/issues/3061@github.com>
Subject: Re: [quicwg/base-drafts] Unclear what to do when QUIC Version Hints are missing (#3061)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d89689648679_737a3fb2094cd95c1000d2"; 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/l8Dm_e-wBS-CtBAYXOKCgKIs1AE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 00:51:37 -0000

----==_mimepart_5d89689648679_737a3fb2094cd95c1000d2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

That's a compelling argument, I'm just concerned that we aren't seeing this used much today and so when the time comes that you'll need it, it won't work as we all hoped. Perhaps we could _defer_ the quic parameter until v2 - similar to other VN related issues.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3061#issuecomment-534340875
----==_mimepart_5d89689648679_737a3fb2094cd95c1000d2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>That's a compelling argument, I'm just concerned that we aren't seeing this used much today and so when the time comes that you'll need it, it won't work as we all hoped. Perhaps we could <em>defer</em> the quic parameter until v2 - similar to other VN related issues.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications&amp;email_token=AFTOJK2EF2POQ2KSXZBNV33QLFQBNA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MWKCY#issuecomment-534340875">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2ZF6IKFUINDELM4C3QLFQBNANCNFSM4IZVWQRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3X3F3XNW3BXEHAHTDQLFQBNA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MWKCY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications\u0026email_token=AFTOJK2EF2POQ2KSXZBNV33QLFQBNA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MWKCY#issuecomment-534340875",
"url": "https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications\u0026email_token=AFTOJK2EF2POQ2KSXZBNV33QLFQBNA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MWKCY#issuecomment-534340875",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d89689648679_737a3fb2094cd95c1000d2--


From nobody Mon Sep 23 18:05: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 BB0B71200BA for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18: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 fov9QTJVAf_B for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:05:47 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E041612006A for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:05:46 -0700 (PDT)
Date: Mon, 23 Sep 2019 18:05:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569287146; bh=bBQp75dEgX1m/SR+CPHpdLmbjimB5R46TXTHNwu3WE0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MzZiJDic/9THg3jR26c7PuNSnWKSxuy5KQSUdIWDVYShHmlcS/P9LFGDLm2xbFy2Y azWT42DMiEI4dZ0d5GJSpTgcxBjgdK6mAm6UrcmzTWWItmSDi19gUr91CrFPwzXo2/ HmQ3aCXn6EtJ6N0MFQ234+bDCKNUvQ8PCRLEUxy4=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2SCKT33KL4ANNQO5F3S2WHTEVBNHHB3GNALI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3056/534343222@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3056@github.com>
References: <quicwg/base-drafts/issues/3056@github.com>
Subject: Re: [quicwg/base-drafts] Lost client Initial is never retransmitted (#3056)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d896be9eed0c_5d1b3f9eb42cd96c123922"; 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/Je2WaPJGL8vUEjuzPEKJeAWe0A0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 01:05:49 -0000

----==_mimepart_5d896be9eed0c_5d1b3f9eb42cd96c123922
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm marking this design because it adds some normative language, though I'll note that it doesn't change what I originally intended the text to say.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3056#issuecomment-534343222
----==_mimepart_5d896be9eed0c_5d1b3f9eb42cd96c123922
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'm marking this design because it adds some normative language, though I'll note that it doesn't change what I originally intended the text to say.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications&amp;email_token=AFTOJK2UXDEVPD4MDYVZPA3QLFRWTA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MW4NQ#issuecomment-534343222">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4VBPS2WLPIAZ5735DQLFRWTANCNFSM4IY4XW2A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYKOQCOKSGLENR2AHDQLFRWTA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MW4NQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications\u0026email_token=AFTOJK2UXDEVPD4MDYVZPA3QLFRWTA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MW4NQ#issuecomment-534343222",
"url": "https://github.com/quicwg/base-drafts/issues/3056?email_source=notifications\u0026email_token=AFTOJK2UXDEVPD4MDYVZPA3QLFRWTA5CNFSM4IY4XW2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MW4NQ#issuecomment-534343222",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d896be9eed0c_5d1b3f9eb42cd96c123922--


From nobody Mon Sep 23 18:09: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 1DC4E12009C for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:09:53 -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 kvffHubq1gdF for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:09: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 92B4612006A for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:09:51 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id ADC5C660454 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:09:50 -0700 (PDT)
Date: Mon, 23 Sep 2019 18:09:50 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK23AMULMDKVBIHHQIF3S2PV5EVBNHHB3JLRAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3061/534343760@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3061@github.com>
References: <quicwg/base-drafts/issues/3061@github.com>
Subject: Re: [quicwg/base-drafts] Unclear what to do when QUIC Version Hints are missing (#3061)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d896cde9dd71_57d03f9f042cd96c10451"; 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/Xan4MP3hD67ZW0BdmzfqF6W3SSM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 01:09:53 -0000

----==_mimepart_5d896cde9dd71_57d03f9f042cd96c10451
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> Perhaps we could _defer_ the quic parameter until v2 - similar to other VN related issues.

I think the question is if we expect changes in the application protocol (i.e. HTTP/3) when we define QUIC v2.

If we suspect that H3 would remain as-is for QUIC v2 (I'd assume that would be the case if v2 is going to be greasing or multi-path), then it would be reasonable to define the transport version identifier of the Alt-Svc header in H3.

If we are uncertain, I do agree that it might be a good idea to defer 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/3061#issuecomment-534343760
----==_mimepart_5d896cde9dd71_57d03f9f042cd96c10451
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>Perhaps we could <em>defer</em> the quic parameter until v2 - similar to other VN related issues.</p>
</blockquote>
<p>I think the question is if we expect changes in the application protocol (i.e. HTTP/3) when we define QUIC v2.</p>
<p>If we suspect that H3 would remain as-is for QUIC v2 (I'd assume that would be the case if v2 is going to be greasing or multi-path), then it would be reasonable to define the transport version identifier of the Alt-Svc header in H3.</p>
<p>If we are uncertain, I do agree that it might be a good idea to defer 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/3061?email_source=notifications&amp;email_token=AFTOJK3CNYAJEGJAHRP4UD3QLFSF5A5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MXAUA#issuecomment-534343760">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK77PQ4WCY2ZRTUN4GTQLFSF5ANCNFSM4IZVWQRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7DUAUJHLWKDPLHHZDQLFSF5A5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MXAUA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications\u0026email_token=AFTOJK3CNYAJEGJAHRP4UD3QLFSF5A5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MXAUA#issuecomment-534343760",
"url": "https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications\u0026email_token=AFTOJK3CNYAJEGJAHRP4UD3QLFSF5A5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MXAUA#issuecomment-534343760",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d896cde9dd71_57d03f9f042cd96c10451--


From nobody Mon Sep 23 18:15: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 862DD12009C for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:15:51 -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 7WK2Bw0Vy-sN for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:15:49 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BC015120045 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:15:49 -0700 (PDT)
Date: Mon, 23 Sep 2019 18:15:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569287748; bh=HznDCi8wm5QscnnsgjkkhV3G2jNkDTtjTo2LWNgH2N0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oQ+E/fK4nk//1ZZhRx14xxeHl0vTP+qGtZi20aIuQ8RqKnSIiDuHzXTrhXqokSNyJ 0XA7A34gv0dWX3C2rVR8++8ykdeE2NVtVylV9xw19cSt4PMX2EkHuEHSM1dyZ+KSMs sJr8rgR7KTY8XCY4XS5YPQac7v/Ll2oPuzGbmUO0=
From: Tatsuhiro Tsujikawa <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4TKCVUAEQ65DIHSQ53S2QMJEVBNHHB3IPO4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057/review/292130362@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d896e44daba8_f5b3ffc512cd96c14185"; 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/rgGJy5BKgEOTFq2hdjzIYT2BTd4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 01:15:52 -0000

----==_mimepart_5d896e44daba8_f5b3ffc512cd96c14185
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

tatsuhiro-t commented on this pull request.



>  
-When there is no data to send, the sender SHOULD send a PING or other
-ack-eliciting frame in a single packet, re-arming the PTO timer.
+It is possible the sender has no new or previously-sent data to send.
+As an example, consider the following sequence of events: new application data
+is sent in a STREAM frame, deemed lost, then retransmitted in a new packet,
+and then the original transmission is acknowledged.  When there is no data to
+send, the sender SHOULD send a PING or other ack-eliciting frame in a single
+packet, re-arming the PTO timer.

I think this kind of situation only happens when client sent Initial and received its ACK but either sever Initial or Handshake was lost.  Client then literally has nothing to send.  And forced to send ack-eliciting frame (and controversially, draft-23 does not allow PING 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/3057#discussion_r327391007
----==_mimepart_5d896e44daba8_f5b3ffc512cd96c14185
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@tatsuhiro-t</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3057#discussion_r327391007">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;  
-When there is no data to send, the sender SHOULD send a PING or other
-ack-eliciting frame in a single packet, re-arming the PTO timer.
+It is possible the sender has no new or previously-sent data to send.
+As an example, consider the following sequence of events: new application data
+is sent in a STREAM frame, deemed lost, then retransmitted in a new packet,
+and then the original transmission is acknowledged.  When there is no data to
+send, the sender SHOULD send a PING or other ack-eliciting frame in a single
+packet, re-arming the PTO timer.
</pre>
<p>I think this kind of situation only happens when client sent Initial and received its ACK but either sever Initial or Handshake was lost.  Client then literally has nothing to send.  And forced to send ack-eliciting frame (and controversially, draft-23 does not allow PING 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/3057?email_source=notifications&amp;email_token=AFTOJKYUDPWBZXCJHTOOECDQLFS4JA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUY4OQ#discussion_r327391007">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7XRYQOWP4TTWUHKRTQLFS4JANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK33LMFJ4VXI53DPVWDQLFS4JA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUY4OQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJKYUDPWBZXCJHTOOECDQLFS4JA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUY4OQ#discussion_r327391007",
"url": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJKYUDPWBZXCJHTOOECDQLFS4JA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUY4OQ#discussion_r327391007",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d896e44daba8_f5b3ffc512cd96c14185--


From nobody Mon Sep 23 18: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 D279812009C for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:18:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 Iq6g5LuwRHJy for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:18: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 D414F120045 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:18:01 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 0F95C8C04D8 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:18:01 -0700 (PDT)
Date: Mon, 23 Sep 2019 18:18:00 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK432KON4KQM57ANS7N3S2XVREVBNHHB3IPO4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057/review/292130507@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d896ec8f393e_61a03fd9caecd96499010"; 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/drRd87gEIVGo8qw4lOcYTgwt7LY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 01:18:04 -0000

----==_mimepart_5d896ec8f393e_61a03fd9caecd96499010
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



>  
-When there is no data to send, the sender SHOULD send a PING or other
-ack-eliciting frame in a single packet, re-arming the PTO timer.
+It is possible the sender has no new or previously-sent data to send.
+As an example, consider the following sequence of events: new application data
+is sent in a STREAM frame, deemed lost, then retransmitted in a new packet,
+and then the original transmission is acknowledged.  When there is no data to
+send, the sender SHOULD send a PING or other ack-eliciting frame in a single
+packet, re-arming the PTO timer.

In this example, the point is that in order to remove the retransmission from byte in flight, you SHOULD send a PING and when it's acknowledged, you'll know whether the retransmission was lost or not.  Ideally it'll be ACKed on its own before the PTO fires.

The above text is about the server's amplification factor and not arming the alarm when "If no data can be sent"

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3057#discussion_r327391121
----==_mimepart_5d896ec8f393e_61a03fd9caecd96499010
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/3057#discussion_r327391121">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;  
-When there is no data to send, the sender SHOULD send a PING or other
-ack-eliciting frame in a single packet, re-arming the PTO timer.
+It is possible the sender has no new or previously-sent data to send.
+As an example, consider the following sequence of events: new application data
+is sent in a STREAM frame, deemed lost, then retransmitted in a new packet,
+and then the original transmission is acknowledged.  When there is no data to
+send, the sender SHOULD send a PING or other ack-eliciting frame in a single
+packet, re-arming the PTO timer.
</pre>
<p>In this example, the point is that in order to remove the retransmission from byte in flight, you SHOULD send a PING and when it's acknowledged, you'll know whether the retransmission was lost or not.  Ideally it'll be ACKed on its own before the PTO fires.</p>
<p>The above text is about the server's amplification factor and not arming the alarm when "If no data can be 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/3057?email_source=notifications&amp;email_token=AFTOJK5LYNSCIJUC5IOA6MTQLFTERA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUY5SY#discussion_r327391121">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY4WO2XWVHGLRATUZ3QLFTERANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2TI77ISD3I37BUVU3QLFTERA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUY5SY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK5LYNSCIJUC5IOA6MTQLFTERA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUY5SY#discussion_r327391121",
"url": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK5LYNSCIJUC5IOA6MTQLFTERA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFUY5SY#discussion_r327391121",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d896ec8f393e_61a03fd9caecd96499010--


From nobody Mon Sep 23 18:21: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 1054B120045 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:21: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 Dkiv7qIwjpkd for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:21: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 5CEB0120024 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:21:01 -0700 (PDT)
Date: Mon, 23 Sep 2019 18:21:00 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569288060; bh=lCU3y1QNq24K2LYYnLHVUFnJ51yDAFl8poWM2Ol0PPc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oNYxZ8vzxKcUBdILZIjUcuCex1w3/JCBhQwdwSXBrqT5u5BOZhJt37ELQfhoIRK15 bMuqDmwuvnPqLhGhBCEAOih16DJUDseT7iWgaWirBOgoACKFmXD0HwNSkd5kZaidJS mkCbN6QeHzz4JQAjGfDRzCDXJtdG4c+fUfxRf3wQ=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3UBENIBVB6P2BNAN53S2YAZEVBNHHB3JLU5Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3062/534346698@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3062@github.com>
References: <quicwg/base-drafts/issues/3062@github.com>
Subject: Re: [quicwg/base-drafts] Disconnect version number from draft number (#3062)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d896f7c583f9_201d3faf04ecd9641203d6"; 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/bl0cMrvs297Z-UikyuGjxbu4dWg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 01:21:03 -0000

----==_mimepart_5d896f7c583f9_201d3faf04ecd9641203d6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The idea would be to update the protocol version in a new draft if any breaking change was made, but not when only editorial changes were made.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3062#issuecomment-534346698
----==_mimepart_5d896f7c583f9_201d3faf04ecd9641203d6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The idea would be to update the protocol version in a new draft if any breaking change was made, but not when only editorial changes were made.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3062?email_source=notifications&amp;email_token=AFTOJK6D5WP64WD2WZWY26LQLFTPZA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MXXSQ#issuecomment-534346698">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3FNWOGYG2TR5PGQKTQLFTPZANCNFSM4IZVY72A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZUD7HGYBPIGXRBRRDQLFTPZA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MXXSQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3062?email_source=notifications\u0026email_token=AFTOJK6D5WP64WD2WZWY26LQLFTPZA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MXXSQ#issuecomment-534346698",
"url": "https://github.com/quicwg/base-drafts/issues/3062?email_source=notifications\u0026email_token=AFTOJK6D5WP64WD2WZWY26LQLFTPZA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MXXSQ#issuecomment-534346698",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d896f7c583f9_201d3faf04ecd9641203d6--


From nobody Mon Sep 23 18:21: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 D01F9120045 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:21: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 pJX5986MTHfX for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:21:10 -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 200FD120024 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:21:10 -0700 (PDT)
Date: Mon, 23 Sep 2019 18:21:09 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569288069; bh=0zgDIiONbH3ogyvQs/s+puEdOtlGOi5559Rxc57As1Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wCNrjx1CHFKIAj/73SacHOQqJcAtAXqjbJR1bX73wVYukHd7UeCBnvbVil0JB5Ffj p2lsgX6fgVbP22sV7FBUHy6R6uRNFRpN0I4tyOYvpFtsFUR05ygOijYjYZIDcNPz3E j/adhUFQGuinK2/IoYnUttjYoMSWo2Ozdyq0xCJk=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4EWZP3YJ2BO2XDJIF3S2RALEVBNHHB3EM4KU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3053/534346725@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3053@github.com>
References: <quicwg/base-drafts/issues/3053@github.com>
Subject: Re: [quicwg/base-drafts] Padding requirement seems to be incorrect. (#3053)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d896f8551df0_6da63f98f04cd95c46817"; 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/nHeE-lriX7GiWdBbYqHQEZUTTJE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 01:21:12 -0000

----==_mimepart_5d896f8551df0_6da63f98f04cd95c46817
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mikkelfj Regardless of 0-RTT, for bandwidth constrained deployments, it makes sense to _always_ send a small packet and let the server validate the path.

That said, the chartered goal of V1 is to reduce the connection establishment latency, and we have explicitly decided to require clients to send full-sized packets until the path is validated. I do not think we should revisit that design. Maybe we can in v2.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3053#issuecomment-534346725
----==_mimepart_5d896f8551df0_6da63f98f04cd95c46817
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> Regardless of 0-RTT, for bandwidth constrained deployments, it makes sense to <em>always</em> send a small packet and let the server validate the path.</p>
<p>That said, the chartered goal of V1 is to reduce the connection establishment latency, and we have explicitly decided to require clients to send full-sized packets until the path is validated. I do not think we should revisit that design. Maybe we can in v2.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications&amp;email_token=AFTOJK3FDKLOXO7KUDM2WV3QLFTQLA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MXXZI#issuecomment-534346725">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3C7VLYTZHVHW3OI53QLFTQLANCNFSM4IYRI3TA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7J24WF7WIAOD5X4DLQLFTQLA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MXXZI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJK3FDKLOXO7KUDM2WV3QLFTQLA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MXXZI#issuecomment-534346725",
"url": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJK3FDKLOXO7KUDM2WV3QLFTQLA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MXXZI#issuecomment-534346725",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d896f8551df0_6da63f98f04cd95c46817--


From nobody Mon Sep 23 18: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 1320A120045 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:22:15 -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 HWHzC0TBBRba for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:22: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 47519120024 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:22:13 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 5FC0C6A091B for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:22:12 -0700 (PDT)
Date: Mon, 23 Sep 2019 18:22:12 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3E5YM2PPJTT53R2J53S2YFJEVBNHHB3JLRAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3061/534346924@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3061@github.com>
References: <quicwg/base-drafts/issues/3061@github.com>
Subject: Re: [quicwg/base-drafts] Unclear what to do when QUIC Version Hints are missing (#3061)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d896fc4511b4_2eda3febba2cd964540b7"; 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/Je0Dw7-viZwHl5TKjQVp8UW5NNI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 01:22:15 -0000

----==_mimepart_5d896fc4511b4_2eda3febba2cd964540b7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

We also have a hard time testing this today - there is no standard legal valid combination of "h3-N" and quic versions that would allow a client to select one QUIC version over another. Perhaps this was a motivator for https://github.com/quicwg/base-drafts/issues/3062?


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3061#issuecomment-534346924
----==_mimepart_5d896fc4511b4_2eda3febba2cd964540b7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>We also have a hard time testing this today - there is no standard legal valid combination of "h3-N" and quic versions that would allow a client to select one QUIC version over another. Perhaps this was a motivator for <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="497382636" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3062" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3062/hovercard" href="https://github.com/quicwg/base-drafts/issues/3062">#3062</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/3061?email_source=notifications&amp;email_token=AFTOJK7SK7UJM3UJJOJ7QADQLFTUJA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MXZLA#issuecomment-534346924">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK52P7ZC7DVQ7N2QME3QLFTUJANCNFSM4IZVWQRQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK63QMSC666HNWOUVPDQLFTUJA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MXZLA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications\u0026email_token=AFTOJK7SK7UJM3UJJOJ7QADQLFTUJA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MXZLA#issuecomment-534346924",
"url": "https://github.com/quicwg/base-drafts/issues/3061?email_source=notifications\u0026email_token=AFTOJK7SK7UJM3UJJOJ7QADQLFTUJA5CNFSM4IZVWQR2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MXZLA#issuecomment-534346924",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d896fc4511b4_2eda3febba2cd964540b7--


From nobody Mon Sep 23 18:23: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 DA907120045 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:23: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 2nhvL6tK44f5 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:23:12 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1BE77120024 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:23:12 -0700 (PDT)
Date: Mon, 23 Sep 2019 18:23:11 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569288191; bh=pguxyLz25wGQPr2O+8kVSzkMuLMYHvaqe19m5LIuHlo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tb78V92B+TyjFbrZThZofUIeXpP0gGFD/6NLGhKs5FkQouZ5jMX/x96ML34GJqNc/ lqaE5HrdiuiWUL1qc+/fecDgGrMpw+sq+iakH93Y2TbtBhDLtD7k59RoverncV06mH +/XcJVG8hm0quCX9F5IAGjzhis0oLujZeZj7WJEs=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZLYUY3V2ABPYTXJUN3S2YI7EVBNHHB3JNFTE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3063/534347111@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3063@github.com>
References: <quicwg/base-drafts/issues/3063@github.com>
Subject: Re: [quicwg/base-drafts] http: Allow unquoted tokens in Alt-Svc quic parameter (#3063)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d896fff6299b_62c73fc33eecd95c113324"; 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/EwR-bMs1rtxbm5QgfLiKTtCV6-c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 01:23:14 -0000

----==_mimepart_5d896fff6299b_62c73fc33eecd95c113324
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

RFC 7838 allows unquoted strings, but there's nothing preventing new specifications of Alt-Svc parameters from being more restrictive. I'm not sure the added flexibility of allowing unquoted versions buys us much here, and it comes at an implementation cost.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3063#issuecomment-534347111
----==_mimepart_5d896fff6299b_62c73fc33eecd95c113324
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>RFC 7838 allows unquoted strings, but there's nothing preventing new specifications of Alt-Svc parameters from being more restrictive. I'm not sure the added flexibility of allowing unquoted versions buys us much here, and it comes at an implementation cost.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications&amp;email_token=AFTOJKYFMLY6LHZZDUSQRB3QLFTX7A5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MX2ZY#issuecomment-534347111">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7JUOVFZXVVF5MYXGTQLFTX7ANCNFSM4IZWYYMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK63WUOC2UI3MWLQSCLQLFTX7A5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MX2ZY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications\u0026email_token=AFTOJKYFMLY6LHZZDUSQRB3QLFTX7A5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MX2ZY#issuecomment-534347111",
"url": "https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications\u0026email_token=AFTOJKYFMLY6LHZZDUSQRB3QLFTX7A5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MX2ZY#issuecomment-534347111",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d896fff6299b_62c73fc33eecd95c113324--


From nobody Mon Sep 23 18:30: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 5ADA412011F for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:30:17 -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, 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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qxXjrPGWQeZF for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:30:15 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 53A371200F4 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:30:15 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 8B91E6E098E for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:30:14 -0700 (PDT)
Date: Mon, 23 Sep 2019 18:30:14 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ2C4ZULN2UJEQETZV3S2ZDNEVBNHHB3JLU5Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3062/534348485@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3062@github.com>
References: <quicwg/base-drafts/issues/3062@github.com>
Subject: Re: [quicwg/base-drafts] Disconnect version number from draft number (#3062)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8971a67c315_51e73f9c118cd95c413bd"; 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/x73OpTk_ZGowqyUb6nIOQ4tHZ6o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 01:30:18 -0000

----==_mimepart_5d8971a67c315_51e73f9c118cd95c413bd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

That makes sense. For HTTP/3 we'd need to rephrase https://tools.ietf.org/html/draft-ietf-quic-http-23#section-3.1 slightly (but that is not a huge problem because the section will be deleted in the final version anyway). In the interest of sanity, I might suggest that the HTTP/3 identifier simply reflects the wireprotocol version, and is explicitly tied to it. For example, if we were to freeze on 0xff000017, then the ALPN becomes `h3-ff000017` (give or take some prettifying). This would sidestep the discussion takign place on #3061 but with the possible cost of duplication.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3062#issuecomment-534348485
----==_mimepart_5d8971a67c315_51e73f9c118cd95c413bd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>That makes sense. For HTTP/3 we'd need to rephrase <a href=3D"https://=
tools.ietf.org/html/draft-ietf-quic-http-23#section-3.1" rel=3D"nofollow"=
>https://tools.ietf.org/html/draft-ietf-quic-http-23#section-3.1</a> slig=
htly (but that is not a huge problem because the section will be deleted =
in the final version anyway). In the interest of sanity, I might suggest =
that the HTTP/3 identifier simply reflects the wireprotocol version, and =
is explicitly tied to it. For example, if we were to freeze on 0xff000017=
, then the ALPN becomes <code>h3-ff000017</code> (give or take some prett=
ifying). This would sidestep the discussion takign place on <a class=3D"i=
ssue-link js-issue-link" data-error-text=3D"Failed to load issue title" d=
ata-id=3D"497381637" data-permission-text=3D"Issue title is private" data=
-url=3D"https://github.com/quicwg/base-drafts/issues/3061" data-hovercard=
-type=3D"issue" data-hovercard-url=3D"/quicwg/base-drafts/issues/3061/hov=
ercard" href=3D"https://github.com/quicwg/base-drafts/issues/3061">#3061<=
/a> but with the possible cost of duplication.</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/3062?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK4BYGPRYBQB7WVX3XDQLFUSNA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MYFRI#issuecomment-534348485">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJKYNEIZYOHPEAH3PW2LQLFUSNANCNFSM4IZVY72A">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJK5NJMQ6H5C5VFUM3ALQ=
LFUSNA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD7MYFRI.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/3062?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK4BYGPRYBQB7WVX3XDQLFUSNA5CNFSM4=
IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MYFR=
I#issuecomment-534348485",
"url": "https://github.com/quicwg/base-drafts/issues/3062?email_source=3D=
notifications\u0026email_token=3DAFTOJK4BYGPRYBQB7WVX3XDQLFUSNA5CNFSM4IZV=
Y72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MYFRI#i=
ssuecomment-534348485",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>=

----==_mimepart_5d8971a67c315_51e73f9c118cd95c413bd--


From nobody Mon Sep 23 18:35: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 7CAEA1200B4 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:35:18 -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 DBY76yh2AgDJ for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:35: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 39E7F120024 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:35:17 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 876992C195B for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:35:16 -0700 (PDT)
Date: Mon, 23 Sep 2019 18:35:16 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6XL3NBYZC4DPR4TGF3S2SVJEVBNHHB3JJ6UI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3060/review/292135046@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3060@github.com>
References: <quicwg/base-drafts/pull/3060@github.com>
Subject: Re: [quicwg/base-drafts] Clarify how servers enable 0-RTT (#3060)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8972d478446_535e3f88958cd96474357"; 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/fFomQ2224sz9lNWCnSqnUChSGYc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 01:35:19 -0000

----==_mimepart_5d8972d478446_535e3f88958cd96474357
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/3060#pullrequestreview-292135046
----==_mimepart_5d8972d478446_535e3f88958cd96474357
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/3060?email_source=notifications&amp;email_token=AFTOJK5MUJCCIF4M7KZOKRDQLFVFJA5CNFSM4IZUXQD2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU2BBQ#pullrequestreview-292135046">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3HJ3RBMQIQND2VPRTQLFVFJANCNFSM4IZUXQDQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4GIV7RKZQSAV4NLU3QLFVFJA5CNFSM4IZUXQD2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU2BBQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3060?email_source=notifications\u0026email_token=AFTOJK5MUJCCIF4M7KZOKRDQLFVFJA5CNFSM4IZUXQD2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU2BBQ#pullrequestreview-292135046",
"url": "https://github.com/quicwg/base-drafts/pull/3060?email_source=notifications\u0026email_token=AFTOJK5MUJCCIF4M7KZOKRDQLFVFJA5CNFSM4IZUXQD2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU2BBQ#pullrequestreview-292135046",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8972d478446_535e3f88958cd96474357--


From nobody Mon Sep 23 18:38: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 9253B1200B4 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:38:21 -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 6iT5dYpQYRXJ for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:38: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 B0A19120024 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:38:19 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id D1A161C1CFB for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:38:18 -0700 (PDT)
Date: Mon, 23 Sep 2019 18:38:18 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-spurious-loss/000000-b6a619@github.com>
Subject: [quicwg/base-drafts] b6a619: Add details on how spurious losses may be detected
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gKZHnxYkxkIt6s_C57ETDL21t2g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 01:38:22 -0000

  Branch: refs/heads/ianswett-spurious-loss
  Home:   https://github.com/quicwg/base-drafts
  Commit: b6a6195ba2850a1734da04d57ca0a3b32898cc24
      https://github.com/quicwg/base-drafts/commit/b6a6195ba2850a1734da04d57ca0a3b32898cc24
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-23 (Mon, 23 Sep 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Add details on how spurious losses may be detected

Fixes #3058



From nobody Mon Sep 23 18: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 725501200B4 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:38:59 -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, 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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uuPAALIMd2CY for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:38: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 BB1AB120024 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:38:57 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id 148FB5211F6 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:38:57 -0700 (PDT)
Date: Mon, 23 Sep 2019 18:38:57 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6OKXDQOEHNHAYJT2V3S22EDEVBNHHB3JOWNA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3064@github.com>
Subject: [quicwg/base-drafts] Add details on how spurious losses may be detected (#3064)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8973b148b2_6bcd3f82ee0cd9648971f"; 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/IxrGTFLaKkS7W-CnvrRpMnIxO_c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 01:39:00 -0000

----==_mimepart_5d8973b148b2_6bcd3f82ee0cd9648971f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Fixes #3058
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3064

-- Commit Summary --

  * Add details on how spurious losses may be detected

-- File Changes --

    M draft-ietf-quic-recovery.md (18)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3064.patch
https://github.com/quicwg/base-drafts/pull/3064.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/3064

----==_mimepart_5d8973b148b2_6bcd3f82ee0cd9648971f
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 #3058.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="497200506" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3058" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3058/hovercard" href="https://github.com/quicwg/base-drafts/issues/3058">#3058</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/3064'>https://github.com/quicwg/base-drafts/pull/3064</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Add details on how spurious losses may be detected</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3064/files#diff-0">draft-ietf-quic-recovery.md</a>
    (18)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3064.patch'>https://github.com/quicwg/base-drafts/pull/3064.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3064.diff'>https://github.com/quicwg/base-drafts/pull/3064.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/3064?email_source=notifications&amp;email_token=AFTOJK3M4LQXX3OMTQIMZJTQLFVTDA5CNFSM4IZXXRO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNF2ZUA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3QDGLPZQ3NOP7KHJDQLFVTDANCNFSM4IZXXROQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3OQ77MGENLINMFBMDQLFVTDA5CNFSM4IZXXRO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNF2ZUA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3064?email_source=notifications\u0026email_token=AFTOJK3M4LQXX3OMTQIMZJTQLFVTDA5CNFSM4IZXXRO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNF2ZUA",
"url": "https://github.com/quicwg/base-drafts/pull/3064?email_source=notifications\u0026email_token=AFTOJK3M4LQXX3OMTQIMZJTQLFVTDA5CNFSM4IZXXRO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNF2ZUA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8973b148b2_6bcd3f82ee0cd9648971f--


From nobody Mon Sep 23 18: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 DD96D1200B4 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:40:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 9VlIybnCwGKa for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 18:40:00 -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 8B17C120024 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:40:00 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id D62662C12C8 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 18:39:59 -0700 (PDT)
Date: Mon, 23 Sep 2019 18:39:59 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/1e8a12-11e708@github.com>
Subject: [quicwg/base-drafts] 11e708: Script updating gh-pages from b6a6195b. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xDHKmfp5UUIaPaYTSJpWKkSDIZ8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 01:40:02 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 11e70899c1bb594df8e9a2cbe552b53784bdf8e9
      https://github.com/quicwg/base-drafts/commit/11e70899c1bb594df8e9a2cbe552b53784bdf8e9
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-24 (Tue, 24 Sep 2019)

  Changed paths:
    A ianswett-spurious-loss/draft-ietf-quic-http.html
    A ianswett-spurious-loss/draft-ietf-quic-http.txt
    A ianswett-spurious-loss/draft-ietf-quic-invariants.html
    A ianswett-spurious-loss/draft-ietf-quic-invariants.txt
    A ianswett-spurious-loss/draft-ietf-quic-qpack.html
    A ianswett-spurious-loss/draft-ietf-quic-qpack.txt
    A ianswett-spurious-loss/draft-ietf-quic-recovery.html
    A ianswett-spurious-loss/draft-ietf-quic-recovery.txt
    A ianswett-spurious-loss/draft-ietf-quic-tls.html
    A ianswett-spurious-loss/draft-ietf-quic-tls.txt
    A ianswett-spurious-loss/draft-ietf-quic-transport.html
    A ianswett-spurious-loss/draft-ietf-quic-transport.txt
    A ianswett-spurious-loss/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from b6a6195b. [ci skip]



From nobody Mon Sep 23 19:06: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 B98671200DF for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:06:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 WSo9bIiLVg0T for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:06:14 -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 BAB821200E0 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:06:14 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id 03FA56E04D1 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:06:14 -0700 (PDT)
Date: Mon, 23 Sep 2019 19:06:13 -0700
From: Benjamin Saunders <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK72BXX5ONQN4M742I53S25KLEVBNHHB3IPO4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057/review/292141439@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d897a15e9ae7_301d3f84502cd9685836a"; 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/4EcEywymDq4lB8dp80PwWWs7-aU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 02:06:17 -0000

----==_mimepart_5d897a15e9ae7_301d3f84502cd9685836a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Ralith commented on this pull request.



> @@ -526,15 +524,16 @@ as a probe, unless there is no data available to send.  An endpoint MAY send up
 to two full-sized datagrams containing ack-eliciting packets, to avoid an
 expensive consecutive PTO expiration due to a single lost datagram.
 
-It is possible that the sender has no new or previously-sent data to send.  As
-an example, consider the following sequence of events: new application data is
-sent in a STREAM frame, deemed lost, then retransmitted in a new packet, and
-then the original transmission is acknowledged.  In the absence of any new
-application data, a PTO timer expiration now would find the sender with no new
-or previously-sent data to send.
+When the PTO timer expires, and there is new or previously sent data, it MUST

Does "previously sent" here mean in-flight/unacknowledged, or literally any historical data?

Does "data" mean ack-eliciting frames specifically?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3057#pullrequestreview-292141439
----==_mimepart_5d897a15e9ae7_301d3f84502cd9685836a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@Ralith</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3057#discussion_r327399608">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -526,15 +524,16 @@ as a probe, unless there is no data available to send.  An endpoint MAY send up
 to two full-sized datagrams containing ack-eliciting packets, to avoid an
 expensive consecutive PTO expiration due to a single lost datagram.
 
-It is possible that the sender has no new or previously-sent data to send.  As
-an example, consider the following sequence of events: new application data is
-sent in a STREAM frame, deemed lost, then retransmitted in a new packet, and
-then the original transmission is acknowledged.  In the absence of any new
-application data, a PTO timer expiration now would find the sender with no new
-or previously-sent data to send.
+When the PTO timer expires, and there is new or previously sent data, it MUST
</pre>
<p>Does "previously sent" here mean in-flight/unacknowledged, or literally any historical data?</p>
<p>Does "data" mean ack-eliciting frames specifically?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications&amp;email_token=AFTOJK52FK3JKEYJD3AKIM3QLFYZLA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU3S7Y#pullrequestreview-292141439">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4XKC2QGOQVF3IZ7XTQLFYZLANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK24ECA6I3F4IVV4GDTQLFYZLA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU3S7Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK52FK3JKEYJD3AKIM3QLFYZLA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU3S7Y#pullrequestreview-292141439",
"url": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK52FK3JKEYJD3AKIM3QLFYZLA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU3S7Y#pullrequestreview-292141439",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d897a15e9ae7_301d3f84502cd9685836a--


From nobody Mon Sep 23 19: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 98C271200DF for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:08:04 -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 h0__45-oBBC5 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:08:03 -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 C5FDF1200D8 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:08:02 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 213EF6E119C for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:08:02 -0700 (PDT)
Date: Mon, 23 Sep 2019 19:08:02 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK32G5RA7QG55FVYZKN3S2WQFEVBNHHB3JLU5Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3062/534356557@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3062@github.com>
References: <quicwg/base-drafts/issues/3062@github.com>
Subject: Re: [quicwg/base-drafts] Disconnect version number from draft number (#3062)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d897a8211dba_6ed63fc08e8cd960200f9"; 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/bMO02i_bl_m7QKIUuBpstZnL3rA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 02:08:05 -0000

----==_mimepart_5d897a8211dba_6ed63fc08e8cd960200f9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@LPardue I'm not sure it sidesteps. Instead, I think it might turn out as a practical way of testing the "quic" attribute of Alt-Svc.

Wire versions of the transport and the application protocol would not change in the same versions. Consider the case where http-24 remains wire-compatible with -23 (hence ALPN=h3-23), while the transport-24 making breaking changes.

In such case, to avoid the use of VN, the server _is_ going to send `Alt-Svc: h3-23=":443"; quic="ff000018"`.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3062#issuecomment-534356557
----==_mimepart_5d897a8211dba_6ed63fc08e8cd960200f9
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> I'm not sure it sidesteps. Instead, I think it might turn out as a practical way of testing the "quic" attribute of Alt-Svc.</p>
<p>Wire versions of the transport and the application protocol would not change in the same versions. Consider the case where http-24 remains wire-compatible with -23 (hence ALPN=h3-23), while the transport-24 making breaking changes.</p>
<p>In such case, to avoid the use of VN, the server <em>is</em> going to send <code>Alt-Svc: h3-23=":443"; quic="ff000018"</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/3062?email_source=notifications&amp;email_token=AFTOJKYAEPF2PDDQ4DUKMILQLFZAFA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M2ETI#issuecomment-534356557">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK22VL4MBPIG3HVLCNTQLFZAFANCNFSM4IZVY72A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2TLEVTHWLNLFTDZM3QLFZAFA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M2ETI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3062?email_source=notifications\u0026email_token=AFTOJKYAEPF2PDDQ4DUKMILQLFZAFA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M2ETI#issuecomment-534356557",
"url": "https://github.com/quicwg/base-drafts/issues/3062?email_source=notifications\u0026email_token=AFTOJKYAEPF2PDDQ4DUKMILQLFZAFA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M2ETI#issuecomment-534356557",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d897a8211dba_6ed63fc08e8cd960200f9--


From nobody Mon Sep 23 19:11: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 04E181200D8 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:11:35 -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 XgalPYJ6xd_y for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:11: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 A1BCA120086 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:11:33 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id DF2808C11CB for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:11:32 -0700 (PDT)
Date: Mon, 23 Sep 2019 19:11:32 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-must-retransmit/409286-df8c4f@github.com>
Subject: [quicwg/base-drafts] df8c4f: unacknowledged 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/iDb2xk0al7m2_MMJmVJ4CGGNyg8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 02:11:35 -0000

  Branch: refs/heads/ianswett-must-retransmit
  Home:   https://github.com/quicwg/base-drafts
  Commit: df8c4feb8412cdc5060f427eb3e64672db56e0db
      https://github.com/quicwg/base-drafts/commit/df8c4feb8412cdc5060f427eb3e64672db56e0db
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-23 (Mon, 23 Sep 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  unacknowledged data



From nobody Mon Sep 23 19:11: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 E09C51200D8 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:11:42 -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 tufmt9HNup5O for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:11: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 A20D7120086 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:11:41 -0700 (PDT)
Received: from github-lowworker-19d82f6.ac4-iad.github.net (github-lowworker-19d82f6.ac4-iad.github.net [10.52.16.75]) by smtp.github.com (Postfix) with ESMTP id 1674B9602FE for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:11:41 -0700 (PDT)
Date: Mon, 23 Sep 2019 19:11:41 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057/push/4068225215@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d897b5d6e6e_76873feb572cd96870059"; 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/sHndj4gZwzo9BzeTi2tISb2U_cc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 02:11:43 -0000

----==_mimepart_5d897b5d6e6e_76873feb572cd96870059
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

df8c4feb8412cdc5060f427eb3e64672db56e0db  unacknowledged data


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3057/files/409286b111330780882fe2ae17bbe405d9f25b09..df8c4feb8412cdc5060f427eb3e64672db56e0db

----==_mimepart_5d897b5d6e6e_76873feb572cd96870059
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/df8c4feb8412cdc5060f427eb3e64672db56e0db">df8c4fe</a>  unacknowledged 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/3057/files/409286b111330780882fe2ae17bbe405d9f25b09..df8c4feb8412cdc5060f427eb3e64672db56e0db?email_source=notifications&amp;email_token=AFTOJK4HM6BOEA4VSA5XA73QLFZN3A5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAMZTHAZTGMCQOVZWQIZUGA3DQMRSGUZDCNI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK66LFOPB5SE3MGFCOTQLFZN3ANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYGEPFIJPIXW4WDBLLQLFZN3A5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAMZTHAZTGMCQOVZWQIZUGA3DQMRSGUZDCNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057/files/409286b111330780882fe2ae17bbe405d9f25b09..df8c4feb8412cdc5060f427eb3e64672db56e0db?email_source=notifications\u0026email_token=AFTOJK4HM6BOEA4VSA5XA73QLFZN3A5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAMZTHAZTGMCQOVZWQIZUGA3DQMRSGUZDCNI",
"url": "https://github.com/quicwg/base-drafts/pull/3057/files/409286b111330780882fe2ae17bbe405d9f25b09..df8c4feb8412cdc5060f427eb3e64672db56e0db?email_source=notifications\u0026email_token=AFTOJK4HM6BOEA4VSA5XA73QLFZN3A5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAMZTHAZTGMCQOVZWQIZUGA3DQMRSGUZDCNI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d897b5d6e6e_76873feb572cd96870059--


From nobody Mon Sep 23 19:12: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 A006E1200D8 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:12: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 CBpIQmLvgkqL for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:12: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 1D31F120086 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:12:05 -0700 (PDT)
Date: Mon, 23 Sep 2019 19:12:04 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569291124; bh=FtMTHfc6Yii8WZhCEL7zf3uMQ7KQ/llCvWg+uwZiD1g=; h=Date:From:To:Subject:From; b=y8IUhKUjkG8uUoiRbEx36Av7cishCsNhh9wbmSvasR7hbSKI6+rmOfA/w5lVNeLwO UgQS82j9rVwySIPgPK2U7SNFQzx8gKKE9qxZL0d2bC5SlUy24CaBlV6gaw/3vKwURO KsQ8gYTWxKVf2q3CMq9M8hk/xlDeMnrilwzntnqc=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/11e708-8cda12@github.com>
Subject: [quicwg/base-drafts] 8cda12: Script updating gh-pages from df8c4feb. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/y6yHr7UgswJiYvmYQDqxtwGMEyY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 02:12:07 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8cda12e55bf4bebbd613731dab45df08d923a051
      https://github.com/quicwg/base-drafts/commit/8cda12e55bf4bebbd613731dab45df08d923a051
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-24 (Tue, 24 Sep 2019)

  Changed paths:
    M ianswett-must-retransmit/draft-ietf-quic-http.html
    M ianswett-must-retransmit/draft-ietf-quic-http.txt
    M ianswett-must-retransmit/draft-ietf-quic-invariants.html
    M ianswett-must-retransmit/draft-ietf-quic-invariants.txt
    M ianswett-must-retransmit/draft-ietf-quic-qpack.html
    M ianswett-must-retransmit/draft-ietf-quic-qpack.txt
    M ianswett-must-retransmit/draft-ietf-quic-recovery.html
    M ianswett-must-retransmit/draft-ietf-quic-recovery.txt
    M ianswett-must-retransmit/draft-ietf-quic-tls.html
    M ianswett-must-retransmit/draft-ietf-quic-tls.txt
    M ianswett-must-retransmit/draft-ietf-quic-transport.html
    M ianswett-must-retransmit/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from df8c4feb. [ci skip]



From nobody Mon Sep 23 19: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 82ECE1200D8 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:14:39 -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 vomjWYZeBC_S for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:14: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 7BBA3120086 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:14:37 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 9D9889600B0 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:14:36 -0700 (PDT)
Date: Mon, 23 Sep 2019 19:14:36 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY67N7HJQJGM7IRP6N3S26JZEVBNHHB3IPO4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057/review/292143187@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d897c0c8cb9f_79233fe3b9ecd95c11527"; 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/DINY_aZZg0mFxterHJUlaoZeLc0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 02:14:40 -0000

----==_mimepart_5d897c0c8cb9f_79233fe3b9ecd95c11527
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> @@ -526,15 +524,16 @@ as a probe, unless there is no data available to send.  An endpoint MAY send up
 to two full-sized datagrams containing ack-eliciting packets, to avoid an
 expensive consecutive PTO expiration due to a single lost datagram.
 
-It is possible that the sender has no new or previously-sent data to send.  As
-an example, consider the following sequence of events: new application data is
-sent in a STREAM frame, deemed lost, then retransmitted in a new packet, and
-then the original transmission is acknowledged.  In the absence of any new
-application data, a PTO timer expiration now would find the sender with no new
-or previously-sent data to send.
+When the PTO timer expires, and there is new or previously sent data, it MUST

I changed it to previously sent unacknowledged data, because that is the intent, though it's also a bit verbose.

Data is used fairly widely to mean ack-eliciting frames in this document.  I'm not sure if that is something we should codify in the definitions 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/3057#discussion_r327400945
----==_mimepart_5d897c0c8cb9f_79233fe3b9ecd95c11527
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/3057#discussion_r327400945">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -526,15 +524,16 @@ as a probe, unless there is no data available to send.  An endpoint MAY send up
 to two full-sized datagrams containing ack-eliciting packets, to avoid an
 expensive consecutive PTO expiration due to a single lost datagram.
 
-It is possible that the sender has no new or previously-sent data to send.  As
-an example, consider the following sequence of events: new application data is
-sent in a STREAM frame, deemed lost, then retransmitted in a new packet, and
-then the original transmission is acknowledged.  In the absence of any new
-application data, a PTO timer expiration now would find the sender with no new
-or previously-sent data to send.
+When the PTO timer expires, and there is new or previously sent data, it MUST
</pre>
<p>I changed it to previously sent unacknowledged data, because that is the intent, though it's also a bit verbose.</p>
<p>Data is used fairly widely to mean ack-eliciting frames in this document.  I'm not sure if that is something we should codify in the definitions 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/3057?email_source=notifications&amp;email_token=AFTOJK5LCTATNIWQVI43DIDQLFZYZA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU4AUY#discussion_r327400945">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2PDGD4MHENXOYFGM3QLFZYZANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZFQYJZEKF5OT2FUETQLFZYZA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU4AUY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK5LCTATNIWQVI43DIDQLFZYZA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU4AUY#discussion_r327400945",
"url": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK5LCTATNIWQVI43DIDQLFZYZA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU4AUY#discussion_r327400945",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d897c0c8cb9f_79233fe3b9ecd95c11527--


From nobody Mon Sep 23 19: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 149A01200EC for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:35: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 lX_LW4Nnjora for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:35:23 -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 436C4120086 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:35:23 -0700 (PDT)
Date: Mon, 23 Sep 2019 19:35:22 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569292522; bh=xhMNS0Bte7wKo2/RdGkuL/PKDJD1wHChONTz5GGI+RM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=m4lsU+vXOmoymksZQB2HkMxU0o+7njg6Mu4YZZ3HVKswBlAOvKxexbkrCv8apZiex +OXxtBTkmyWPXGCyVJ501nQpajy42l6ELFD6uQReRtLrSnocptuWQAC7ZOiw3tMcEB ln/yXEn9ihe6vIxODmbknKAoEwejl8vCrAedq6WM=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2ROT6MOB64AE3XFCN3S3AXVEVBNHHB3JLU5Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3062/534362380@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3062@github.com>
References: <quicwg/base-drafts/issues/3062@github.com>
Subject: Re: [quicwg/base-drafts] Disconnect version number from draft number (#3062)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8980ea864fc_676d3fa68e6cd96836674"; 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/AEb4ljsTAQMgznx0VS5vm9OVbkc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 02:35:25 -0000

----==_mimepart_5d8980ea864fc_676d3fa68e6cd96836674
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

My proposal was imperfect but I was attempting to avoid having to maintain some out of band matrix somewhere that lists what draft versions of H3 are compatible with what draft versions of QUIC, and also avoid gaps in the H3 apln identifier space.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3062#issuecomment-534362380
----==_mimepart_5d8980ea864fc_676d3fa68e6cd96836674
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>My proposal was imperfect but I was attempting to avoid having to maintain some out of band matrix somewhere that lists what draft versions of H3 are compatible with what draft versions of QUIC, and also avoid gaps in the H3 apln identifier space.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3062?email_source=notifications&amp;email_token=AFTOJK63LKOMU64EZXSXQJTQLF4GVA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M3SDA#issuecomment-534362380">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZKP6TNFHQ6TATESELQLF4GVANCNFSM4IZVY72A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ6TVY7VCPJUOGCGOLQLF4GVA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M3SDA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3062?email_source=notifications\u0026email_token=AFTOJK63LKOMU64EZXSXQJTQLF4GVA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M3SDA#issuecomment-534362380",
"url": "https://github.com/quicwg/base-drafts/issues/3062?email_source=notifications\u0026email_token=AFTOJK63LKOMU64EZXSXQJTQLF4GVA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M3SDA#issuecomment-534362380",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8980ea864fc_676d3fa68e6cd96836674--


From nobody Mon Sep 23 19:35: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 03AC2120086 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:35:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 ac5jzsk0qzN1 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:35:24 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7EE291200E9 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:35:24 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id D6683520167 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:35:23 -0700 (PDT)
Date: Mon, 23 Sep 2019 19:35:23 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZKP5VVSAGIWWWBYKF3S2ZWXEVBNHHB23NCOM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3034/534362384@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3034@github.com>
References: <quicwg/base-drafts/issues/3034@github.com>
Subject: Re: [quicwg/base-drafts] Allow PING in Initial/Handshake? (#3034)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8980ebc06d6_69c03ff7354cd968117969"; 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/XZrw7vLM0cPp4fgjtCVX3oD3uNg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 02:35:26 -0000

----==_mimepart_5d8980ebc06d6_69c03ff7354cd968117969
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

While I am fine with allowing PING frames in Initial and Handshake, I wonder what the benefit is.

IIUC, the reason of sending PINGs in case of PTO is to determine if a previously sent ack-eliciting packet has reached the peer. That is determined by the peer sending an ACK.

However, in case of Initial and Handshake packets, the only case when PTO fires and you do not have any data to send is when the endpoints are ready to switch to the next epoch. To rephrase, I think there might be a high chance of the endpoint not receiving an ACK due to the peer dropping the Initial keys (or the Handshake keys).

Considering that, I am not sure if it is a good advice to suggest endpoints send PINGs on PTO. Rather, I think it might be worthwhile to suggest that when discarding a packet number space, unconfirmed loss does not affect the CWND.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3034#issuecomment-534362384
----==_mimepart_5d8980ebc06d6_69c03ff7354cd968117969
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>While I am fine with allowing PING frames in Initial and Handshake, I wonder what the benefit is.</p>
<p>IIUC, the reason of sending PINGs in case of PTO is to determine if a previously sent ack-eliciting packet has reached the peer. That is determined by the peer sending an ACK.</p>
<p>However, in case of Initial and Handshake packets, the only case when PTO fires and you do not have any data to send is when the endpoints are ready to switch to the next epoch. To rephrase, I think there might be a high chance of the endpoint not receiving an ACK due to the peer dropping the Initial keys (or the Handshake keys).</p>
<p>Considering that, I am not sure if it is a good advice to suggest endpoints send PINGs on PTO. Rather, I think it might be worthwhile to suggest that when discarding a packet number space, unconfirmed loss does not affect the CWND.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3034?email_source=notifications&amp;email_token=AFTOJK6KGMSUHYSGQW7JK4TQLF4GXA5CNFSM4IW2F2U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M3SEA#issuecomment-534362384">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6D42PV7RQSXAQG3STQLF4GXANCNFSM4IW2F2UQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3G7SXZA2CPJWM5XNLQLF4GXA5CNFSM4IW2F2U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M3SEA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3034?email_source=notifications\u0026email_token=AFTOJK6KGMSUHYSGQW7JK4TQLF4GXA5CNFSM4IW2F2U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M3SEA#issuecomment-534362384",
"url": "https://github.com/quicwg/base-drafts/issues/3034?email_source=notifications\u0026email_token=AFTOJK6KGMSUHYSGQW7JK4TQLF4GXA5CNFSM4IW2F2U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M3SEA#issuecomment-534362384",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8980ebc06d6_69c03ff7354cd968117969--


From nobody Mon Sep 23 19:40: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 5DE0E1200E9 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:40:04 -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 r1qDLOKva-9c for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:40: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 DADC9120086 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:40:01 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 1C0B6A0990 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:40:01 -0700 (PDT)
Date: Mon, 23 Sep 2019 19:40:01 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK55SMJ7YW37HQX6DA53S2THDEVBNHHB3IPO4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057/review/292146858@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d898201cb69_2a763fa2928cd95c589a9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gVEbv8mYvGtfEbXC0hGvNJVcn2E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 02:40:05 -0000

----==_mimepart_5d898201cb69_2a763fa2928cd95c589a9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.



> @@ -496,10 +496,8 @@ be considered an RTT sample.
 
 Until the server has validated the client's address on the path, the amount of
 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.
+If no data can be sent, then the PTO alarm MUST NOT be armed until data has
+been received from the client.

Do you mean "until the path has been validated"?  "data" is highly non-specific.

>  
-When there is no data to send, the sender SHOULD send a PING or other
-ack-eliciting frame in a single packet, re-arming the PTO timer.
+It is possible the sender has no new or previously-sent data to send.
+As an example, consider the following sequence of events: new application data
+is sent in a STREAM frame, deemed lost, then retransmitted in a new packet,
+and then the original transmission is acknowledged.  When there is no data to
+send, the sender SHOULD send a PING or other ack-eliciting frame in a single
+packet, re-arming the PTO timer.

Still not working for me.

I get the need for the client to send extra Initial packets again in the case where it has nothing to say, but that should be a special provision.

If p1 is acknowledged and p2 contained nothing new, then let it lie.  You don't need to know whether it was lost or not.

I get that this packet will stay outstanding unless you have something new to say, but you are only sending a PING to deal with an accounting discrepancy.  That only becomes relevant when you go to send the next packet.  Is there any way that this sort of blip can end up consuming the entire congestion window?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3057#pullrequestreview-292146858
----==_mimepart_5d898201cb69_2a763fa2928cd95c589a9
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/3057#discussion_r327404052">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -496,10 +496,8 @@ be considered an RTT sample.
 
 Until the server has validated the client&#39;s address on the path, the amount of
 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.
+If no data can be sent, then the PTO alarm MUST NOT be armed until data has
+been received from the client.
</pre>
<p>Do you mean "until the path has been validated"?  "data" is highly non-specific.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3057#discussion_r327405395">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;  
-When there is no data to send, the sender SHOULD send a PING or other
-ack-eliciting frame in a single packet, re-arming the PTO timer.
+It is possible the sender has no new or previously-sent data to send.
+As an example, consider the following sequence of events: new application data
+is sent in a STREAM frame, deemed lost, then retransmitted in a new packet,
+and then the original transmission is acknowledged.  When there is no data to
+send, the sender SHOULD send a PING or other ack-eliciting frame in a single
+packet, re-arming the PTO timer.
</pre>
<p>Still not working for me.</p>
<p>I get the need for the client to send extra Initial packets again in the case where it has nothing to say, but that should be a special provision.</p>
<p>If p1 is acknowledged and p2 contained nothing new, then let it lie.  You don't need to know whether it was lost or not.</p>
<p>I get that this packet will stay outstanding unless you have something new to say, but you are only sending a PING to deal with an accounting discrepancy.  That only becomes relevant when you go to send the next packet.  Is there any way that this sort of blip can end up consuming the entire congestion window?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications&amp;email_token=AFTOJKYO266NZD3YW2JX2QTQLF4YDA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU45KQ#pullrequestreview-292146858">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYVFVNJQZQ7D6QGKATQLF4YDANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2S3MDAD27FTUJ2WRLQLF4YDA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU45KQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJKYO266NZD3YW2JX2QTQLF4YDA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU45KQ#pullrequestreview-292146858",
"url": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJKYO266NZD3YW2JX2QTQLF4YDA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU45KQ#pullrequestreview-292146858",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d898201cb69_2a763fa2928cd95c589a9--


From nobody Mon Sep 23 19:43: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 DD9901200EC for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:43: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 pGMDwI67lEog for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:43: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 27688120086 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:43:32 -0700 (PDT)
Date: Mon, 23 Sep 2019 19:43:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569293011; bh=scss45lYoPyIMrTtaOu3Q9zQPeEbBMhXXa/TZqH2cXI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=D4oB/vL/dj+Lbx/INqujmuPrk0AQwYSDtQz1ZN6YRvpGDLRTsf+q2yV4tbXgOhBjM aq4/WMt7bGsxt9pixiasQxRye+pQ0Am8sx2eJYfmQRVTz+s/V+oj0i9Fo5gPyDTmi/ QLjBS2HseC/UtsY+5DD7mxSmumuB5bcSOzbDiWEo=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK32WUKULTIIC6WYYGF3S22VHEVBNHHB3JLU5Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3062/534363980@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3062@github.com>
References: <quicwg/base-drafts/issues/3062@github.com>
Subject: Re: [quicwg/base-drafts] Disconnect version number from draft number (#3062)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8982d333af2_78db3f89f74cd964645ea"; 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/NLFDnGN_2k6Vr_G5H-2M9IFKy-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: Tue, 24 Sep 2019 02:43:34 -0000

----==_mimepart_5d8982d333af2_78db3f89f74cd964645ea
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@LPardue Yeah I think I get that.

My point is that if we are say that the ALPN identifier changes only when the HTTP/3 draft makes a wire-incompatible change, a single HTTP/3 draft could match to multiple versions of QUIC transport drafts (that are incompatible with each other), and therefore that the "quic" parameter would be useful.

If we are going to update the ALPN identifier when either of the HTTP/3 draft or the transport draft changes, then there would be no benefit in sending the "quic" 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/3062#issuecomment-534363980
----==_mimepart_5d8982d333af2_78db3f89f74cd964645ea
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> Yeah I think I get that.</p>
<p>My point is that if we are say that the ALPN identifier changes only when the HTTP/3 draft makes a wire-incompatible change, a single HTTP/3 draft could match to multiple versions of QUIC transport drafts (that are incompatible with each other), and therefore that the "quic" parameter would be useful.</p>
<p>If we are going to update the ALPN identifier when either of the HTTP/3 draft or the transport draft changes, then there would be no benefit in sending the "quic" 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/3062?email_source=notifications&amp;email_token=AFTOJK4ADLLYMMIQSJ7JPX3QLF5FHA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M36TA#issuecomment-534363980">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7GFVSMXRGSK3CGHWLQLF5FHANCNFSM4IZVY72A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4GQUI7QMXWP5VMDSDQLF5FHA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M36TA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3062?email_source=notifications\u0026email_token=AFTOJK4ADLLYMMIQSJ7JPX3QLF5FHA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M36TA#issuecomment-534363980",
"url": "https://github.com/quicwg/base-drafts/issues/3062?email_source=notifications\u0026email_token=AFTOJK4ADLLYMMIQSJ7JPX3QLF5FHA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M36TA#issuecomment-534363980",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8982d333af2_78db3f89f74cd964645ea--


From nobody Mon Sep 23 19: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 A2CF51200EC for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:43: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 hQiS7aWimK-b for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:43:41 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8482C120086 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:43:41 -0700 (PDT)
Date: Mon, 23 Sep 2019 19:43:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569293020; bh=OHetl4wKtsY2Hom5K9mJCwZLB3m4w+m7XkZLtV0Lmzs=; h=Date:From:To:Subject:From; b=SjIDN8qNp/QxJ4RhVyoazaJvgWPU5g+JD8BVFwL8RhGuHTcdcAv4aKSxFX97SXEH9 9nG4KZRsT4o38X+wHrAjDJcplAArQKYiidDhbGe9LFTlELVk0NJcCeyYyiKUx21lIj +m/AWMH5WZxCHxJ5SeltBTd4rDUPLGPXunxLyUig=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/0d5d19-c70f69@github.com>
Subject: [quicwg/base-drafts] 36178b: Clarify how servers enable 0-RTT
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/DX_ENdXsqBlMhopzHPpGSsLPIt0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 02:43:43 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 36178b79a15192cba7e355d0dc3ba81f74ae3af7
      https://github.com/quicwg/base-drafts/commit/36178b79a15192cba7e355d0dc3ba81f74ae3af7
  Author: David Schinazi <dschinazi.ietf@gmail.com>
  Date:   2019-09-23 (Mon, 23 Sep 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Clarify how servers enable 0-RTT


  Commit: c70f696e71148da9308900d2dfd94aaff7f0bd64
      https://github.com/quicwg/base-drafts/commit/c70f696e71148da9308900d2dfd94aaff7f0bd64
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-24 (Tue, 24 Sep 2019)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Merge pull request #3060 from DavidSchinazi/must0rtt

Clarify how servers enable 0-RTT


Compare: https://github.com/quicwg/base-drafts/compare/0d5d19353a8f...c70f696e7114


From nobody Mon Sep 23 19:43: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 C46451200EC for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:43: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 VOgPGr0y88iD for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:43: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 7A6C7120086 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:43:50 -0700 (PDT)
Date: Mon, 23 Sep 2019 19:43:49 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569293029; bh=ckbaK50KUVXra+RcRNXFuRkszQ4en5Ce3bJWQlkBNAU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eiFoVvZAFqvxYkZ2Pj+rJ6GmJSsOqXehOGKLm/SXj/GV9ywl6QJ7ktwnXmC4bP8Fo SY1CXXku7kacbCVDMOzt0xeSIhqRVnErQNkPq3d+uVcQbOjk+Lv1cEvyikYJsK6+2o AYWMA/QkV7ZeiQG/51O5IXbnKWQNdYDr6nxgNSPg=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK73YDL35HU7EXTAJUF3S2TVLEVBNHHB3JJ6UI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3060/issue_event/2656478103@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3060@github.com>
References: <quicwg/base-drafts/pull/3060@github.com>
Subject: Re: [quicwg/base-drafts] Clarify how servers enable 0-RTT (#3060)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8982e59266e_495d3ff4a1acd96c11942f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/50LZF2-U-Hr0Xgt6kofeqz-2iec>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 02:43:52 -0000

----==_mimepart_5d8982e59266e_495d3ff4a1acd96c11942f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3060 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/3060#event-2656478103
----==_mimepart_5d8982e59266e_495d3ff4a1acd96c11942f
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="497368738" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3060" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3060/hovercard" href="https://github.com/quicwg/base-drafts/pull/3060">#3060</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/3060?email_source=notifications&amp;email_token=AFTOJK4MI6SNCVEVFBWI4ILQLF5GLA5CNFSM4IZUXQD2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTZLKHFY#event-2656478103">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZX256XEPHDQYWBZ3LQLF5GLANCNFSM4IZUXQDQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZYTZRYJ4Y7OSZCZYTQLF5GLA5CNFSM4IZUXQD2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTZLKHFY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3060?email_source=notifications\u0026email_token=AFTOJK4MI6SNCVEVFBWI4ILQLF5GLA5CNFSM4IZUXQD2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTZLKHFY#event-2656478103",
"url": "https://github.com/quicwg/base-drafts/pull/3060?email_source=notifications\u0026email_token=AFTOJK4MI6SNCVEVFBWI4ILQLF5GLA5CNFSM4IZUXQD2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOTZLKHFY#event-2656478103",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8982e59266e_495d3ff4a1acd96c11942f--


From nobody Mon Sep 23 19: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 CFBA51200EC for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19: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 PP68CGO3cNdH for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:44: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 7622F120086 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:44:17 -0700 (PDT)
Date: Mon, 23 Sep 2019 19:44:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569293056; bh=lxycKuYD18WQFgZlzZZT+3EXAIJwDGu5uTok9YuVDvw=; h=Date:From:To:Subject:From; b=ieTrdTYA69l1t1JG5PlAWdAyfI80im30ASuybNHNa2Jxi0WUOufi8xgQAStGS9+ly QNeAPFdCiLM+RYfu3fvwsVA5CplXqdx6EIqyeLvZMc6/x488RbaYRzASGnrIwJQKgl 6AsWOWSoYaMX2TDAf2H5H/JvCp/dI4n/ZQPazX34=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/8cda12-3addc3@github.com>
Subject: [quicwg/base-drafts] 3addc3: Script updating gh-pages from c70f696e. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7hZuRpSGvE749n-7P2d_PoMwAQ4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 02:44:19 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3addc3f57c1e13aff150705859647b64543ac9ca
      https://github.com/quicwg/base-drafts/commit/3addc3f57c1e13aff150705859647b64543ac9ca
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-24 (Tue, 24 Sep 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 c70f696e. [ci skip]



From nobody Mon Sep 23 19:46: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 4BF29120046 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:46: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 hLTOzAXRjXiH for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:46:02 -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 9E93C120086 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:46:02 -0700 (PDT)
Date: Mon, 23 Sep 2019 19:46:01 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569293161; bh=a87q1oQRVs1sSu2baWUqZ5aKyS6wOuOzXLotHDpCYgY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hXqw8iKM6sPcFt+UpQZd0v7yIRS7rQ8CfL1MVQCkNmD876cp5OKoZEGOyARlJX68H m4N8TOVp0DMHxISZMtdL6HgFUHauRVR0L/O9U75mFFTnpgn94dSlsAj5aXTY/C/EZT p60NUNVmXam8PnmB46PZH9PdEwIr005WT4yafxAs=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5PSMRONUPINI3BMAV3S2T5TEVBNHHB3JOWNA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3064/c534364475@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3064@github.com>
References: <quicwg/base-drafts/pull/3064@github.com>
Subject: Re: [quicwg/base-drafts] Add details on how spurious losses may be detected (#3064)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8983699e34b_674f3fa68e6cd968678c8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Cg4nzczMHXPxDpPxMMSsW4zUjw4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 02:46:05 -0000

----==_mimepart_5d8983699e34b_674f3fa68e6cd968678c8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This doesn't seem particularly actionable.  I mean, I could probably work something out, but if the goal is to provide a spec where it is relatively easy to follow the advice and produce a good implementation, then this doesn't meet that test.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3064#issuecomment-534364475
----==_mimepart_5d8983699e34b_674f3fa68e6cd968678c8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This doesn't seem particularly actionable.  I mean, I could probably work something out, but if the goal is to provide a spec where it is relatively easy to follow the advice and produce a good implementation, then this doesn't meet that test.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3064?email_source=notifications&amp;email_token=AFTOJK2A5K7RPE32H3KQZ7TQLF5OTA5CNFSM4IZXXRO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M4COY#issuecomment-534364475">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2ZOQLXEHLVKU2NY73QLF5OTANCNFSM4IZXXROQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK67HXC5FP2WPHGBF7DQLF5OTA5CNFSM4IZXXRO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M4COY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3064?email_source=notifications\u0026email_token=AFTOJK2A5K7RPE32H3KQZ7TQLF5OTA5CNFSM4IZXXRO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M4COY#issuecomment-534364475",
"url": "https://github.com/quicwg/base-drafts/pull/3064?email_source=notifications\u0026email_token=AFTOJK2A5K7RPE32H3KQZ7TQLF5OTA5CNFSM4IZXXRO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M4COY#issuecomment-534364475",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8983699e34b_674f3fa68e6cd968678c8--


From nobody Mon Sep 23 19:50: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 E96EF120086 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:50:41 -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 uFgrdlMQI9qR for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 19:50: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 36312120046 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:50:40 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 9ED5E6E0768 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 19:50:39 -0700 (PDT)
Date: Mon, 23 Sep 2019 19:50:39 -0700
From: Benjamin Saunders <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6BKKQXIMYXMVUZYIV3S3CQ7EVBNHHBTM7YNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2598/534365367@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2598@github.com>
References: <quicwg/base-drafts/issues/2598@github.com>
Subject: Re: [quicwg/base-drafts] Explain extraordinary conditions that lead to sending a Handshake packet (#2598)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d89847f8eef1_55133fdf448cd96813297d"; 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/pdaiZMRMcmHFUymCVg5jYR7qHmE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 02:50:42 -0000

----==_mimepart_5d89847f8eef1_55133fdf448cd96813297d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think the logic in the recovery draft misses some of these cases entirely. The rule in draft 23 is:
>  the client MUST set the probe timer if the client has not received an acknowledgement for one of its Handshake or 1-RTT packets.

but in your example case there is not necessarily any unacknowledged data to transmit in a probe, and a `PING` is forbidden at Handshake level, leaving no reasonable options to compose an ACK-eliciting 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/2598#issuecomment-534365367
----==_mimepart_5d89847f8eef1_55133fdf448cd96813297d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I think the logic in the recovery draft misses some of these cases entirely. The rule in draft 23 is:</p>
<blockquote>
<p>the client MUST set the probe timer if the client has not received an acknowledgement for one of its Handshake or 1-RTT packets.</p>
</blockquote>
<p>but in your example case there is not necessarily any unacknowledged data to transmit in a probe, and a <code>PING</code> is forbidden at Handshake level, leaving no reasonable options to compose an ACK-eliciting 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/2598?email_source=notifications&amp;email_token=AFTOJKYMORMHU6FNM754V7LQLF577A5CNFSM4HEW75P2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M4JNY#issuecomment-534365367">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7GPMLGRPDFR5WDAW3QLF577ANCNFSM4HEW75PQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6USLEB4P4CE7AN3EDQLF577A5CNFSM4HEW75P2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M4JNY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/2598?email_source=notifications\u0026email_token=AFTOJKYMORMHU6FNM754V7LQLF577A5CNFSM4HEW75P2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M4JNY#issuecomment-534365367",
"url": "https://github.com/quicwg/base-drafts/issues/2598?email_source=notifications\u0026email_token=AFTOJKYMORMHU6FNM754V7LQLF577A5CNFSM4HEW75P2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M4JNY#issuecomment-534365367",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d89847f8eef1_55133fdf448cd96813297d--


From nobody Mon Sep 23 20:00: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 40A68120086 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 20:00:03 -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 ikjlvYLa4eD0 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 20:00: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 9C10F120046 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 20:00:01 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id AA257660031 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 20:00:00 -0700 (PDT)
Date: Mon, 23 Sep 2019 20:00:00 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZFKWXPR2NPSPB5GJV3S3DUBEVBNHHB3JLU5Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3062/534367130@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3062@github.com>
References: <quicwg/base-drafts/issues/3062@github.com>
Subject: Re: [quicwg/base-drafts] Disconnect version number from draft number (#3062)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8986b09a160_7f793f9935acd95c1528d9"; 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/y-Uy7NbLA3xBaI2z1pAyD4KPvn0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 03:00:03 -0000

----==_mimepart_5d8986b09a160_7f793f9935acd95c1528d9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I have a concern about how the quic parameter would relate to Alt-Svc caching in practice, especially on a rolling upgrade.  But I'm not sure my concern is found or the proposal helps. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3062#issuecomment-534367130
----==_mimepart_5d8986b09a160_7f793f9935acd95c1528d9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I have a concern about how the quic parameter would relate to Alt-Svc caching in practice, especially on a rolling upgrade.  But I'm not sure my concern is found or the proposal helps.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3062?email_source=notifications&amp;email_token=AFTOJK4HN3IPVWEJGAJ4AGDQLF7DBA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M4XGQ#issuecomment-534367130">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ66UN7DPSZXUBUWJ3QLF7DBANCNFSM4IZVY72A">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7IZGEGJ6CIEVP7WYDQLF7DBA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M4XGQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3062?email_source=notifications\u0026email_token=AFTOJK4HN3IPVWEJGAJ4AGDQLF7DBA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M4XGQ#issuecomment-534367130",
"url": "https://github.com/quicwg/base-drafts/issues/3062?email_source=notifications\u0026email_token=AFTOJK4HN3IPVWEJGAJ4AGDQLF7DBA5CNFSM4IZVY72KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7M4XGQ#issuecomment-534367130",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8986b09a160_7f793f9935acd95c1528d9--


From nobody Mon Sep 23 20:02: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 4151C1200E9 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 20:02:27 -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 lbhpZu-957fd for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 20:02: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 559A7120086 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 20:02:25 -0700 (PDT)
Date: Mon, 23 Sep 2019 20:02:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569294144; bh=G9gj+ftqMV6Uunx3bTDY11ZJEVViw3TBfJ6++ve/YxE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Rb4Elym8qjbDXbaeZZKGr/9EqhUJ3HQqdizfwVVG2Vc6+5+5GTXJqgK3p5vbuMpbj 0mSU+73+hPMh0F2T5tiB6i3nSAA0IvrBX0R+nsyB+TG99i3a6dsD6avyuTQOfAgZML zssZBa0Oh3+Iw1uOVL/HOfoTsnXI+NKmctpaTe+g=
From: Benjamin Saunders <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6P2SWK3ZEDMT266W53S3D5BEVBNHHB3IPO4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057/review/292153109@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8987408498c_14ff3ff025acd960943ba"; 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/4MgbfEQdoRglZTJXLSznun6phd8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 03:02:27 -0000

----==_mimepart_5d8987408498c_14ff3ff025acd960943ba
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Ralith commented on this pull request.



> @@ -526,15 +524,16 @@ as a probe, unless there is no data available to send.  An endpoint MAY send up
 to two full-sized datagrams containing ack-eliciting packets, to avoid an
 expensive consecutive PTO expiration due to a single lost datagram.
 
-It is possible that the sender has no new or previously-sent data to send.  As
-an example, consider the following sequence of events: new application data is
-sent in a STREAM frame, deemed lost, then retransmitted in a new packet, and
-then the original transmission is acknowledged.  In the absence of any new
-application data, a PTO timer expiration now would find the sender with no new
-or previously-sent data to send.
+When the PTO timer expires, and there is new or previously sent data, it MUST

On review, maybe the existing requirement that probes be ACK-eliciting is enough. Nothing wrong with retransmitting some unacknowledged ACKs alongside your 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/3057#discussion_r327409083
----==_mimepart_5d8987408498c_14ff3ff025acd960943ba
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@Ralith</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3057#discussion_r327409083">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -526,15 +524,16 @@ as a probe, unless there is no data available to send.  An endpoint MAY send up
 to two full-sized datagrams containing ack-eliciting packets, to avoid an
 expensive consecutive PTO expiration due to a single lost datagram.
 
-It is possible that the sender has no new or previously-sent data to send.  As
-an example, consider the following sequence of events: new application data is
-sent in a STREAM frame, deemed lost, then retransmitted in a new packet, and
-then the original transmission is acknowledged.  In the absence of any new
-application data, a PTO timer expiration now would find the sender with no new
-or previously-sent data to send.
+When the PTO timer expires, and there is new or previously sent data, it MUST
</pre>
<p>On review, maybe the existing requirement that probes be ACK-eliciting is enough. Nothing wrong with retransmitting some unacknowledged ACKs alongside your 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/3057?email_source=notifications&amp;email_token=AFTOJK2J4SPYAD3SDJKFS7TQLF7MBA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU6OFI#discussion_r327409083">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6IMIIL4P3CFJU45R3QLF7MBANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK467XOIYJ5WZRLNFZLQLF7MBA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU6OFI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK2J4SPYAD3SDJKFS7TQLF7MBA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU6OFI#discussion_r327409083",
"url": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK2J4SPYAD3SDJKFS7TQLF7MBA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFU6OFI#discussion_r327409083",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8987408498c_14ff3ff025acd960943ba--


From nobody Mon Sep 23 22:06: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 E6AB31200B8 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 22:06: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 ClPFHsQM7RAa for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 22:06: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 884A51200FB for <quic-issues@ietf.org>; Mon, 23 Sep 2019 22:06:53 -0700 (PDT)
Date: Mon, 23 Sep 2019 22:06:52 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569301613; bh=E9VFCCcizRM8cFs0WJmain9clp4uw6/5sdGQmx3f72c=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=p//+c3MwUOKRrPGLOtkSWl+YyWZ4wga7QukRDiN5QR+Fcf9sdRGeOS7/E5ax4TdYi 5SNzV22fyEfdH+MdNHTkpzsDq+08DNn4rpSdTy8xO6XOxlPWqvMGLNEjQDwk6bIsza JlQxGB96ms3FtLnm+RVZRYTmydAbp0mlRsvJt7PQ=
From: Benjamin Saunders <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYVRXBMOVWXOWISS5F3S3SPZEVBNHHB3JOWNA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3064/c534390500@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3064@github.com>
References: <quicwg/base-drafts/pull/3064@github.com>
Subject: Re: [quicwg/base-drafts] Add details on how spurious losses may be detected (#3064)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d89a46cae007_79c93f8ad10cd960470e"; 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/Q_omlRF2Ap22TfpwjMWnoPDRJ5Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 05:06:55 -0000

----==_mimepart_5d89a46cae007_79c93f8ad10cd960470e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I read this as "On acknowledgement of a packet, discard state for packets that were declared lost prior to the acknowledged packet's sending," which is at least enough to give me some ideas.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3064#issuecomment-534390500
----==_mimepart_5d89a46cae007_79c93f8ad10cd960470e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I read this as "On acknowledgement of a packet, discard state for packets that were declared lost prior to the acknowledged packet's sending," which is at least enough to give me some ideas.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3064?email_source=notifications&amp;email_token=AFTOJK4FEHHUY5Z2KWMJBLTQLGN6ZA5CNFSM4IZXXRO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7NCNZA#issuecomment-534390500">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZAM4K3E3NSZIKVKH3QLGN6ZANCNFSM4IZXXROQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZVV3LSGALZIBGJ7O3QLGN6ZA5CNFSM4IZXXRO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7NCNZA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3064?email_source=notifications\u0026email_token=AFTOJK4FEHHUY5Z2KWMJBLTQLGN6ZA5CNFSM4IZXXRO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7NCNZA#issuecomment-534390500",
"url": "https://github.com/quicwg/base-drafts/pull/3064?email_source=notifications\u0026email_token=AFTOJK4FEHHUY5Z2KWMJBLTQLGN6ZA5CNFSM4IZXXRO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7NCNZA#issuecomment-534390500",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d89a46cae007_79c93f8ad10cd960470e--


From nobody Mon Sep 23 22: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 62AEB12010D for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 22:48:32 -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 5b76E9onvS0L for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 22:48: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 B8BF8120105 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 22:48:30 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id E9837A083D for <quic-issues@ietf.org>; Mon, 23 Sep 2019 22:48:29 -0700 (PDT)
Date: Mon, 23 Sep 2019 22:48:29 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYACBFY75MX5W2JD753S3QK3EVBNHHB23NCOM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3034/534399583@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3034@github.com>
References: <quicwg/base-drafts/issues/3034@github.com>
Subject: Re: [quicwg/base-drafts] Allow PING in Initial/Handshake? (#3034)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d89ae2dd87b6_12df3f7ef96cd95c43050"; 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/K1jo1BCx7m52ymtb-e-aTTDvlgA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 05:48:32 -0000

----==_mimepart_5d89ae2dd87b6_12df3f7ef96cd95c43050
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Regarding my comment above, @janaiyengar points out that there is no such issue, as because the loss would never be confirmed in such case (due to the peer never sending an ACK). I agree.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3034#issuecomment-534399583
----==_mimepart_5d89ae2dd87b6_12df3f7ef96cd95c43050
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Regarding my comment above, <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> points out that there is no such issue, as because the loss would never be confirmed in such case (due to the peer never sending an ACK). I agree.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3034?email_source=notifications&amp;email_token=AFTOJKYG2AVLVF2RQRS6SNDQLGS23A5CNFSM4IW2F2U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7NEUXY#issuecomment-534399583">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2Z4OGBIV3E7BN6IJ3QLGS23ANCNFSM4IW2F2UQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3C3NK7G345ZKMBNMDQLGS23A5CNFSM4IW2F2U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7NEUXY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3034?email_source=notifications\u0026email_token=AFTOJKYG2AVLVF2RQRS6SNDQLGS23A5CNFSM4IW2F2U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7NEUXY#issuecomment-534399583",
"url": "https://github.com/quicwg/base-drafts/issues/3034?email_source=notifications\u0026email_token=AFTOJKYG2AVLVF2RQRS6SNDQLGS23A5CNFSM4IW2F2U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7NEUXY#issuecomment-534399583",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d89ae2dd87b6_12df3f7ef96cd95c43050--


From nobody Mon Sep 23 22:54: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 C8A1D120113 for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 22:53: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 gp3tnpvj9y3d for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 22:53: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 D66E2120104 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 22:53:57 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 1B8CF660855 for <quic-issues@ietf.org>; Mon, 23 Sep 2019 22:53:57 -0700 (PDT)
Date: Mon, 23 Sep 2019 22:53:57 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4SPRFQJHJFAUBG6X53S3J6LEVBNHHB23NCOM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3034/534400961@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3034@github.com>
References: <quicwg/base-drafts/issues/3034@github.com>
Subject: Re: [quicwg/base-drafts] Allow PING in Initial/Handshake? (#3034)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d89af75d2eb_64a63fa7d5acd96c61765"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/WEmURBNkahlGZGvQHImZnvZvu4M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 05:54:00 -0000

----==_mimepart_5d89af75d2eb_64a63fa7d5acd96c61765
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Yes, that seems right.  The packets you send in the old packet number space might as well have never happened once you discard state for that space.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3034#issuecomment-534400961
----==_mimepart_5d89af75d2eb_64a63fa7d5acd96c61765
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Yes, that seems right.  The packets you send in the old packet number space might as well have never happened once you discard state for that space.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3034?email_source=notifications&amp;email_token=AFTOJK7PDQR5LPTBEKXDQODQLGTPLA5CNFSM4IW2F2U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7NE7QI#issuecomment-534400961">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4L7567LV7AL53OULLQLGTPLANCNFSM4IW2F2UQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5JFPMHQYRU7YIXQ23QLGTPLA5CNFSM4IW2F2U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7NE7QI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3034?email_source=notifications\u0026email_token=AFTOJK7PDQR5LPTBEKXDQODQLGTPLA5CNFSM4IW2F2U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7NE7QI#issuecomment-534400961",
"url": "https://github.com/quicwg/base-drafts/issues/3034?email_source=notifications\u0026email_token=AFTOJK7PDQR5LPTBEKXDQODQLGTPLA5CNFSM4IW2F2U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7NE7QI#issuecomment-534400961",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d89af75d2eb_64a63fa7d5acd96c61765--


From nobody Mon Sep 23 23: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 EA8B012010C for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 23:54:35 -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 VcQuZkue3MpL for <quic-issues@ietfa.amsl.com>; Mon, 23 Sep 2019 23:54:33 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B2C4A12001E for <quic-issues@ietf.org>; Mon, 23 Sep 2019 23:54:33 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 102262C131E for <quic-issues@ietf.org>; Mon, 23 Sep 2019 23:54:33 -0700 (PDT)
Date: Mon, 23 Sep 2019 23:54:33 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7GJMCJKBEBPNZXDBN3S37DREVBNHHB3JNFTE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3063/534418635@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3063@github.com>
References: <quicwg/base-drafts/issues/3063@github.com>
Subject: Re: [quicwg/base-drafts] http: Allow unquoted tokens in Alt-Svc quic parameter (#3063)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d89bda9d2e_22d83fca37ecd95c18418a"; 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/ao7_b1Be66PVhiPaDeg7I9g1rb8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 06:54:36 -0000

----==_mimepart_5d89bda9d2e_22d83fca37ecd95c18418a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

If alt-svc can be specified in configuration files, it is likely to result in interop issues if unquoted is not permitted.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3063#issuecomment-534418635
----==_mimepart_5d89bda9d2e_22d83fca37ecd95c18418a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>If alt-svc can be specified in configuration files, it is likely to result in interop issues if unquoted is not permitted.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications&amp;email_token=AFTOJKYQ6Z3RDR4KAOUXHZLQLG2STA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7NJJSY#issuecomment-534418635">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3LHXSY3HQZU2GYJW3QLG2STANCNFSM4IZWYYMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5Y6DN7PPXDY4F6C6LQLG2STA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7NJJSY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications\u0026email_token=AFTOJKYQ6Z3RDR4KAOUXHZLQLG2STA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7NJJSY#issuecomment-534418635",
"url": "https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications\u0026email_token=AFTOJKYQ6Z3RDR4KAOUXHZLQLG2STA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7NJJSY#issuecomment-534418635",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d89bda9d2e_22d83fca37ecd95c18418a--


From nobody Tue Sep 24 07:30: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 30ED0120072 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 07:30:26 -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 p1sopb_037Xi for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 07:30: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 C2DF012001A for <quic-issues@ietf.org>; Tue, 24 Sep 2019 07:30:24 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id EADCB6A03AF for <quic-issues@ietf.org>; Tue, 24 Sep 2019 07:30:23 -0700 (PDT)
Date: Tue, 24 Sep 2019 07:30:23 -0700
From: Tatsuhiro Tsujikawa <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK57YS53TTLOGFYTSVF3S5NP7EVBNHHB3JNFTE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3063/534585821@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3063@github.com>
References: <quicwg/base-drafts/issues/3063@github.com>
Subject: Re: [quicwg/base-drafts] http: Allow unquoted tokens in Alt-Svc quic parameter (#3063)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a287fdb5ad_67763fa8864cd95c1727d0"; 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/WIV4nksr8Hl7ZzYnMjvux88TnUg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 14:30:26 -0000

----==_mimepart_5d8a287fdb5ad_67763fa8864cd95c1727d0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I support allowing unquoted token for alt-svc quic parameter.
quic=1 and quic="1" are semantically the same, and there is no reason to disallow unquoted token.
Moreover, requiring quoted-string means that we cannot use generic alt-svc parser because such parser can parse quic=1 without an error.  You need to write your own parser to detect that the DQUOTE is really there.  If you think that detecting it is not necessary, then requiring quoted-string is not necessary in the first place.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3063#issuecomment-534585821
----==_mimepart_5d8a287fdb5ad_67763fa8864cd95c1727d0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I support allowing unquoted token for alt-svc quic parameter.<br>
quic=1 and quic="1" are semantically the same, and there is no reason to disallow unquoted token.<br>
Moreover, requiring quoted-string means that we cannot use generic alt-svc parser because such parser can parse quic=1 without an error.  You need to write your own parser to detect that the DQUOTE is really there.  If you think that detecting it is not necessary, then requiring quoted-string is not necessary in the first place.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications&amp;email_token=AFTOJK2REVV4UJPKLBKN463QLIP77A5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7OSDXI#issuecomment-534585821">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZE4NRLUYLY2ZYCDEDQLIP77ANCNFSM4IZWYYMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYAKSGBK7GLASSTEGLQLIP77A5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7OSDXI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications\u0026email_token=AFTOJK2REVV4UJPKLBKN463QLIP77A5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7OSDXI#issuecomment-534585821",
"url": "https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications\u0026email_token=AFTOJK2REVV4UJPKLBKN463QLIP77A5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7OSDXI#issuecomment-534585821",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8a287fdb5ad_67763fa8864cd95c1727d0--


From nobody Tue Sep 24 07:32: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 C476F120072 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 07:32: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 xJimdSmUO7fi for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 07:32: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 3DD6412001A for <quic-issues@ietf.org>; Tue, 24 Sep 2019 07:32:04 -0700 (PDT)
Date: Tue, 24 Sep 2019 07:32:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569335523; bh=cwJepvMUf88U7emnZj18yoW+/61hlKnxoLh3yH/y6h0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YKgFbYPxhr/mLdox0w3PljpdpXh8PdtodYnLdd/tGA10NUEMEKuA+DtJasqJ0EOSm x4PnGp1hcH1jf1YXFgrb/F80oJyeMD50ji97g81Z88ujUYKVrNi3n13hHSS+QpC8K7 jHaDMijGYvgste/iRCs4QRw+fw5oZUQIGdrYN6kw=
From: Daniel Stenberg <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYR7U6MEGQJFETX7I53S5UXHEVBNHHB3JNFTE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3063/534586606@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3063@github.com>
References: <quicwg/base-drafts/issues/3063@github.com>
Subject: Re: [quicwg/base-drafts] http: Allow unquoted tokens in Alt-Svc quic parameter (#3063)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a28e363f5d_8433fd3306cd96c173892"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: bagder
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gQco3Ab_vOVa1QxDYseZJs5t3_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: Tue, 24 Sep 2019 14:32:06 -0000

----==_mimepart_5d8a28e363f5d_8433fd3306cd96c173892
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

People and implementers will be surprised (and do wrong) if the rules and constraints of RFC7838 aren't kept.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3063#issuecomment-534586606
----==_mimepart_5d8a28e363f5d_8433fd3306cd96c173892
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>People and implementers will be surprised (and do wrong) if the rules and constraints of RFC7838 aren't kept.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications&amp;email_token=AFTOJK7GBV6C3EOQRUNKVALQLIQGHA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7OSJ3Q#issuecomment-534586606">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5ZVFF3ZZCVO5XIXU3QLIQGHANCNFSM4IZWYYMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4AZCMU233SKS3D5C3QLIQGHA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7OSJ3Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications\u0026email_token=AFTOJK7GBV6C3EOQRUNKVALQLIQGHA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7OSJ3Q#issuecomment-534586606",
"url": "https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications\u0026email_token=AFTOJK7GBV6C3EOQRUNKVALQLIQGHA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7OSJ3Q#issuecomment-534586606",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8a28e363f5d_8433fd3306cd96c173892--


From nobody Tue Sep 24 08:27: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 5B1861208BA for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 08:27:43 -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 e3ZoCOb_3c_D for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 08:27: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 19CEB1208B4 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 08:27:42 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 577316A0E60 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 08:27:41 -0700 (PDT)
Date: Tue, 24 Sep 2019 08:27:41 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5BOZKE2EZ4X2EIQBV3S53H3EVBNHHB2ZES4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3028/534611838@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3028@github.com>
References: <quicwg/base-drafts/issues/3028@github.com>
Subject: Re: [quicwg/base-drafts] Requiring per application data in session ticket seems wrong (#3028)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a35ed48e19_59f3fc7914cd964976f3"; 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/Yd8p-xf13AanEfLR7z_QKEDCKyE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 15:27:43 -0000

----==_mimepart_5d8a35ed48e19_59f3fc7914cd964976f3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I don't think it's "not well supported," it's entirely not permitted by TLS 1.3.  You can resume a session, saving crypto work, but there won't be early data on it.  If TLS changes in a future version or extension, QUIC can match.

However, the most recent update to the text on how you handle stored SETTINGS does have a case for not being able to recover the SETTINGS from last time, which would seem to apply if TLS permitted early data from a non-HTTP session.  You get the defaults, until you see the SETTINGS frame.  The required capability could include not finding any corresponding data 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/3028#issuecomment-534611838
----==_mimepart_5d8a35ed48e19_59f3fc7914cd964976f3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I don't think it's "not well supported," it's entirely not permitted by TLS 1.3.  You can resume a session, saving crypto work, but there won't be early data on it.  If TLS changes in a future version or extension, QUIC can match.</p>
<p>However, the most recent update to the text on how you handle stored SETTINGS does have a case for not being able to recover the SETTINGS from last time, which would seem to apply if TLS permitted early data from a non-HTTP session.  You get the defaults, until you see the SETTINGS frame.  The required capability could include not finding any corresponding data 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/3028?email_source=notifications&amp;email_token=AFTOJKYXGTPSEXQ6JL5JCPDQLIWW3A5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7OYO7Q#issuecomment-534611838">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4IIVY3UB4YDBH7C73QLIWW3ANCNFSM4IWL5CVA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4VQCLLJLIETYHER7DQLIWW3A5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7OYO7Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJKYXGTPSEXQ6JL5JCPDQLIWW3A5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7OYO7Q#issuecomment-534611838",
"url": "https://github.com/quicwg/base-drafts/issues/3028?email_source=notifications\u0026email_token=AFTOJKYXGTPSEXQ6JL5JCPDQLIWW3A5CNFSM4IWL5CVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7OYO7Q#issuecomment-534611838",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8a35ed48e19_59f3fc7914cd964976f3--


From nobody Tue Sep 24 10:23: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 EAC4C120898 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 10:23: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 RYdNKTfGScqm for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 10:23: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 33A3712087A for <quic-issues@ietf.org>; Tue, 24 Sep 2019 10:23:26 -0700 (PDT)
Date: Tue, 24 Sep 2019 10:23:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569345805; bh=xCybZb2BwzlqOs6FCvbuTuuwx4kW8HD3E9yAKQ6oHec=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XP9jWuKr4og+IoKL6j/AZxWGUIunUoWfwSTBG6yPADfP9yfpYMwBLz6jvaGN79162 9cNhqZJkJf9yumxubFRnZslssJRTOqdi05hWx2sMs0XHI4w7t679h2TiBQ6VFLa/G8 zfmFMArsccu1IGPodAo+Job5fn+AK1oOXYiN2tzg=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYGCZH72YEPND5DFCV3S6IZ3EVBNHHB2WTA7U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3020/534661132@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3020@github.com>
References: <quicwg/base-drafts/issues/3020@github.com>
Subject: Re: [quicwg/base-drafts] Transport parameter registry is too constraining for innovation (#3020)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a510d50247_b8b3ff97a4cd96c377294"; 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/esLb2DwAaUu8ZB2Jvh8p408v8aI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 17:23:28 -0000

----==_mimepart_5d8a510d50247_b8b3ff97a4cd96c377294
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

>From looking at all the integer fields in QUICv1, it looks like at this point everything is a varint except the versions, packet numbers, connection ID lengths (which all have valid reasons for their lengths), and the transport parameter identifier and transport parameter lengths. Switching transport parameters to QUIC format (as opposed to TLS presentation language) feels fitting to me, saves bytes on the wire, and will facilitate innovation down the road.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3020#issuecomment-534661132
----==_mimepart_5d8a510d50247_b8b3ff97a4cd96c377294
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>From looking at all the integer fields in QUICv1, it looks like at this point everything is a varint except the versions, packet numbers, connection ID lengths (which all have valid reasons for their lengths), and the transport parameter identifier and transport parameter lengths. Switching transport parameters to QUIC format (as opposed to TLS presentation language) feels fitting to me, saves bytes on the wire, and will facilitate innovation down the road.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications&amp;email_token=AFTOJKYC3YBQAIZ7QNWA5FDQLJEI3A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PEQDA#issuecomment-534661132">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6JQVYDYWZOUN67JPTQLJEI3ANCNFSM4IVYZAZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYANHS5OUAHWRZ74M3QLJEI3A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PEQDA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJKYC3YBQAIZ7QNWA5FDQLJEI3A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PEQDA#issuecomment-534661132",
"url": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJKYC3YBQAIZ7QNWA5FDQLJEI3A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PEQDA#issuecomment-534661132",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8a510d50247_b8b3ff97a4cd96c377294--


From nobody Tue Sep 24 10:24: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 6A7E312089F for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 10:24:30 -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 ssKN3HXGHV1U for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 10:24:25 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6B8F612089B for <quic-issues@ietf.org>; Tue, 24 Sep 2019 10:24:15 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id B4F272C2F73 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 10:24:14 -0700 (PDT)
Date: Tue, 24 Sep 2019 10:24:14 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/push/4071557245@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a513ea693b_326a3ff9ce0cd96c34958"; 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/2gQsXlANsdws0RcvOefyBnnJB_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: Tue, 24 Sep 2019 17:24:31 -0000

----==_mimepart_5d8a513ea693b_326a3ff9ce0cd96c34958
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi pushed 1 commit.

c2c7abb67e8dc7ba6e41d124e3ea85338ae2ab21  MT review comment


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3045/files/7af6d612244fb2056eea105620eba01d7ed9dc73..c2c7abb67e8dc7ba6e41d124e3ea85338ae2ab21

----==_mimepart_5d8a513ea693b_326a3ff9ce0cd96c34958
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/c2c7abb67e8dc7ba6e41d124e3ea85338ae2ab21">c2c7abb</a>  MT review 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/3045/files/7af6d612244fb2056eea105620eba01d7ed9dc73..c2c7abb67e8dc7ba6e41d124e3ea85338ae2ab21?email_source=notifications&amp;email_token=AFTOJK3GP2PQFPOO5KHPIXTQLJEL5A5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TCNJVG4ZDINI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7JHTDTOVNHUTBVMGTQLJEL5ANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5RL265MHREY32ER5DQLJEL5A5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TCNJVG4ZDINI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045/files/7af6d612244fb2056eea105620eba01d7ed9dc73..c2c7abb67e8dc7ba6e41d124e3ea85338ae2ab21?email_source=notifications\u0026email_token=AFTOJK3GP2PQFPOO5KHPIXTQLJEL5A5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TCNJVG4ZDINI",
"url": "https://github.com/quicwg/base-drafts/pull/3045/files/7af6d612244fb2056eea105620eba01d7ed9dc73..c2c7abb67e8dc7ba6e41d124e3ea85338ae2ab21?email_source=notifications\u0026email_token=AFTOJK3GP2PQFPOO5KHPIXTQLJEL5A5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TCNJVG4ZDINI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8a513ea693b_326a3ff9ce0cd96c34958--


From nobody Tue Sep 24 10:29: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 B4B2512085D for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 10:29:45 -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 Ng4A3tdx2TyH for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 10:29: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 4A05012084B for <quic-issues@ietf.org>; Tue, 24 Sep 2019 10:29:44 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 8740F6E0AA1 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 10:29:43 -0700 (PDT)
Date: Tue, 24 Sep 2019 10:29:43 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK27CMMAXO35MOXJY5N3S6JRPEVBNHHB2WTA7U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3020/534663820@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3020@github.com>
References: <quicwg/base-drafts/issues/3020@github.com>
Subject: Re: [quicwg/base-drafts] Transport parameter registry is too constraining for innovation (#3020)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a528776b48_50f53f8db20cd9683692c8"; 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/DtYjGL4GskMHw0FYX7DXOQ_9MAs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 17:29:46 -0000

----==_mimepart_5d8a528776b48_50f53f8db20cd9683692c8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm happy to make transport parameter identifier a varint.

@DavidSchinazi Are you(implicitly) suggesting that transport parameter lengths should be varint 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/3020#issuecomment-534663820
----==_mimepart_5d8a528776b48_50f53f8db20cd9683692c8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'm happy to make transport parameter identifier a varint.</p>
<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> Are you(implicitly) suggesting that transport parameter lengths should be varint 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/3020?email_source=notifications&amp;email_token=AFTOJK6YDK4RPN2DW452K5DQLJFAPA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PFFDA#issuecomment-534663820">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY7CMG76XEDTIRQUR3QLJFAPANCNFSM4IVYZAZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZPAGGG2LTOVRS5GF3QLJFAPA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PFFDA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJK6YDK4RPN2DW452K5DQLJFAPA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PFFDA#issuecomment-534663820",
"url": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJK6YDK4RPN2DW452K5DQLJFAPA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PFFDA#issuecomment-534663820",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8a528776b48_50f53f8db20cd9683692c8--


From nobody Tue Sep 24 10:30: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 BBEB612085D for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 10:30:39 -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 MkajByKBTRFL for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 10:30:38 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DE3BC12084B for <quic-issues@ietf.org>; Tue, 24 Sep 2019 10:30:37 -0700 (PDT)
Date: Tue, 24 Sep 2019 10:30:36 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569346237; bh=1cMRP5LK/A7YsKungCdWbjn9ZLVlfAkEYPIXItBdmng=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GBjWxTYBMqrVw91OeMtY7DP9bgPjkTJrdy4zem6mWOOb++3PchS/jmF3K7frBmkE2 tGoj/lEejSR6xGJkJG9TJ06/3mpFtTm3jTctJ2Atk3G5EPSxNHBbXvE4JUYEYN0lij g9xHanLQW9igDeCWmt64tWoBTz0l2m0FnmiURQjE=
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/3045/push/4071582738@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a52bcf2c28_18953fdc070cd96046814b"; 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/Bj_FJ8irZiFAfW8yBE6Vl59EMqs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 17:30:40 -0000

----==_mimepart_5d8a52bcf2c28_18953fdc070cd96046814b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi pushed 2 commits.

3ae146dffc74a4533f1388dbabd0aabb971fe973  Merge branch 'master' into multi_packet_client_hello
c1eeb6e354fe569fb2d8d624e4691bf495814401  MT review comments


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3045/files/c2c7abb67e8dc7ba6e41d124e3ea85338ae2ab21..c1eeb6e354fe569fb2d8d624e4691bf495814401

----==_mimepart_5d8a52bcf2c28_18953fdc070cd96046814b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/DavidSchinazi" class="user-mention">@DavidSchinazi</a> pushed 2 commits.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/3ae146dffc74a4533f1388dbabd0aabb971fe973">3ae146d</a>  Merge branch &#39;master&#39; into multi_packet_client_hello</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/c1eeb6e354fe569fb2d8d624e4691bf495814401">c1eeb6e</a>  MT review 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/3045/files/c2c7abb67e8dc7ba6e41d124e3ea85338ae2ab21..c1eeb6e354fe569fb2d8d624e4691bf495814401?email_source=notifications&amp;email_token=AFTOJK2BESHOC6GKOU27HRDQLJFDZA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TCNJYGI3TGOA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2TYPNIQ5Y6V6OXJ5DQLJFDZANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYHACBJAEB7ANJVE4DQLJFDZA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TCNJYGI3TGOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045/files/c2c7abb67e8dc7ba6e41d124e3ea85338ae2ab21..c1eeb6e354fe569fb2d8d624e4691bf495814401?email_source=notifications\u0026email_token=AFTOJK2BESHOC6GKOU27HRDQLJFDZA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TCNJYGI3TGOA",
"url": "https://github.com/quicwg/base-drafts/pull/3045/files/c2c7abb67e8dc7ba6e41d124e3ea85338ae2ab21..c1eeb6e354fe569fb2d8d624e4691bf495814401?email_source=notifications\u0026email_token=AFTOJK2BESHOC6GKOU27HRDQLJFDZA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TCNJYGI3TGOA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8a52bcf2c28_18953fdc070cd96046814b--


From nobody Tue Sep 24 10:32: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 0DFF512085D for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 10:32: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 5CQq-7R0NdMF for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 10:32:35 -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 90C6D12084B for <quic-issues@ietf.org>; Tue, 24 Sep 2019 10:32:35 -0700 (PDT)
Date: Tue, 24 Sep 2019 10:32:34 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569346355; bh=+HZRZumOy+ErnIKJ2JkvBz8fgWtK7wUxRvnlvsbKYv4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ORpRB9J/AiKmv3otEv7BhJSeyiV02MGAG0fZkeDlBzLLzpZzoLR3hUK3J7QEgQPZ1 KXhHQjR1cQssrGxZQB80ycA5QqV58ggpeUUmlJyOULokouP6eJYWWq7sDIG2zWV6ky OX4z/JRlBb7biLyhoZcRyAsTvDmna8U+bW4ZPIcE=
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/3045/push/4071590512@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a5332b2d9c_165b3ff263ccd9643557ae"; 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/MoTz9_oMBr89XCpkTZBs3DuVrmE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 17:32:37 -0000

----==_mimepart_5d8a5332b2d9c_165b3ff263ccd9643557ae
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi pushed 1 commit.

0a2645f4754df3d63a32e85e9bef9f4f3aed1278  Another MT review comment


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3045/files/c1eeb6e354fe569fb2d8d624e4691bf495814401..0a2645f4754df3d63a32e85e9bef9f4f3aed1278

----==_mimepart_5d8a5332b2d9c_165b3ff263ccd9643557ae
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/0a2645f4754df3d63a32e85e9bef9f4f3aed1278">0a2645f</a>  Another MT review 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/3045/files/c1eeb6e354fe569fb2d8d624e4691bf495814401..0a2645f4754df3d63a32e85e9bef9f4f3aed1278?email_source=notifications&amp;email_token=AFTOJK2KD557N4B76N3EVV3QLJFLFA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TCNJZGA2TCMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYQHGE3BFFZWXRLRQDQLJFLFANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK77PEC4K6UINM3RRCTQLJFLFA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TCNJZGA2TCMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045/files/c1eeb6e354fe569fb2d8d624e4691bf495814401..0a2645f4754df3d63a32e85e9bef9f4f3aed1278?email_source=notifications\u0026email_token=AFTOJK2KD557N4B76N3EVV3QLJFLFA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TCNJZGA2TCMQ",
"url": "https://github.com/quicwg/base-drafts/pull/3045/files/c1eeb6e354fe569fb2d8d624e4691bf495814401..0a2645f4754df3d63a32e85e9bef9f4f3aed1278?email_source=notifications\u0026email_token=AFTOJK2KD557N4B76N3EVV3QLJFLFA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TCNJZGA2TCMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8a5332b2d9c_165b3ff263ccd9643557ae--


From nobody Tue Sep 24 10: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 A36BE120864 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 10:35:36 -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 Oo-H_sGuy_47 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 10:35:34 -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 7DFE11208D0 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 10:35:30 -0700 (PDT)
Date: Tue, 24 Sep 2019 10:35:29 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569346529; bh=1MdKV83IXiop/obXk+UGe4JLy0EyIEoiMvtz+7q/+Rs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dmhrsE3Tz5yzVi7jd1j4dZEODsqP0xKruV4a1jG6AunoatXwEfvK1tEZz+YTCNZFD KN+csyUEYX0OqQoE2Z8MD6EEOQcTNeCK/JbLpXFkU/JvUEe2PARHKO4uwD1UwwQkvJ F6wgTIcG0R959D4dqypCe+QrDmwkx6IzHMTWuafw=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYI7G4MAZO43MDEJM53S6KHDEVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/review/292590645@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a53e1b3d57_43a83fae934cd96c3596c6"; 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/sfgfVmgAXUXH92ojM6S27n7ee_I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 17:35:37 -0000

----==_mimepart_5d8a53e1b3d57_43a83fae934cd96c3596c6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

DavidSchinazi commented on this pull request.



> -cryptographic handshake message, which for TLS is the ClientHello.  Though a
-packet larger than 1200 bytes might be supported by the path, a client improves
-the likelihood that a packet is accepted if it ensures that the first
-ClientHello message is small enough to stay within this limit.
+The first Initial packet from a client starts with its first cryptographic
+handshake message, which for TLS is the ClientHello.  Servers might need to
+parse the entire ClientHello (e.g., to access extensions such as Server Name
+Identification (SNI) or Application Layer Protocol Negotiation (ALPN)) in order
+to decide whether to accept the new incoming QUIC connection.  If the
+ClientHello spans multiple Initial packets, such servers would need to buffer
+the first received fragments, which could consume excessive resources if the
+client's address has not yet been validated.  To avoid this, servers MAY use
+the Retry feature (see Section 8.1 of {{QUIC-TRANSPORT}}) to only buffer
+partial ClientHellos from clients with a validated address.  Though a packet
+larger than 1200 bytes might be supported by the path, a client improves the
+likelihood that a packet is accepted if it ensures that the first ClientHello

Given that servers are encouraged to send Retry packets to clients with multiple-packet ClientHellos, this change doesn't make dribble worse, an attacker can send a single-packet ClientHello then start its SlowLoris without 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/3045#discussion_r327744308
----==_mimepart_5d8a53e1b3d57_43a83fae934cd96c3596c6
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/3045#discussion_r327744308">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; -cryptographic handshake message, which for TLS is the ClientHello.  Though a
-packet larger than 1200 bytes might be supported by the path, a client improves
-the likelihood that a packet is accepted if it ensures that the first
-ClientHello message is small enough to stay within this limit.
+The first Initial packet from a client starts with its first cryptographic
+handshake message, which for TLS is the ClientHello.  Servers might need to
+parse the entire ClientHello (e.g., to access extensions such as Server Name
+Identification (SNI) or Application Layer Protocol Negotiation (ALPN)) in order
+to decide whether to accept the new incoming QUIC connection.  If the
+ClientHello spans multiple Initial packets, such servers would need to buffer
+the first received fragments, which could consume excessive resources if the
+client&#39;s address has not yet been validated.  To avoid this, servers MAY use
+the Retry feature (see Section 8.1 of {{QUIC-TRANSPORT}}) to only buffer
+partial ClientHellos from clients with a validated address.  Though a packet
+larger than 1200 bytes might be supported by the path, a client improves the
+likelihood that a packet is accepted if it ensures that the first ClientHello
</pre>
<p>Given that servers are encouraged to send Retry packets to clients with multiple-packet ClientHellos, this change doesn't make dribble worse, an attacker can send a single-packet ClientHello then start its SlowLoris without 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/3045?email_source=notifications&amp;email_token=AFTOJKYERFKADOYRESTYGYLQLJFWDA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFYJINI#discussion_r327744308">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2MHIM65COFW4WODWDQLJFWDANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ3HEPU5B7NHCC5DSTQLJFWDA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFYJINI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJKYERFKADOYRESTYGYLQLJFWDA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFYJINI#discussion_r327744308",
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJKYERFKADOYRESTYGYLQLJFWDA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFYJINI#discussion_r327744308",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8a53e1b3d57_43a83fae934cd96c3596c6--


From nobody Tue Sep 24 10:37: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 8B8B11208D3 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 10:37:24 -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 d6FtgIWaGtgr for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 10:37: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 2F1501208CE for <quic-issues@ietf.org>; Tue, 24 Sep 2019 10:37:23 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 856CF8C1DAE for <quic-issues@ietf.org>; Tue, 24 Sep 2019 10:37:22 -0700 (PDT)
Date: Tue, 24 Sep 2019 10:37:22 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3OKXRO4VCPRIUYZLN3S6KOFEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/534666888@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a545276346_3783f904fccd96c7526c"; 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/HmrQZfRDQJxt6jplAcxLhxtEP0g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 17:37:25 -0000

----==_mimepart_5d8a545276346_3783f904fccd96c7526c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

So far our design has been to take the processing costs in favor of making the protocol more reliable. Given that hardware will need to support sending encrypted Initial packets, I don't see the added cost on Retry as a blocking 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/3014#issuecomment-534666888
----==_mimepart_5d8a545276346_3783f904fccd96c7526c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>So far our design has been to take the processing costs in favor of making the protocol more reliable. Given that hardware will need to support sending encrypted Initial packets, I don't see the added cost on Retry as a blocking 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/3014?email_source=notifications&amp;email_token=AFTOJKZAOEKL2XUULTJNS4LQLJF5FA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PF5CA#issuecomment-534666888">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6CCN2GC7B5RCHOBLDQLJF5FANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYFMCFEIOS3YNKSW6TQLJF5FA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PF5CA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJKZAOEKL2XUULTJNS4LQLJF5FA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PF5CA#issuecomment-534666888",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJKZAOEKL2XUULTJNS4LQLJF5FA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PF5CA#issuecomment-534666888",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8a545276346_3783f904fccd96c7526c--


From nobody Tue Sep 24 10: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 836811208AF for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 10:40:32 -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 t_kbZyvxWrKB for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 10:40: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 D208912087F for <quic-issues@ietf.org>; Tue, 24 Sep 2019 10:40:29 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 3117C6604F7 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 10:40:29 -0700 (PDT)
Date: Tue, 24 Sep 2019 10:40:29 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7V3HYEXUGPMDED3FV3S6KZ3EVBNHHB2WTA7U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3020/534668230@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3020@github.com>
References: <quicwg/base-drafts/issues/3020@github.com>
Subject: Re: [quicwg/base-drafts] Transport parameter registry is too constraining for innovation (#3020)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a550d22d7a_54d63fc6b66cd95c486d9"; 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/lxS0LpZwSz2SWITutRdDdn0miew>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 17:40:33 -0000

----==_mimepart_5d8a550d22d7a_54d63fc6b66cd95c486d9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think so, yes. If we're changing implementations might as well make both changes at once (assuming no one wants one of them to be varint but not the other).

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3020#issuecomment-534668230
----==_mimepart_5d8a550d22d7a_54d63fc6b66cd95c486d9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I think so, yes. If we're changing implementations might as well make both changes at once (assuming no one wants one of them to be varint but not the other).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications&amp;email_token=AFTOJK5H6X4XNISCUQK3MZTQLJGI3A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PGHRQ#issuecomment-534668230">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7XEVGO3DYSBS4XIV3QLJGI3ANCNFSM4IVYZAZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7R5W5EXWZ6V6W7XSDQLJGI3A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PGHRQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJK5H6X4XNISCUQK3MZTQLJGI3A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PGHRQ#issuecomment-534668230",
"url": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJK5H6X4XNISCUQK3MZTQLJGI3A5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PGHRQ#issuecomment-534668230",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8a550d22d7a_54d63fc6b66cd95c486d9--


From nobody Tue Sep 24 10:41: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 589551208EE for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 10:41:56 -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 GpcAkAgtMvwQ for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 10:41: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 718F91208ED for <quic-issues@ietf.org>; Tue, 24 Sep 2019 10:41:47 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id C7E588C0E5E for <quic-issues@ietf.org>; Tue, 24 Sep 2019 10:41:46 -0700 (PDT)
Date: Tue, 24 Sep 2019 10:41:46 -0700
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZBCXSEUJ47NHQEXZ53S6K6VEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/534668841@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a555ab9b13_58bb3fe750ccd9641255bb"; 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/sTUNQgQj5fjEPI-rB8SrvA0VByc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 17:41:56 -0000

----==_mimepart_5d8a555ab9b13_58bb3fe750ccd9641255bb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The HW I am referring to are standalone devices which only do the following:

1. Validate incoming Initial packets (primarily the Token field).
2. If valid, allow the packet through. If invalid, drop the packet and reply with a Retry packet.

No encryption or decryption of packets is necessary.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-534668841
----==_mimepart_5d8a555ab9b13_58bb3fe750ccd9641255bb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The HW I am referring to are standalone devices which only do the following:</p>
<ol>
<li>Validate incoming Initial packets (primarily the Token field).</li>
<li>If valid, allow the packet through. If invalid, drop the packet and reply with a Retry packet.</li>
</ol>
<p>No encryption or decryption of packets is necessary.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJK73Q66T6H6MDJNCVY3QLJGNVA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PGMKI#issuecomment-534668841">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7FGHYMBPD7MC63Q63QLJGNVANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK72AXVKFW6KZMYP5X3QLJGNVA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PGMKI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK73Q66T6H6MDJNCVY3QLJGNVA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PGMKI#issuecomment-534668841",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK73Q66T6H6MDJNCVY3QLJGNVA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PGMKI#issuecomment-534668841",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8a555ab9b13_58bb3fe750ccd9641255bb--


From nobody Tue Sep 24 11:11: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 DB0BC1208A6 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 11:11:36 -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 ejyyn0To_usk for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 11:11: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 32627120874 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 11:11:34 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 7782A66049B for <quic-issues@ietf.org>; Tue, 24 Sep 2019 11:11:33 -0700 (PDT)
Date: Tue, 24 Sep 2019 11:11:33 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7TB4FZTZDQNPS3ANN3S6OOLEVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/review/292612676@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a5c5569435_5e2e3fd0a70cd96c2386c6"; 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/86R2ckffBVUVD5H5TvSLzCCkX8c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 18:11:37 -0000

----==_mimepart_5d8a5c5569435_5e2e3fd0a70cd96c2386c6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mikkelfj commented on this pull request.



> -cryptographic handshake message, which for TLS is the ClientHello.  Though a
-packet larger than 1200 bytes might be supported by the path, a client improves
-the likelihood that a packet is accepted if it ensures that the first
-ClientHello message is small enough to stay within this limit.
+The first Initial packet from a client starts with its first cryptographic
+handshake message, which for TLS is the ClientHello.  Servers might need to
+parse the entire ClientHello (e.g., to access extensions such as Server Name
+Identification (SNI) or Application Layer Protocol Negotiation (ALPN)) in order
+to decide whether to accept the new incoming QUIC connection.  If the
+ClientHello spans multiple Initial packets, such servers would need to buffer
+the first received fragments, which could consume excessive resources if the
+client's address has not yet been validated.  To avoid this, servers MAY use
+the Retry feature (see Section 8.1 of {{QUIC-TRANSPORT}}) to only buffer
+partial ClientHellos from clients with a validated address.  Though a packet
+larger than 1200 bytes might be supported by the path, a client improves the
+likelihood that a packet is accepted if it ensures that the first ClientHello

You don't need to commit as much memory after that 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/pull/3045#discussion_r327761253
----==_mimepart_5d8a5c5569435_5e2e3fd0a70cd96c2386c6
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/3045#discussion_r327761253">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; -cryptographic handshake message, which for TLS is the ClientHello.  Though a
-packet larger than 1200 bytes might be supported by the path, a client improves
-the likelihood that a packet is accepted if it ensures that the first
-ClientHello message is small enough to stay within this limit.
+The first Initial packet from a client starts with its first cryptographic
+handshake message, which for TLS is the ClientHello.  Servers might need to
+parse the entire ClientHello (e.g., to access extensions such as Server Name
+Identification (SNI) or Application Layer Protocol Negotiation (ALPN)) in order
+to decide whether to accept the new incoming QUIC connection.  If the
+ClientHello spans multiple Initial packets, such servers would need to buffer
+the first received fragments, which could consume excessive resources if the
+client&#39;s address has not yet been validated.  To avoid this, servers MAY use
+the Retry feature (see Section 8.1 of {{QUIC-TRANSPORT}}) to only buffer
+partial ClientHellos from clients with a validated address.  Though a packet
+larger than 1200 bytes might be supported by the path, a client improves the
+likelihood that a packet is accepted if it ensures that the first ClientHello
</pre>
<p>You don't need to commit as much memory after that 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/pull/3045?email_source=notifications&amp;email_token=AFTOJK52JYONI3OMVXSH2OLQLJJ5LA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFYOURA#discussion_r327761253">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYWWCOZYOKWADW3CWLQLJJ5LANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2KA22NDFOQ4MIMMFDQLJJ5LA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFYOURA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK52JYONI3OMVXSH2OLQLJJ5LA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFYOURA#discussion_r327761253",
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK52JYONI3OMVXSH2OLQLJJ5LA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFYOURA#discussion_r327761253",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8a5c5569435_5e2e3fd0a70cd96c2386c6--


From nobody Tue Sep 24 11: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 3C0BF1208BF for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 11:34: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 EicAZU3fePPg for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 11:34:32 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E6B221208A6 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 11:34:31 -0700 (PDT)
Date: Tue, 24 Sep 2019 11:34:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569350070; bh=vyZ3osDolM/TFYVfkegT/bm3y4jd4fmHoutOUd+HwfI=; h=Date:From:To:Subject:From; b=osWpIe7dei2iZ58k4Hx0pj9MIgL0U3TobCGO2d+RhfEv9ZKb1RBW76fWUdvF6eG+F e0UGqVOwsPmaaRk0M75yBqq2+pR07xKs23t535q/qdFULYbit96Y00GnTp41bcdB4q N1jlzFmZ/7innuxb8P5NbbvEOwPYfZ9w5N4H80Ug=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-must-retransmit/df8c4f-023687@github.com>
Subject: [quicwg/base-drafts] 023687: 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/HLs51ySp1HxIq3ZnkJHp6TGllhY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 18:34:33 -0000

  Branch: refs/heads/ianswett-must-retransmit
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0236874f3a51eb4166b9070a21f1acd8dae432b1
      https://github.com/quicwg/base-drafts/commit/0236874f3a51eb4166b9070a21f1acd8dae432b1
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-24 (Tue, 24 Sep 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Tue Sep 24 11:34: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 058B81208BF for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 11:34: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 QQzmgbopeE00 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 11:34: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 A8B381208A6 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 11:34:39 -0700 (PDT)
Date: Tue, 24 Sep 2019 11:34:38 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569350078; bh=6mfrIQPF66n1mH2C63b5X+vXr87OasEYbwPitOkO9q8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OfPEH+MTxyN5xG/LoCKKG5ggJUiGhht0FlJBjCEhPnUh0N9S9djahx3tUadWw0TP6 ogdf67jB7x7gbn2lVcnkb/S/nxJfKfkWAhwVAvJ2AevyOJ51huoIeaK7BjqJNKaS1k drTyJJSA7jSb+QSKmbpY/7z9oW3oVHrPLsqJO3gA=
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/3057/push/4071834323@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a61be9ac22_187a3fc15fecd960403a3"; 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/fi88rZ2pVf5Y9oa9TtbR7CGWa84>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 18:34:41 -0000

----==_mimepart_5d8a61be9ac22_187a3fc15fecd960403a3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

0236874f3a51eb4166b9070a21f1acd8dae432b1  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/3057/files/df8c4feb8412cdc5060f427eb3e64672db56e0db..0236874f3a51eb4166b9070a21f1acd8dae432b1

----==_mimepart_5d8a61be9ac22_187a3fc15fecd960403a3
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/0236874f3a51eb4166b9070a21f1acd8dae432b1">0236874</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/3057/files/df8c4feb8412cdc5060f427eb3e64672db56e0db..0236874f3a51eb4166b9070a21f1acd8dae432b1?email_source=notifications&amp;email_token=AFTOJK4F6NROQTUJOPZKTNLQLJMT5A5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAMZTHAZTGMCQOVZWQIZUGA3TCOBTGQZTEMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4OH3BKXN74VVD7EQDQLJMT5ANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4YN2KSEG44UAHIGPLQLJMT5A5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAMZTHAZTGMCQOVZWQIZUGA3TCOBTGQZTEMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057/files/df8c4feb8412cdc5060f427eb3e64672db56e0db..0236874f3a51eb4166b9070a21f1acd8dae432b1?email_source=notifications\u0026email_token=AFTOJK4F6NROQTUJOPZKTNLQLJMT5A5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAMZTHAZTGMCQOVZWQIZUGA3TCOBTGQZTEMY",
"url": "https://github.com/quicwg/base-drafts/pull/3057/files/df8c4feb8412cdc5060f427eb3e64672db56e0db..0236874f3a51eb4166b9070a21f1acd8dae432b1?email_source=notifications\u0026email_token=AFTOJK4F6NROQTUJOPZKTNLQLJMT5A5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAMZTHAZTGMCQOVZWQIZUGA3TCOBTGQZTEMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8a61be9ac22_187a3fc15fecd960403a3--


From nobody Tue Sep 24 11:35: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 432DC1208A6 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 11:35:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 cUxy2FYMGUMR for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 11:35: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 0D0251208BF for <quic-issues@ietf.org>; Tue, 24 Sep 2019 11:35:11 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 66506C61233 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 11:35:10 -0700 (PDT)
Date: Tue, 24 Sep 2019 11:35:10 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/3addc3-1da586@github.com>
Subject: [quicwg/base-drafts] 1da586: Script updating gh-pages from 0236874f. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/sTRjri5PDNE66Eda2CwUF4W83PM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 18:35:12 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1da586eae591949c817b1b50562c20cb069827e1
      https://github.com/quicwg/base-drafts/commit/1da586eae591949c817b1b50562c20cb069827e1
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-24 (Tue, 24 Sep 2019)

  Changed paths:
    M ianswett-must-retransmit/draft-ietf-quic-recovery.html
    M ianswett-must-retransmit/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 0236874f. [ci skip]



From nobody Tue Sep 24 11:35: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 B5D271208F7 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 11:35:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 kx5xDQWSAidu for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 11:35: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 DA63A1208BF for <quic-issues@ietf.org>; Tue, 24 Sep 2019 11:35:12 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 3A141960724 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 11:35:12 -0700 (PDT)
Date: Tue, 24 Sep 2019 11:35:12 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK27OBULBAUXTFTCJWV3S6RHBEVBNHHB3IPO4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057/review/292626541@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a61e02b2ba_35543fa6534cd96419137f"; 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/b1DxHra-xvllbDvmWPwK8gEAFw4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 18:35:16 -0000

----==_mimepart_5d8a61e02b2ba_35543fa6534cd96419137f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.



> @@ -496,10 +496,8 @@ be considered an RTT sample.
 
 Until the server has validated the client's address on the path, the amount of
 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.
+If no data can be sent, then the PTO alarm MUST NOT be armed until data has
+been received from the client.

It's path validation or receiving enough data.  I updated the paragraph, PTAL.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3057#discussion_r327771954
----==_mimepart_5d8a61e02b2ba_35543fa6534cd96419137f
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/3057#discussion_r327771954">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -496,10 +496,8 @@ be considered an RTT sample.
 
 Until the server has validated the client&#39;s address on the path, the amount of
 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.
+If no data can be sent, then the PTO alarm MUST NOT be armed until data has
+been received from the client.
</pre>
<p>It's path validation or receiving enough data.  I updated the paragraph, PTAL.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications&amp;email_token=AFTOJK2QSLGOVG6X3FLA4W3QLJMWBA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFYSA3I#discussion_r327771954">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZH5AQ5OWWAOTOC2O3QLJMWBANCNFSM4IZL6QHQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK77DIAUJ5PWSYM2NZLQLJMWBA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFYSA3I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK2QSLGOVG6X3FLA4W3QLJMWBA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFYSA3I#discussion_r327771954",
"url": "https://github.com/quicwg/base-drafts/pull/3057?email_source=notifications\u0026email_token=AFTOJK2QSLGOVG6X3FLA4W3QLJMWBA5CNFSM4IZL6QH2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFYSA3I#discussion_r327771954",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8a61e02b2ba_35543fa6534cd96419137f--


From nobody Tue Sep 24 12:26: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 661C41208BF for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 12:26:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.204
X-Spam-Level: 
X-Spam-Status: No, score=-6.204 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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, 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 A5N4MzCei27t for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 12:26:28 -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 D85A91208F1 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 12:26:28 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id DDD0B6E0031 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 12:26:27 -0700 (PDT)
Date: Tue, 24 Sep 2019 12:26:27 -0700
From: gitup10 <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3WLALOVFK27GZWBTV3S6QGHEVBNHHB3LILA4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3065@github.com>
Subject: [quicwg/base-drafts] Help me fix this problem  (#3065)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a6de3ce3a1_6a43f88390cd9642421c5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gitup10
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CdP0txQ6CNRcmsw722DQKdwRg2E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 19:26:31 -0000

----==_mimepart_5d8a6de3ce3a1_6a43f88390cd9642421c5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


Help please to fix
 sh: 1: cannot create /: Is a directory 
![Screenshot_20190924-211922_Termux](https://user-images.githubusercontent.com/55763670/65543410-66952800-df11-11e9-9a88-1b499efd54b6.jpg)


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3065
----==_mimepart_5d8a6de3ce3a1_6a43f88390cd9642421c5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Help please to fix<br>
sh: 1: cannot create /: Is a directory<br>
<a target="_blank" rel="noopener noreferrer" href="https://user-images.githubusercontent.com/55763670/65543410-66952800-df11-11e9-9a88-1b499efd54b6.jpg"><img src="https://user-images.githubusercontent.com/55763670/65543410-66952800-df11-11e9-9a88-1b499efd54b6.jpg" alt="Screenshot_20190924-211922_Termux" 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/3065?email_source=notifications&amp;email_token=AFTOJK62HRJAP3BZHV2RSQ3QLJSWHA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNNBMDQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4UZKE56SDUIUYHKDLQLJSWHANCNFSM4I2D3ILQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5TCC3A4PAYLOQ7IDDQLJSWHA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNNBMDQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3065?email_source=notifications\u0026email_token=AFTOJK62HRJAP3BZHV2RSQ3QLJSWHA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNNBMDQ",
"url": "https://github.com/quicwg/base-drafts/issues/3065?email_source=notifications\u0026email_token=AFTOJK62HRJAP3BZHV2RSQ3QLJSWHA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNNBMDQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8a6de3ce3a1_6a43f88390cd9642421c5--


From nobody Tue Sep 24 13:06: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 70CC0120110 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 13:06:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.934
X-Spam-Level: 
X-Spam-Status: No, score=-6.934 tagged_above=-999 required=5 tests=[BAYES_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.026, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Ae-RJMNIo61Y for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 13:06:24 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 024BD120071 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 13:06:23 -0700 (PDT)
Date: Tue, 24 Sep 2019 13:06:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569355583; bh=KkERxzCZ+LSubZ4VBmLwkuqjozqhBJT+sRhVrqvbyMo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Q2s8gYbCvaM9jEUazTlfhbPVWihzy29sffUFq+w/WBNfoYrRudGXcl05UBzx4uMGb IuoN1v01oKxP2P1azQaZ7WEZB9ZecNpJXWGw3KCWQsrBizDfSjfiyB6AtTFwSRQuzM 8enjhoLI6nmWfGjshETUpZHwzzZaU9LLCsNzHKQo=
From: gitup10 <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK644FSKPRZVKFAMTCF3S6U37EVBNHHB3LILA4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3065/534725900@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3065@github.com>
References: <quicwg/base-drafts/issues/3065@github.com>
Subject: Re: [quicwg/base-drafts] Help me fix this problem  (#3065)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a773f1f875_11df3f9aec4cd96899bf"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gitup10
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_re-rFJdcAZHmDAHV2PelWCYi0M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 20:06:26 -0000

----==_mimepart_5d8a773f1f875_11df3f9aec4cd96899bf
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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/3065#issuecomment-534725900
----==_mimepart_5d8a773f1f875_11df3f9aec4cd96899bf
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>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/3065?email_source=notifications&amp;email_token=AFTOJK375GPM2H4FBJ5XKULQLJXL7A5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PUKDA#issuecomment-534725900">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3DKV7NGPJGGQ2L23TQLJXL7ANCNFSM4I2D3ILQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6IEZWGHSSUOSFFW2TQLJXL7A5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PUKDA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3065?email_source=notifications\u0026email_token=AFTOJK375GPM2H4FBJ5XKULQLJXL7A5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PUKDA#issuecomment-534725900",
"url": "https://github.com/quicwg/base-drafts/issues/3065?email_source=notifications\u0026email_token=AFTOJK375GPM2H4FBJ5XKULQLJXL7A5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PUKDA#issuecomment-534725900",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8a773f1f875_11df3f9aec4cd96899bf--


From nobody Tue Sep 24 13: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 D584C1200DB for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 13:41:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.807
X-Spam-Level: 
X-Spam-Status: No, score=-6.807 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id h4YFDCVW-TJk for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 13:41: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 62493120058 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 13:41:07 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id 97CF7660447 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 13:41:06 -0700 (PDT)
Date: Tue, 24 Sep 2019 13:41:06 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5CDYKVHPEMU2DSZTN3S677FEVBNHHB3LILA4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3065/534738912@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3065@github.com>
References: <quicwg/base-drafts/issues/3065@github.com>
Subject: Re: [quicwg/base-drafts] Help me fix this problem  (#3065)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a7f628912b_2ce43fd1942cd96864182"; 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/KgLX9baGYHnnuOBeP3pBykn7ja4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 20:41:09 -0000

----==_mimepart_5d8a7f628912b_2ce43fd1942cd96864182
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

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/3065#issuecomment-534738912
----==_mimepart_5d8a7f628912b_2ce43fd1942cd96864182
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>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/3065?email_source=notifications&amp;email_token=AFTOJKY62FVSDZPJVTI327LQLJ3OFA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PXPYA#issuecomment-534738912">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5RXZCCXXZFDIUMTTTQLJ3OFANCNFSM4I2D3ILQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK23FHDASQGYAFISAHDQLJ3OFA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PXPYA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3065?email_source=notifications\u0026email_token=AFTOJKY62FVSDZPJVTI327LQLJ3OFA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PXPYA#issuecomment-534738912",
"url": "https://github.com/quicwg/base-drafts/issues/3065?email_source=notifications\u0026email_token=AFTOJKY62FVSDZPJVTI327LQLJ3OFA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PXPYA#issuecomment-534738912",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8a7f628912b_2ce43fd1942cd96864182--


From nobody Tue Sep 24 13: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 AB7C0120058 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 13:41:09 -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 L1x7KZ-lt-LB for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 13:41:08 -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 436D9120071 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 13:41:08 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 6B2DBA1DB4 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 13:41:07 -0700 (PDT)
Date: Tue, 24 Sep 2019 13:41:07 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK77O6P5736ZSZTCJQ53S677HEVBNHHB3LILA4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3065/issue_event/2659477183@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3065@github.com>
References: <quicwg/base-drafts/issues/3065@github.com>
Subject: Re: [quicwg/base-drafts] Help me fix this problem  (#3065)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a7f635bfca_22143feb590cd9689363d"; 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/YQNofmGp3OPyozZBmppILqrQ8Tw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 20:41:10 -0000

----==_mimepart_5d8a7f635bfca_22143feb590cd9689363d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3065.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3065#event-2659477183
----==_mimepart_5d8a7f635bfca_22143feb590cd9689363d
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="497879815" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3065" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3065/hovercard" href="https://github.com/quicwg/base-drafts/issues/3065">#3065</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/3065?email_source=notifications&amp;email_token=AFTOJKYMQPLYE4QCTSEHRLDQLJ3OHA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOT2CGNPY#event-2659477183">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK24DIGSERLGALRIAYLQLJ3OHANCNFSM4I2D3ILQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYOQI5JRQZK572R4T3QLJ3OHA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOT2CGNPY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3065?email_source=notifications\u0026email_token=AFTOJKYMQPLYE4QCTSEHRLDQLJ3OHA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOT2CGNPY#event-2659477183",
"url": "https://github.com/quicwg/base-drafts/issues/3065?email_source=notifications\u0026email_token=AFTOJKYMQPLYE4QCTSEHRLDQLJ3OHA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOT2CGNPY#event-2659477183",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8a7f635bfca_22143feb590cd9689363d--


From nobody Tue Sep 24 14:05: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 B072C1200DB for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 14:05: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 vpT9mI7qI7Hg for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 14:05: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 1FE3D120071 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 14:05:16 -0700 (PDT)
Date: Tue, 24 Sep 2019 14:05:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569359115; bh=YDTMs/l3emdxNqPVjz2dZhV1N2tFzTbbgnHta70t+Dk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0QQfLmDcOwkooQYM5H38+xXipy3StbOiK4usAZXKser5FN0CpI8V/pa7ZX+C3XB03 v0nd8ut5yzJ8KXva2V+m7BPJxMHFy5VndYHD/5XFfgUVfllJc2qTPo1DoxMpM9HIJ7 FIgsEPjxMUnYvGa+6BMUABFg8YnswL6bvmHrxtYY=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5KE5ZQLCVO2JHP3IF3S63YXEVBNHHB2WTA7U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3020/534747795@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3020@github.com>
References: <quicwg/base-drafts/issues/3020@github.com>
Subject: Re: [quicwg/base-drafts] Transport parameter registry is too constraining for innovation (#3020)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a850b6a95_10813fcb070cd96c128745"; 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/7jmagkfT8od0hNfBiX6XtHXZFuA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 21:05:18 -0000

----==_mimepart_5d8a850b6a95_10813fcb070cd96c128745
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'd be opposed to changing the transport parameter lengths to varints, as that means departure from the TLS notation that we use for defining TPs. It's very different from changing the IDs to varints, which is just changing the type of a particular variable.

IIRC, we discussed if we should switch to a different notation, and decided to go with the TLS-based design. At least I have built (or maintained) code based on 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/3020#issuecomment-534747795
----==_mimepart_5d8a850b6a95_10813fcb070cd96c128745
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'd be opposed to changing the transport parameter lengths to varints, as that means departure from the TLS notation that we use for defining TPs. It's very different from changing the IDs to varints, which is just changing the type of a particular variable.</p>
<p>IIRC, we discussed if we should switch to a different notation, and decided to go with the TLS-based design. At least I have built (or maintained) code based on 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/3020?email_source=notifications&amp;email_token=AFTOJKZ2A5JSRZD4WJU5ICDQLJ6IXA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PZVEY#issuecomment-534747795">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZFVMG54IPZXCF4TBTQLJ6IXANCNFSM4IVYZAZQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3JEUZITP5PYBEZL4TQLJ6IXA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PZVEY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJKZ2A5JSRZD4WJU5ICDQLJ6IXA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PZVEY#issuecomment-534747795",
"url": "https://github.com/quicwg/base-drafts/issues/3020?email_source=notifications\u0026email_token=AFTOJKZ2A5JSRZD4WJU5ICDQLJ6IXA5CNFSM4IVYZAZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7PZVEY#issuecomment-534747795",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8a850b6a95_10813fcb070cd96c128745--


From nobody Tue Sep 24 14:14: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 7934712000F for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 14:14:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.807
X-Spam-Level: 
X-Spam-Status: No, score=-6.807 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id r5EdOq6OP8I8 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 14:14: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 05BEB120071 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 14:14:10 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 51249960588 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 14:14:09 -0700 (PDT)
Date: Tue, 24 Sep 2019 14:14:09 -0700
From: gitup10 <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYYOQOT7JYLVEN53GF3S642DEVBNHHB3LILA4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3065/534750934@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3065@github.com>
References: <quicwg/base-drafts/issues/3065@github.com>
Subject: Re: [quicwg/base-drafts] Help me fix this problem  (#3065)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a872142312_18453faf01ccd9642759d6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gitup10
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9Jq5xcWBVU2-xUhU8DWZ3t4l4Ec>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 21:14:12 -0000

----==_mimepart_5d8a872142312_18453faf01ccd9642759d6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

No . ? 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/issues/3065#issuecomment-534750934
----==_mimepart_5d8a872142312_18453faf01ccd9642759d6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>No . ? Why</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3065?email_source=notifications&amp;email_token=AFTOJK24B6TQPMNFQJTNYVDQLJ7KDA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7P2NVQ#issuecomment-534750934">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7WCIXK7OTQW6WCOWTQLJ7KDANCNFSM4I2D3ILQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4MX2TPMGRAFGR7D33QLJ7KDA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7P2NVQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3065?email_source=notifications\u0026email_token=AFTOJK24B6TQPMNFQJTNYVDQLJ7KDA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7P2NVQ#issuecomment-534750934",
"url": "https://github.com/quicwg/base-drafts/issues/3065?email_source=notifications\u0026email_token=AFTOJK24B6TQPMNFQJTNYVDQLJ7KDA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7P2NVQ#issuecomment-534750934",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8a872142312_18453faf01ccd9642759d6--


From nobody Tue Sep 24 14: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 0A84A1201C6 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 14:49:00 -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 ZLhuVeJGjy_t for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 14:48: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 55EC71200DB for <quic-issues@ietf.org>; Tue, 24 Sep 2019 14:48: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 7DDAA520548 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 14:48:57 -0700 (PDT)
Date: Tue, 24 Sep 2019 14:48:57 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-pto-per-pn-space/000000-f7f22f@github.com>
Subject: [quicwg/base-drafts] f7f22f: Change PTO to be per packet number space
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8HBd6_WSvgnPKfDIJTvXAColwME>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 21:49:00 -0000

  Branch: refs/heads/ianswett-pto-per-pn-space
  Home:   https://github.com/quicwg/base-drafts
  Commit: f7f22f901db17f280479153698a73a93f0fe9340
      https://github.com/quicwg/base-drafts/commit/f7f22f901db17f280479153698a73a93f0fe9340
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-24 (Tue, 24 Sep 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Change PTO to be per packet number space

Makes PTO consistent with loss detection, which is per packet number space.

Fixes #2863



From nobody Tue Sep 24 14:49: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 6030F1201C6 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 14:49:23 -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 gGx-PuMu2eJU for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 14:49: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 DC0AD1200DB for <quic-issues@ietf.org>; Tue, 24 Sep 2019 14:49:20 -0700 (PDT)
Date: Tue, 24 Sep 2019 14:49:20 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569361760; bh=CHqaKXbochRar3UetTD/mmkZSxp3bz5J1UmDm9f2W+o=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=0koFpGkPGw/c4TNyChsTCaTfY/KycC/DT0Pfvg9/CUkt8uFVPycDmtvb3I6VUGlui ltUL5EvwhLizu5Lhfk3u9JIBTBK0jsacyZ+pfarlBg6PFqdM8ONWyQ2+1eHvhik0S4 X7cUysXOt2o/70PqNRaYcFMIigPnkI3F9QNxZKd0=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYGC7B2UW4A4VG5CE53S7H7BEVBNHHB3LP3EA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3066@github.com>
Subject: [quicwg/base-drafts] Change PTO to be per packet number space (#3066)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a8f602ca85_63d23fb62eccd96c25755a"; 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/u6AA5fDvMRlwQmqgoNqvSXO6Swc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 21:49:24 -0000

----==_mimepart_5d8a8f602ca85_63d23fb62eccd96c25755a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Makes PTO consistent with loss detection, which is per packet number space.

Fixes #2863
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3066

-- Commit Summary --

  * Change PTO to be per packet number space

-- File Changes --

    M draft-ietf-quic-recovery.md (60)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3066.patch
https://github.com/quicwg/base-drafts/pull/3066.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/3066

----==_mimepart_5d8a8f602ca85_63d23fb62eccd96c25755a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Makes PTO consistent with loss detection, which is per packet number space.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #2863.">Fixes</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/3066'>https://github.com/quicwg/base-drafts/pull/3066</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Change PTO to be per packet number space</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3066/files#diff-0">draft-ietf-quic-recovery.md</a>
    (60)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3066.patch'>https://github.com/quicwg/base-drafts/pull/3066.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3066.diff'>https://github.com/quicwg/base-drafts/pull/3066.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/3066?email_source=notifications&amp;email_token=AFTOJK32FOKOSICE35WALFTQLKDOBA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNN7MQA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4Y4LFFA5OYKZPT4M3QLKDOBANCNFSM4I2FHCOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKY3XPVKUI4HYU6EISDQLKDOBA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNN7MQA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3066?email_source=notifications\u0026email_token=AFTOJK32FOKOSICE35WALFTQLKDOBA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNN7MQA",
"url": "https://github.com/quicwg/base-drafts/pull/3066?email_source=notifications\u0026email_token=AFTOJK32FOKOSICE35WALFTQLKDOBA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNN7MQA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8a8f602ca85_63d23fb62eccd96c25755a--


From nobody Tue Sep 24 15: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 C94971200F7 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:16:26 -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 yBUuJgtjABLC for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:16: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 10239120033 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 15:16:25 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id 4A837960504 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 15:16:24 -0700 (PDT)
Date: Tue, 24 Sep 2019 15:16:24 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK72IV3PKKUET7YS3NF3S7LEREVBNHHB3LP3EA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3066/review/292738485@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3066@github.com>
References: <quicwg/base-drafts/pull/3066@github.com>
Subject: Re: [quicwg/base-drafts] Change PTO to be per packet number space (#3066)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a95b83b5c8_2cd43f9ef4acd960693d"; 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/STTS-avMpb8Hp9W1yq57K54objc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 22:16:27 -0000

----==_mimepart_5d8a95b83b5c8_2cd43f9ef4acd960693d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

DavidSchinazi commented on this pull request.



> @@ -1135,8 +1150,9 @@ SetLossDetectionTimer():
       max_ack_delay
   timeout = timeout * (2 ^ pto_count)
 
-  loss_detection_timer.update(
-    time_of_last_sent_ack_eliciting_packet + timeout)
+  // Set the 

missing end of this 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/pull/3066#pullrequestreview-292738485
----==_mimepart_5d8a95b83b5c8_2cd43f9ef4acd960693d
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/3066#discussion_r327857695">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1135,8 +1150,9 @@ SetLossDetectionTimer():
       max_ack_delay
   timeout = timeout * (2 ^ pto_count)
 
-  loss_detection_timer.update(
-    time_of_last_sent_ack_eliciting_packet + timeout)
+  // Set the 
</pre>
<p>missing end of this 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/pull/3066?email_source=notifications&amp;email_token=AFTOJK6PMERIKQ3CJFOVO4TQLKGTRA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFZNLNI#pullrequestreview-292738485">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY5IQPVET5LJTHVBRLQLKGTRANCNFSM4I2FHCOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2VTIRGFYG67MWHRLTQLKGTRA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFZNLNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3066?email_source=notifications\u0026email_token=AFTOJK6PMERIKQ3CJFOVO4TQLKGTRA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFZNLNI#pullrequestreview-292738485",
"url": "https://github.com/quicwg/base-drafts/pull/3066?email_source=notifications\u0026email_token=AFTOJK6PMERIKQ3CJFOVO4TQLKGTRA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFZNLNI#pullrequestreview-292738485",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8a95b83b5c8_2cd43f9ef4acd960693d--


From nobody Tue Sep 24 15: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 5C09E1200F7 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:21:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.898
X-Spam-Level: 
X-Spam-Status: No, score=-6.898 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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
Received: 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-MnnbrcmO_c for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:21: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 D5CAA120033 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 15:21:06 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id F36201C0C2F for <quic-issues@ietf.org>; Tue, 24 Sep 2019 15:21:05 -0700 (PDT)
Date: Tue, 24 Sep 2019 15:21:05 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-pto-per-pn-space/f7f22f-c55104@github.com>
Subject: [quicwg/base-drafts] c55104: 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/X7DghJxu29Gsm9QZlJCqhdLlulU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 22:21:08 -0000

  Branch: refs/heads/ianswett-pto-per-pn-space
  Home:   https://github.com/quicwg/base-drafts
  Commit: c5510411b24a814f432e56a6d5d0d0434f1b7516
      https://github.com/quicwg/base-drafts/commit/c5510411b24a814f432e56a6d5d0d0434f1b7516
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-24 (Tue, 24 Sep 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Tue Sep 24 15:21: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 9619B12086B for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:21:12 -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, 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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Lc4oJVTNdUFT for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:21: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 AC27E12083B for <quic-issues@ietf.org>; Tue, 24 Sep 2019 15:21:10 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id BBA856E1451 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 15:21:09 -0700 (PDT)
Date: Tue, 24 Sep 2019 15:21:09 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5AA7H46RTPADUZPZF3S7LWLEVBNHHB3LILA4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3065/534771545@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3065@github.com>
References: <quicwg/base-drafts/issues/3065@github.com>
Subject: Re: [quicwg/base-drafts] Help me fix this problem  (#3065)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a96d5ad202_31843f9e71ecd96c80223"; 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/aXm1BylYtfrpr44beT0d2YZQU-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, 24 Sep 2019 22:21:13 -0000

----==_mimepart_5d8a96d5ad202_31843f9e71ecd96c80223
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

>From [CONTRIBUTING.md](https://github.com/quicwg/base-drafts/blob/master/CONTRIBUTING.md), emphasis added:
> Before filing a new issue, please consider a few things:
>
> - Issues should be just that; issues with our deliverables, not proposals, questions or support requests.
> - Please review the issues list to make sure that you aren't filing a duplicate.
> - If you're not sure how to phrase your issue, please ask on the mailing list.
>
> Issues can also be raised on the Working Group mailing list by clearly marking them as such (e.g., "New Issue" in the Subject: line).
>
> Be aware that issues might be rephrased, changed in scope, or combined with others, so that the group can focus its efforts. If you feel that such a change loses an important part of your original issue, please bring it up, either in comments or on the list.
>
> **Off-topic and duplicate issues will be closed without discussion.** Note that comments on individual commits will only be responded to with best effort, and may not be seen.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3065#issuecomment-534771545
----==_mimepart_5d8a96d5ad202_31843f9e71ecd96c80223
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>From <a href="https://github.com/quicwg/base-drafts/blob/master/CONTRIBUTING.md">CONTRIBUTING.md</a>, emphasis added:</p>
<blockquote>
<p>Before filing a new issue, please consider a few things:</p>
<ul>
<li>Issues should be just that; issues with our deliverables, not proposals, questions or support requests.</li>
<li>Please review the issues list to make sure that you aren't filing a duplicate.</li>
<li>If you're not sure how to phrase your issue, please ask on the mailing list.</li>
</ul>
<p>Issues can also be raised on the Working Group mailing list by clearly marking them as such (e.g., "New Issue" in the Subject: line).</p>
<p>Be aware that issues might be rephrased, changed in scope, or combined with others, so that the group can focus its efforts. If you feel that such a change loses an important part of your original issue, please bring it up, either in comments or on the list.</p>
<p><strong>Off-topic and duplicate issues will be closed without discussion.</strong> Note that comments on individual commits will only be responded to with best effort, and may not be seen.</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/3065?email_source=notifications&amp;email_token=AFTOJK47LIYMNSHFSU2SMH3QLKHFLA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7P7OWI#issuecomment-534771545">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4O4L3BBCJZ4IC2CVTQLKHFLANCNFSM4I2D3ILQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3SAAJNFCMY3TFYRWDQLKHFLA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7P7OWI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3065?email_source=notifications\u0026email_token=AFTOJK47LIYMNSHFSU2SMH3QLKHFLA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7P7OWI#issuecomment-534771545",
"url": "https://github.com/quicwg/base-drafts/issues/3065?email_source=notifications\u0026email_token=AFTOJK47LIYMNSHFSU2SMH3QLKHFLA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7P7OWI#issuecomment-534771545",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8a96d5ad202_31843f9e71ecd96c80223--


From nobody Tue Sep 24 15: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 B595312084B for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:21:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.28
X-Spam-Level: 
X-Spam-Status: No, score=-6.28 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, 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 3Z9nDl333lYF for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:21:15 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ED30F1200F7 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 15:21:14 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 18FACA11BF for <quic-issues@ietf.org>; Tue, 24 Sep 2019 15:21:14 -0700 (PDT)
Date: Tue, 24 Sep 2019 15:21:14 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3066/push/4072644865@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3066@github.com>
References: <quicwg/base-drafts/pull/3066@github.com>
Subject: Re: [quicwg/base-drafts] Change PTO to be per packet number space (#3066)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a96da929c_575d3f7ea5ecd96c163324"; 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/V6WQNi3aNHHXcaRWu0v-Q99-Vr4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 22:21:18 -0000

----==_mimepart_5d8a96da929c_575d3f7ea5ecd96c163324
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

c5510411b24a814f432e56a6d5d0d0434f1b7516  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/3066/files/f7f22f901db17f280479153698a73a93f0fe9340..c5510411b24a814f432e56a6d5d0d0434f1b7516

----==_mimepart_5d8a96da929c_575d3f7ea5ecd96c163324
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/c5510411b24a814f432e56a6d5d0d0434f1b7516">c551041</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/3066/files/f7f22f901db17f280479153698a73a93f0fe9340..c5510411b24a814f432e56a6d5d0d0434f1b7516?email_source=notifications&amp;email_token=AFTOJK2HULB3SXIADPWB7E3QLKHFVA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAOJXG4YTEMSQOVZWQIZUGA3TENRUGQ4DMNI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK24GYP7XSXZUCBR33DQLKHFVANCNFSM4I2FHCOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5PQ6LN25GT4WUA2XDQLKHFVA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAOJXG4YTEMSQOVZWQIZUGA3TENRUGQ4DMNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3066/files/f7f22f901db17f280479153698a73a93f0fe9340..c5510411b24a814f432e56a6d5d0d0434f1b7516?email_source=notifications\u0026email_token=AFTOJK2HULB3SXIADPWB7E3QLKHFVA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAOJXG4YTEMSQOVZWQIZUGA3TENRUGQ4DMNI",
"url": "https://github.com/quicwg/base-drafts/pull/3066/files/f7f22f901db17f280479153698a73a93f0fe9340..c5510411b24a814f432e56a6d5d0d0434f1b7516?email_source=notifications\u0026email_token=AFTOJK2HULB3SXIADPWB7E3QLKHFVA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAOJXG4YTEMSQOVZWQIZUGA3TENRUGQ4DMNI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8a96da929c_575d3f7ea5ecd96c163324--


From nobody Tue Sep 24 15: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 D03481200F7 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:24:09 -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 N1nihCaadX-M for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:24:08 -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 8274C120033 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 15:24:08 -0700 (PDT)
Date: Tue, 24 Sep 2019 15:24:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569363847; bh=vr2dZsrXPoCChnfZWCcntvBWl4qC7NqXmIBbRiRzVCY=; h=Date:From:To:Subject:From; b=rI+EAn4rGI2pK9cvD1ydUnN73P69uYSWjf5JvU5HJrp7GWYQdtdyOmaF1H6aGC/t/ N8LlaplPzUikHAV5MXJMWp2SqQP2IETfBacDes/YwDcSK0LQRaFi90AZ+khVSv14Rj /nvi9FovFEgcbDe0IFs/k7w9v7nBGku7aOmXFdzM=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-pto-per-pn-space/c55104-3abb83@github.com>
Subject: [quicwg/base-drafts] 3abb83: 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/LbrEpmBi0GgKoeIhoVJ1IW-symQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 22:24:10 -0000

  Branch: refs/heads/ianswett-pto-per-pn-space
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3abb83565f1fc9772614f118c5dccc212a45137d
      https://github.com/quicwg/base-drafts/commit/3abb83565f1fc9772614f118c5dccc212a45137d
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-24 (Tue, 24 Sep 2019)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Tue Sep 24 15: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 850B912083B for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:24:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.28
X-Spam-Level: 
X-Spam-Status: No, score=-6.28 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, 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 KqeWo7wd7-a3 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:24: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 142B51200F7 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 15:24:17 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 503AE520085 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 15:24:16 -0700 (PDT)
Date: Tue, 24 Sep 2019 15:24:16 -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/3066/push/4072653699@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3066@github.com>
References: <quicwg/base-drafts/pull/3066@github.com>
Subject: Re: [quicwg/base-drafts] Change PTO to be per packet number space (#3066)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a979041373_77593fc0214cd9681016b0"; 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/Z43rWtg27QeLD6Zf3c1fUZSF2v4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 22:24:19 -0000

----==_mimepart_5d8a979041373_77593fc0214cd9681016b0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

3abb83565f1fc9772614f118c5dccc212a45137d  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/3066/files/c5510411b24a814f432e56a6d5d0d0434f1b7516..3abb83565f1fc9772614f118c5dccc212a45137d

----==_mimepart_5d8a979041373_77593fc0214cd9681016b0
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/3abb83565f1fc9772614f118c5dccc212a45137d">3abb835</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/3066/files/c5510411b24a814f432e56a6d5d0d0434f1b7516..3abb83565f1fc9772614f118c5dccc212a45137d?email_source=notifications&amp;email_token=AFTOJKZFBR5WGWPV5AMQ6QLQLKHRBA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAOJXG4YTEMSQOVZWQIZUGA3TENRVGM3DSOI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6AUMVWI6MS5H4ABNTQLKHRBANCNFSM4I2FHCOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK24B773FY5ZZ2IUDMTQLKHRBA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAOJXG4YTEMSQOVZWQIZUGA3TENRVGM3DSOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3066/files/c5510411b24a814f432e56a6d5d0d0434f1b7516..3abb83565f1fc9772614f118c5dccc212a45137d?email_source=notifications\u0026email_token=AFTOJKZFBR5WGWPV5AMQ6QLQLKHRBA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAOJXG4YTEMSQOVZWQIZUGA3TENRVGM3DSOI",
"url": "https://github.com/quicwg/base-drafts/pull/3066/files/c5510411b24a814f432e56a6d5d0d0434f1b7516..3abb83565f1fc9772614f118c5dccc212a45137d?email_source=notifications\u0026email_token=AFTOJKZFBR5WGWPV5AMQ6QLQLKHRBA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDAOJXG4YTEMSQOVZWQIZUGA3TENRVGM3DSOI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8a979041373_77593fc0214cd9681016b0--


From nobody Tue Sep 24 15: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 271DE12083B for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15: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 n7AR104sC3h7 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:24:51 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 998D01200F7 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 15:24:51 -0700 (PDT)
Date: Tue, 24 Sep 2019 15:24:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569363890; bh=DJw60SDLwqiY9SaRIidr1ORXyLDTaK4QqE234IaBRxo=; h=Date:From:To:Subject:From; b=zd+HKzp2AJEkl8icOJmB1XOD1vxVb9WVRwc8UFloINLEpP6Powb6Sf53GMN4P6LW9 JVUHRu4cZ18RNuUd8f4xmcGzIM4oHRLPF3vCp1lRekUhEaNkdtARSPETj2t9rREnU3 WfTVa3LqmrHCzjUfz7Gz9HxU31dke9jIEIcVaWrs=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/1da586-beb5c9@github.com>
Subject: [quicwg/base-drafts] beb5c9: Script updating gh-pages from 3abb8356. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/W5Sm0-2SqBs5cEuPqWhtrX1dTvE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 22:24:53 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: beb5c96af77f33203b8b385700ecc6330efb30c4
      https://github.com/quicwg/base-drafts/commit/beb5c96af77f33203b8b385700ecc6330efb30c4
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-24 (Tue, 24 Sep 2019)

  Changed paths:
    A ianswett-pto-per-pn-space/draft-ietf-quic-http.html
    A ianswett-pto-per-pn-space/draft-ietf-quic-http.txt
    A ianswett-pto-per-pn-space/draft-ietf-quic-invariants.html
    A ianswett-pto-per-pn-space/draft-ietf-quic-invariants.txt
    A ianswett-pto-per-pn-space/draft-ietf-quic-qpack.html
    A ianswett-pto-per-pn-space/draft-ietf-quic-qpack.txt
    A ianswett-pto-per-pn-space/draft-ietf-quic-recovery.html
    A ianswett-pto-per-pn-space/draft-ietf-quic-recovery.txt
    A ianswett-pto-per-pn-space/draft-ietf-quic-tls.html
    A ianswett-pto-per-pn-space/draft-ietf-quic-tls.txt
    A ianswett-pto-per-pn-space/draft-ietf-quic-transport.html
    A ianswett-pto-per-pn-space/draft-ietf-quic-transport.txt
    A ianswett-pto-per-pn-space/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 3abb8356. [ci skip]



From nobody Tue Sep 24 15:34: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 A9F7E120845 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:34:35 -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 EH8zMZsGk0YB for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:34: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 429161200F7 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 15:34:33 -0700 (PDT)
Date: Tue, 24 Sep 2019 15:34:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569364472; bh=AvOh6y25G+kbPJCFv7kQMdhWB7/vLge4UyN/DvgNjZ0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hN8e7HRCQv7aVDAPXPdB2BFKWlOlVhVCUQj15uYK6L/SE1EiaDysvtX2dYdsQugr0 uTZmd5o6rhmBfRWKQMQd8bPg29ytK8M+k2Xe0gbPgLGoHkJ3SugwyyYtDRxk1k9o46 Quce0dHS812OcUSbHTvGohsVCrtaWNmLncw3cUcw=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5WVMTRKIMYPAAROF53S67GREVBNHHB3FVVWY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3055/review/292744200@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3055@github.com>
References: <quicwg/base-drafts/pull/3055@github.com>
Subject: Re: [quicwg/base-drafts] Remove 1 RTT delayed ack requirement (#3055)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a99f842307_46cc3fbc0cacd96c78713"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mKj7rL4_UZlAwxuIZprOmDqvd58>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 22:34:36 -0000

----==_mimepart_5d8a99f842307_46cc3fbc0cacd96c78713
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson approved this pull request.



> @@ -3009,11 +3009,16 @@ guidance offered below seeks to strike this balance.
 An ACK frame SHOULD be generated for at least every second ack-eliciting packet.
 This recommendation is in keeping with standard practice for TCP {{?RFC5681}}.
 
-A receiver's delayed acknowledgment timer SHOULD NOT exceed the current RTT
-estimate or the value it indicates in the `max_ack_delay` transport parameter.
-This ensures an acknowledgment is sent at least once per RTT when packets
-needing acknowledgement are received.  The sender can use the receiver's
-`max_ack_delay` value in determining timeouts for timer-based retransmission.
+An endpoint MUST NOT excessively delay acknowledgements of ack-eliciting
+packets.  An endpoint commits to a maximum delay using the max_ack_delay
+transport parameter; see {{transport-parameter-definitions}}.  max_ack_delay
+declares an explicit contract: an endpoint promises to never delay
+acknowledgments of an ack-eliciting packet by more than the indicated value. If
+it does, any excess accrues to the RTT estimate and could result in delayed
+retransmissions from the peer.  For Initial and Handshake packets, a
+max_ack_delay of 0 is used.  The sender uses the receiver's `max_ack_delay`
+value in determining timeouts for timer-based retransmission, as detailed
+in section 5.2.1 of {{QUIC-RECOVERY}}.

```suggestion
in Section 5.2.1 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/pull/3055#pullrequestreview-292744200
----==_mimepart_5d8a99f842307_46cc3fbc0cacd96c78713
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><b>@martinthomson</b> approved this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3055#discussi=
on_r327862375">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3009,11 +3009,16 @@ guidance offered b=
elow seeks to strike this balance.=0D
 An ACK frame SHOULD be generated for at least every second ack-eliciting=
 packet.=0D
 This recommendation is in keeping with standard practice for TCP {{?RFC5=
681}}.=0D
 =0D
-A receiver&#39;s delayed acknowledgment timer SHOULD NOT exceed the curr=
ent RTT=0D
-estimate or the value it indicates in the `max_ack_delay` transport para=
meter.=0D
-This ensures an acknowledgment is sent at least once per RTT when packet=
s=0D
-needing acknowledgement are received.  The sender can use the receiver&#=
39;s=0D
-`max_ack_delay` value in determining timeouts for timer-based retransmis=
sion.=0D
+An endpoint MUST NOT excessively delay acknowledgements of ack-eliciting=
=0D
+packets.  An endpoint commits to a maximum delay using the max_ack_delay=
=0D
+transport parameter; see {{transport-parameter-definitions}}.  max_ack_d=
elay=0D
+declares an explicit contract: an endpoint promises to never delay=0D
+acknowledgments of an ack-eliciting packet by more than the indicated va=
lue. If=0D
+it does, any excess accrues to the RTT estimate and could result in dela=
yed=0D
+retransmissions from the peer.  For Initial and Handshake packets, a=0D
+max_ack_delay of 0 is used.  The sender uses the receiver&#39;s `max_ack=
_delay`=0D
+value in determining timeouts for timer-based retransmission, as detaile=
d=0D
+in section 5.2.1 of {{QUIC-RECOVERY}}.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-in section 5.2.1 of {{QUIC-RECOVERY}}.=0D
+in Section 5.2.1 of {{QUIC-RECOVERY}}.=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/3055?email_source=3Dnotifications&amp;email_token=3DA=
FTOJKYXMYA4TWS2VQMFBXTQLKIXRA5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFZOYCA#pullrequestreview-292744200=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK7PB3K5V5NEDL5RYGLQLKIXRANCNFSM4IYYNZOQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK7HW7IJ=
UTD2REKPMSTQLKIXRA5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCFZOYCA.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/3055?email_source=3D=
notifications\u0026email_token=3DAFTOJKYXMYA4TWS2VQMFBXTQLKIXRA5CNFSM4IYY=
NZO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
FZOYCA#pullrequestreview-292744200",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3055?email_source=3Dno=
tifications\u0026email_token=3DAFTOJKYXMYA4TWS2VQMFBXTQLKIXRA5CNFSM4IYYNZ=
O2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFZ=
OYCA#pullrequestreview-292744200",=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_5d8a99f842307_46cc3fbc0cacd96c78713--


From nobody Tue Sep 24 15:34: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 C6FFB1200F7 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:34:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.898
X-Spam-Level: 
X-Spam-Status: No, score=-6.898 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 44nNuA0D2o3g for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:34: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 5A040120033 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 15:34:47 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 80001960724 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 15:34:46 -0700 (PDT)
Date: Tue, 24 Sep 2019 15:34:46 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-no-1RTT-ack-delay/ace2a5-114d98@github.com>
Subject: [quicwg/base-drafts] 114d98: 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/pmDGZgdMaY4OVim8g0AWZL4Kruw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 22:34:49 -0000

  Branch: refs/heads/ianswett-no-1RTT-ack-delay
  Home:   https://github.com/quicwg/base-drafts
  Commit: 114d984feb3244348dc8ad773a2db3a1df246338
      https://github.com/quicwg/base-drafts/commit/114d984feb3244348dc8ad773a2db3a1df246338
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-24 (Tue, 24 Sep 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 Sep 24 15:34: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 DE9EB1200F7 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:34:56 -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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.026, 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 BlPVKZHWrYDM for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:34: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 785EA120033 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 15:34:55 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id AE881C61926 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 15:34:54 -0700 (PDT)
Date: Tue, 24 Sep 2019 15:34:54 -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/3055/push/4072682512@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3055@github.com>
References: <quicwg/base-drafts/pull/3055@github.com>
Subject: Re: [quicwg/base-drafts] Remove 1 RTT delayed ack requirement (#3055)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8a9a0e9e163_578f3fe88b8cd968128479"; 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/XdU4MAhr8jTETK5IBh7rTHHv1V0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 22:34:57 -0000

----==_mimepart_5d8a9a0e9e163_578f3fe88b8cd968128479
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

114d984feb3244348dc8ad773a2db3a1df246338  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/3055/files/ace2a505a3f8f96c2758458ec523047afe8db92e..114d984feb3244348dc8ad773a2db3a1df246338

----==_mimepart_5d8a9a0e9e163_578f3fe88b8cd968128479
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/114d984feb3244348dc8ad773a2db3a1df246338">114d984</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/3055/files/ace2a505a3f8f96c2758458ec523047afe8db92e..114d984feb3244348dc8ad773a2db3a1df246338?email_source=notifications&amp;email_token=AFTOJKZEP67SUICSSQ36XBLQLKIY5A5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNZXGM3TSOKQOVZWQIZUGA3TENRYGI2TCMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ3FOX6VYWOWV7LPELQLKIY5ANCNFSM4IYYNZOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2LGTIOEMDRKDLED5DQLKIY5A5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNZXGM3TSOKQOVZWQIZUGA3TENRYGI2TCMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3055/files/ace2a505a3f8f96c2758458ec523047afe8db92e..114d984feb3244348dc8ad773a2db3a1df246338?email_source=notifications\u0026email_token=AFTOJKZEP67SUICSSQ36XBLQLKIY5A5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNZXGM3TSOKQOVZWQIZUGA3TENRYGI2TCMQ",
"url": "https://github.com/quicwg/base-drafts/pull/3055/files/ace2a505a3f8f96c2758458ec523047afe8db92e..114d984feb3244348dc8ad773a2db3a1df246338?email_source=notifications\u0026email_token=AFTOJKZEP67SUICSSQ36XBLQLKIY5A5CNFSM4IYYNZO2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTSNZXGM3TSOKQOVZWQIZUGA3TENRYGI2TCMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8a9a0e9e163_578f3fe88b8cd968128479--


From nobody Tue Sep 24 15:35: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 2B02F1200F7 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:35:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 fUODa_S2S-Xy for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 15:35:28 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1D435120033 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 15:35:28 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 7DD646E1230 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 15:35:27 -0700 (PDT)
Date: Tue, 24 Sep 2019 15:35:27 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/beb5c9-72b665@github.com>
Subject: [quicwg/base-drafts] 72b665: Script updating gh-pages from 114d984f. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QjxY5X7lGOQS-9O6IkBQzAbBiKo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 22:35:30 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 72b6650247bb1c42a3ce5c4282638eb5f6ec16da
      https://github.com/quicwg/base-drafts/commit/72b6650247bb1c42a3ce5c4282638eb5f6ec16da
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-24 (Tue, 24 Sep 2019)

  Changed paths:
    M ianswett-no-1RTT-ack-delay/draft-ietf-quic-http.html
    M ianswett-no-1RTT-ack-delay/draft-ietf-quic-http.txt
    M ianswett-no-1RTT-ack-delay/draft-ietf-quic-invariants.html
    M ianswett-no-1RTT-ack-delay/draft-ietf-quic-invariants.txt
    M ianswett-no-1RTT-ack-delay/draft-ietf-quic-qpack.html
    M ianswett-no-1RTT-ack-delay/draft-ietf-quic-qpack.txt
    M ianswett-no-1RTT-ack-delay/draft-ietf-quic-recovery.html
    M ianswett-no-1RTT-ack-delay/draft-ietf-quic-recovery.txt
    M ianswett-no-1RTT-ack-delay/draft-ietf-quic-tls.html
    M ianswett-no-1RTT-ack-delay/draft-ietf-quic-tls.txt
    M ianswett-no-1RTT-ack-delay/draft-ietf-quic-transport.html
    M ianswett-no-1RTT-ack-delay/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 114d984f. [ci skip]



From nobody Tue Sep 24 16:06: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 EFF831201AA for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 16:06:44 -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 9zq-QdR3-NbN for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 16:06: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 14163120033 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 16:06:43 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 050388C0842 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 16:06:42 -0700 (PDT)
Date: Tue, 24 Sep 2019 16:06:41 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK65O3UF2RLUHAAESZF3S7RBDEVBNHHB3LSYRI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3067@github.com>
Subject: [quicwg/base-drafts] 0RTT or 0.5RTT data extends the PTO before handshake completion (#3067)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8aa181e9413_69773fa0132cd95c75162"; 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/o-GzKBsqJmNDg7IqMlRobRxVAts>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 23:06:45 -0000

----==_mimepart_5d8aa181e9413_69773fa0132cd95c75162
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

In the recovery draft, when anything is sent in any packet number space, the PTO is extended.  

For example, if there is a long delay between a server sending Initial and Handshake, then that would delay retransmitting the Initial.

A larger problem may be the delay between Initial and 0.5RTT data on the server side or Initial and 0RTT data on the client side.

In both cases, prior to handshake completion, the application may write data at anytime, subject to congestion control limits and availability of ApplicationData keys.  In pathological cases(ie: an application sending tiny 'keep-alive' like pings) the Initial of the client or server may never be retransmitted until after the connection runs out of CWND, which is likely longer than the handshake timeout.

This problem was observed in gQUIC and we added an extra field to track the last sent packet containing crypto data and before the handshake was complete, armed the handshake timer from that.

The most straightforward fix to this I'm aware of is #3066, which makes PTO per PN space.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3067
----==_mimepart_5d8aa181e9413_69773fa0132cd95c75162
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>In the recovery draft, when anything is sent in any packet number space, the PTO is extended.</p>
<p>For example, if there is a long delay between a server sending Initial and Handshake, then that would delay retransmitting the Initial.</p>
<p>A larger problem may be the delay between Initial and 0.5RTT data on the server side or Initial and 0RTT data on the client side.</p>
<p>In both cases, prior to handshake completion, the application may write data at anytime, subject to congestion control limits and availability of ApplicationData keys.  In pathological cases(ie: an application sending tiny 'keep-alive' like pings) the Initial of the client or server may never be retransmitted until after the connection runs out of CWND, which is likely longer than the handshake timeout.</p>
<p>This problem was observed in gQUIC and we added an extra field to track the last sent packet containing crypto data and before the handshake was complete, armed the handshake timer from that.</p>
<p>The most straightforward fix to this I'm aware of is <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="497941280" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3066" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3066/hovercard" href="https://github.com/quicwg/base-drafts/pull/3066">#3066</a>, which makes PTO per PN space.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3067?email_source=notifications&amp;email_token=AFTOJKZKBWOFE3PUUAJ2FXTQLKMQDA5CNFSM4I2FYUT2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNOLCFA">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYKG3OZ7NC3EV6K35LQLKMQDANCNFSM4I2FYUTQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3T6RX7NH2EBC2X7CDQLKMQDA5CNFSM4I2FYUT2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNOLCFA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3067?email_source=notifications\u0026email_token=AFTOJKZKBWOFE3PUUAJ2FXTQLKMQDA5CNFSM4I2FYUT2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNOLCFA",
"url": "https://github.com/quicwg/base-drafts/issues/3067?email_source=notifications\u0026email_token=AFTOJKZKBWOFE3PUUAJ2FXTQLKMQDA5CNFSM4I2FYUT2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNOLCFA",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8aa181e9413_69773fa0132cd95c75162--


From nobody Tue Sep 24 16:34: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 44E4F1201AA for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 16:34: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 bGWRFWPYcDdC for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 16:34: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 845DB120033 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 16:34:40 -0700 (PDT)
Date: Tue, 24 Sep 2019 16:34:39 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569368079; bh=x2+xSrWaRPEea7Ok02qHZVKCqgQEdb7wGtR6q7uPeMA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WXnOTA7I+e6XcTMRgLSg6DhqEqwUOhGChb9/z4MZljX+PZeya5FOZESvoCxcleATu eWvlVfZ4ed81nllF3v+AgpXxdz6qDFX4CZYmDRaZmtJ5gWC7GtQPEERFquZok+7Hrm S7Rhb5ApksQzXp9b4MOLEwtBaNjQ9+k679Rbyq0Q=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY6CIOT24IJUVP33JV3S7GH7EVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/534788013@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8aa80fa499d_9b53faa8fecd9602544d9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ICnEQbSn2MKnfxriEQVjUsDeQ0U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 23:34:42 -0000

----==_mimepart_5d8aa80fa499d_9b53faa8fecd9602544d9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Is there crypto involved in constructing a Retry token that 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/issues/3014#issuecomment-534788013
----==_mimepart_5d8aa80fa499d_9b53faa8fecd9602544d9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Is there crypto involved in constructing a Retry token that 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/issues/3014?email_source=notifications&amp;email_token=AFTOJKZNUNHZ7WJRYDUDOBTQLKPY7A5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QDPLI#issuecomment-534788013">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK27HCSK2TF3OFYU7J3QLKPY7ANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5MWQWPEO6H5PXPKQ3QLKPY7A5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QDPLI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJKZNUNHZ7WJRYDUDOBTQLKPY7A5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QDPLI#issuecomment-534788013",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJKZNUNHZ7WJRYDUDOBTQLKPY7A5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QDPLI#issuecomment-534788013",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8aa80fa499d_9b53faa8fecd9602544d9--


From nobody Tue Sep 24 16:39: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 39EBA1201AA for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 16:39:20 -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 M5kN9AGUa1Tx for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 16:39: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 41F85120033 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 16:39:18 -0700 (PDT)
Date: Tue, 24 Sep 2019 16:39:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569368357; bh=v7XqzvTcjKtNuCqIpEalvgvKOJT/phOi/bwsakhsW1Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uXLtMEyTktlevqhFLRE6RB6itJR4hJR2+mHghskOza+75PPSGhAR1vDWb7ao/nobM d+Eg+SbIYuyqZyftcZpGOkldJSQcp/GuA+Vs+Z/+QaPxjfoBRLxnhU34tiMmOzsEbi O3wwAYKqHn4LxEuYAbhdNoCKNvdA1+DBZqMZ/pyo=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7MXDMDR7QMVQRCW5V3S7GZLEVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/review/292763064@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8aa9252cbb9_143e3f98dd0cd9643938f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_mmmnq6zCGUH0XwkdZLvVzluJzE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 23:39:20 -0000

----==_mimepart_5d8aa9252cbb9_143e3f98dd0cd9643938f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson approved this pull request.

Some residual singular/plural disagreements.

>  
-Note that if the server sends a HelloRetryRequest, the client will send a second
+Note that if the server sends a HelloRetryRequest, the client will send another
 Initial packet.  This Initial packet will continue the cryptographic handshake

```suggestion
series of Initial packets.  These Initial packets will continue the cryptographic handshake
```

>  
-Note that if the server sends a HelloRetryRequest, the client will send a second
+Note that if the server sends a HelloRetryRequest, the client will send another
 Initial packet.  This Initial packet will continue the cryptographic handshake
 and will contain a CRYPTO frame with an offset matching the size of the CRYPTO

```suggestion
and will contain CRYPTO frames starting at an offset matching the size of the CRYPTO
```

>  Initial packet.  This Initial packet will continue the cryptographic handshake
 and will contain a CRYPTO frame with an offset matching the size of the CRYPTO
-frame sent in the first Initial packet.  Cryptographic handshake messages
-subsequent to the first do not need to fit within a single UDP datagram.
+frame sent in the first Initial packet.

```suggestion
frames sent in the first flight of 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/pull/3045#pullrequestreview-292763064
----==_mimepart_5d8aa9252cbb9_143e3f98dd0cd9643938f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><b>@martinthomson</b> approved this pull request.</p>=0D
=0D
<p>Some residual singular/plural disagreements.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3045#discussi=
on_r327878063">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
-Note that if the server sends a HelloRetryRequest, the client will send =
a second=0D
+Note that if the server sends a HelloRetryRequest, the client will send =
another=0D
 Initial packet.  This Initial packet will continue the cryptographic han=
dshake=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">- Initial packet.  This Initial packet will co=
ntinue the cryptographic handshake=0D
+series of Initial packets.  These Initial packets will continue the cryp=
tographic handshake=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3045#discussi=
on_r327878140">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
-Note that if the server sends a HelloRetryRequest, the client will send =
a second=0D
+Note that if the server sends a HelloRetryRequest, the client will send =
another=0D
 Initial packet.  This Initial packet will continue the cryptographic han=
dshake=0D
 and will contain a CRYPTO frame with an offset matching the size of the =
CRYPTO=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">- and will contain a CRYPTO frame with an offs=
et matching the size of the CRYPTO=0D
+and will contain CRYPTO frames starting at an offset matching the size o=
f the CRYPTO=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3045#discussi=
on_r327878187">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  Initial packet.  This Initial packet will=
 continue the cryptographic handshake=0D
 and will contain a CRYPTO frame with an offset matching the size of the =
CRYPTO=0D
-frame sent in the first Initial packet.  Cryptographic handshake message=
s=0D
-subsequent to the first do not need to fit within a single UDP datagram.=
=0D
+frame sent in the first Initial packet.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-frame sent in the first Initial packet.=0D
+frames sent in the first flight of Initial packets.=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3045?email_source=3Dnotifications&amp;email_token=3DA=
FTOJKZ3PJWF373JH3USGNLQLKQKLA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFZTLOA#pullrequestreview-292763064=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK4UKJ24R2Y4VJULRHLQLKQKLANCNFSM4IXMS4DA">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK5FG7KL=
6CE36QLTIA3QLKQKLA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCFZTLOA.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/3045?email_source=3D=
notifications\u0026email_token=3DAFTOJKZ3PJWF373JH3USGNLQLKQKLA5CNFSM4IXM=
S4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
FZTLOA#pullrequestreview-292763064",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=3Dno=
tifications\u0026email_token=3DAFTOJKZ3PJWF373JH3USGNLQLKQKLA5CNFSM4IXMS4=
DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFZ=
TLOA#pullrequestreview-292763064",=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_5d8aa9252cbb9_143e3f98dd0cd9643938f--


From nobody Tue Sep 24 16:40: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 6589D120044 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 16:40: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 am-F30eBtp3o for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 16:40:43 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1E49F120033 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 16:40:43 -0700 (PDT)
Date: Tue, 24 Sep 2019 16:40:42 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569368442; bh=8RJZXP5/j3jH2UKFeN4QrFP/3KNcMtpJwwHnF7oz7eg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=o8S6M3AqUNg1U59pxh7MzJ2lcWvYkWP7Ao4wjtOsxOL29ka/2KuoNfI9iN4EetAIP U5U8gBVnvGmR6LzQnZ42eDYqV2iqar4kE1/p28b1c2gjBJv94zHtpC9VQeYJC/8QZd sPtzisW6UM6qD+if0ro49B5iDwNW9r1Ni0ZOg5PI=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZTRY3B3R3NP3SMQK53S7VAVEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/534789310@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8aa97acbb4_3a773fb63bacd95c1571c8"; 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/5euPPY2zLAb-JVenLY4OgK_MnYI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 23:40:45 -0000

----==_mimepart_5d8aa97acbb4_3a773fb63bacd95c1571c8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Two options exist:

1. Stateless - use crypto.
2. Stateful - generate random token and save in a cache.

I'm not sure which will be used in the final design. Even if we use crypto for the token, any addtional crypto for the packet is at least twice the CPU required to encrypt the token; halving the packets per second.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-534789310
----==_mimepart_5d8aa97acbb4_3a773fb63bacd95c1571c8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Two options exist:</p>
<ol>
<li>Stateless - use crypto.</li>
<li>Stateful - generate random token and save in a cache.</li>
</ol>
<p>I'm not sure which will be used in the final design. Even if we use crypto for the token, any addtional crypto for the packet is at least twice the CPU required to encrypt the token; halving the packets per second.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJKZANJ3XLBMGQXTO32DQLKQPVA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QDZPQ#issuecomment-534789310">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7QHUEUIWZWI3BDGSTQLKQPVANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYOGQVWRNOZID43USTQLKQPVA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QDZPQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJKZANJ3XLBMGQXTO32DQLKQPVA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QDZPQ#issuecomment-534789310",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJKZANJ3XLBMGQXTO32DQLKQPVA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QDZPQ#issuecomment-534789310",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8aa97acbb4_3a773fb63bacd95c1571c8--


From nobody Tue Sep 24 16:58: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 459F9120131 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 16:58:51 -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 BLPVzsvrUFZQ for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 16:58: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 6AB3F120033 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 16:58:48 -0700 (PDT)
Date: Tue, 24 Sep 2019 16:58:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569369527; bh=M52EnQX/hDJJCdWLzfOUcXXAjRlDBYhoOTy2GMnIfhw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cWi66mbe0FpRduXhn02UVJndOUnWoBDSdFia0nEc0kpvxWZdw6g4UU/1gKT1pogHj GkAwJXFG9aeEqBAhTAJk7mxiX0drsvoZR25gP4H/QWiUFgNCgmEKlF5DHVTrKkCqJS wV7WirJt7RW7Q+SFQnUg+eo5T8JUP8vmbOLwogBo=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYOMKSAPVK54JUQKQ53S7JCPEVBNHHB3LP3EA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3066/review/292766008@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3066@github.com>
References: <quicwg/base-drafts/pull/3066@github.com>
Subject: Re: [quicwg/base-drafts] Change PTO to be per packet number space (#3066)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8aadb7603b8_4b673fdd436cd968209695"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/uRkDa1GurvtIRqeb-GHHbNqzrNY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 24 Sep 2019 23:58:51 -0000

----==_mimepart_5d8aadb7603b8_4b673fdd436cd968209695
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.

I think that if we're going to use this in resolving the key discard thing, then we'll need stronger support for the advice about sending in multiple spaces.

> @@ -438,11 +438,13 @@ and larger thresholds increase loss detection delay.
 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 acknowledgements. 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
-F-RTO algorithms for TCP {{?RFC5682}}, and the timeout computation is based on
-TCP's retransmission timeout period {{?RFC6298}}.
+recover from loss of tail packets or acknowledgements.  As with loss
+detection, the probe timeout is per packet number space.
+
+The PTO algorithm used in QUIC implements the reliability functions of
+Tail Loss Probe {{?TLP=I-D.dukkipati-tcpm-tcp-loss-probe}} {{?RACK}},

Is `{{?RACK}}` another citation for Tail Loss Probe?

> @@ -438,11 +438,13 @@ and larger thresholds increase loss detection delay.
 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 acknowledgements. 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
-F-RTO algorithms for TCP {{?RFC5682}}, and the timeout computation is based on
-TCP's retransmission timeout period {{?RFC6298}}.
+recover from loss of tail packets or acknowledgements.  As with loss
+detection, the probe timeout is per packet number space.
+
+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 F-RTO algorithms for TCP {{?RFC5682}}, and the timeout

The commas here are odd.  I think that you could start a new sentence here:

```suggestion
RTO {{?RFC5681}}, and F-RTO  {{?RFC5682}} algorithms for TCP.  The timeout
```

Yeah, this is old text, but it's really confusing still.

> @@ -496,9 +500,7 @@ be considered an RTT sample.
 
 Until the server has validated the client's address on the path, the amount of
 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
+If no data can be sent, then the PTO alarm MUST NOT be armed until

```suggestion
If no data can be sent, then the PTO alarm MUST NOT be armed for the corresponding packet number space until
```

> @@ -522,9 +524,14 @@ removed from bytes in flight when the Initial and Handshake keys are discarded.
 ### Sending Probe Packets
 
 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 full-sized datagrams containing ack-eliciting packets, to avoid an
-expensive consecutive PTO expiration due to a single lost datagram.
+in the packet number space as a probe, unless there is no data available to
+send.  An endpoint MAY send up to two full-sized datagrams containing
+ack-eliciting packets, to avoid an expensive consecutive PTO expiration due

I think that we can drop the "containing ack-eliciting packets" here, it's redundant with the first sentence.

> @@ -522,9 +524,14 @@ removed from bytes in flight when the Initial and Handshake keys are discarded.
 ### Sending Probe Packets
 
 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 full-sized datagrams containing ack-eliciting packets, to avoid an
-expensive consecutive PTO expiration due to a single lost datagram.
+in the packet number space as a probe, unless there is no data available to
+send.  An endpoint MAY send up to two full-sized datagrams containing
+ack-eliciting packets, to avoid an expensive consecutive PTO expiration due
+to a single lost datagram.
+
+In addition to sending data in the packet number space for which the timer
+expired, the sender SHOULD coalesce ack-eliciting packets from all other packet
+number spaces with inflight data if sending coalesced packets is supported.

This is important, so I think that it needs more support.  Questions that arise are: What happens if I don't do this?  Under what conditions would it be fine not to send in both spaces?

> @@ -933,7 +940,7 @@ loss_detection_timer:
 pto_count:
 : The number of times a PTO has been sent without receiving an ack.
 
-time_of_last_sent_ack_eliciting_packet:
+time_of_last_sent_ack_eliciting_packet[kPacketNumberSpace]:

```suggestion
time_of_last_sent_ack_eliciting_packet\[kPacketNumberSpace]:
```

> @@ -1096,12 +1103,20 @@ Pseudocode for SetLossDetectionTimer follows:
 // Returns the earliest loss_time and the packet number
 // space it's from.  Returns 0 if all times are 0.
 GetEarliestLossTime():
-  time = loss_time[Initial]
+  return GetEarliestTimeAndSpace(loss_time)
+
+// Returns the earliest time_of_last_sent_ack_eliciting_packet
+// and the packet number space it's from.
+GetEarliestAckElicitingTime():
+  return GetEarliestTimeAndSpace(loss_time)

You have two identical functions here that don't seem to do anything other than indirect over the global.  I don't get 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/3066#pullrequestreview-292766008
----==_mimepart_5d8aadb7603b8_4b673fdd436cd968209695
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 think that if we're going to use this in resolving the key discard t=
hing, then we'll need stronger support for the advice about sending in mu=
ltiple spaces.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3066#discussi=
on_r327880586">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -438,11 +438,13 @@ and larger threshold=
s increase loss detection delay.=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 acknowledgements. The PTO algorithm=
 used=0D
-in QUIC implements the reliability functions of Tail Loss Probe=0D
-{{?TLP=3DI-D.dukkipati-tcpm-tcp-loss-probe}} {{?RACK}}, RTO {{?RFC5681}}=
 and=0D
-F-RTO algorithms for TCP {{?RFC5682}}, and the timeout computation is ba=
sed on=0D
-TCP&#39;s retransmission timeout period {{?RFC6298}}.=0D
+recover from loss of tail packets or acknowledgements.  As with loss=0D
+detection, the probe timeout is per packet number space.=0D
+=0D
+The PTO algorithm used in QUIC implements the reliability functions of=0D=

+Tail Loss Probe {{?TLP=3DI-D.dukkipati-tcpm-tcp-loss-probe}} {{?RACK}},=0D=

</pre>=0D
<p>Is <code>{{?RACK}}</code> another citation for Tail Loss Probe?</p>=0D=

=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3066#discussi=
on_r327881006">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -438,11 +438,13 @@ and larger threshold=
s increase loss detection delay.=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 acknowledgements. The PTO algorithm=
 used=0D
-in QUIC implements the reliability functions of Tail Loss Probe=0D
-{{?TLP=3DI-D.dukkipati-tcpm-tcp-loss-probe}} {{?RACK}}, RTO {{?RFC5681}}=
 and=0D
-F-RTO algorithms for TCP {{?RFC5682}}, and the timeout computation is ba=
sed on=0D
-TCP&#39;s retransmission timeout period {{?RFC6298}}.=0D
+recover from loss of tail packets or acknowledgements.  As with loss=0D
+detection, the probe timeout is per packet number space.=0D
+=0D
+The PTO algorithm used in QUIC implements the reliability functions of=0D=

+Tail Loss Probe {{?TLP=3DI-D.dukkipati-tcpm-tcp-loss-probe}} {{?RACK}},=0D=

+RTO {{?RFC5681}} and F-RTO algorithms for TCP {{?RFC5682}}, and the time=
out=0D
</pre>=0D
<p>The commas here are odd.  I think that you could start a new sentence =
here:</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-RTO {{?RFC5681}} and F-RTO algorithms for TCP=
 {{?RFC5682}}, and the timeout=0D
+RTO {{?RFC5681}}, and F-RTO  {{?RFC5682}} algorithms for TCP.  The timeo=
ut=0D
</pre>=0D
=0D
<p>Yeah, this is old text, but it's really confusing still.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3066#discussi=
on_r327881193">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -496,9 +500,7 @@ be considered an RTT s=
ample.=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
-Data at Initial encryption MUST be retransmitted before Handshake data a=
nd=0D
-data at Handshake encryption MUST be retransmitted before any Applicatio=
nData=0D
-data.  If no data can be sent, then the PTO alarm MUST NOT be armed unti=
l=0D
+If no data can be sent, then the PTO alarm MUST NOT be armed until=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-If no data can be sent, then the PTO alarm MU=
ST NOT be armed until=0D
+If no data can be sent, then the PTO alarm MUST NOT be armed for the cor=
responding packet number space until=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3066#discussi=
on_r327881375">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -522,9 +524,14 @@ removed from bytes in=
 flight when the Initial and Handshake keys are discarded.=0D
 ### Sending Probe Packets=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 full-sized datagrams containing ack-eliciting packets, to avoid a=
n=0D
-expensive consecutive PTO expiration due to a single lost datagram.=0D
+in the packet number space as a probe, unless there is no data available=
 to=0D
+send.  An endpoint MAY send up to two full-sized datagrams containing=0D=

+ack-eliciting packets, to avoid an expensive consecutive PTO expiration =
due=0D
</pre>=0D
<p>I think that we can drop the "containing ack-eliciting packets" here, =
it's redundant with the first sentence.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3066#discussi=
on_r327881747">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -522,9 +524,14 @@ removed from bytes in=
 flight when the Initial and Handshake keys are discarded.=0D
 ### Sending Probe Packets=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 full-sized datagrams containing ack-eliciting packets, to avoid a=
n=0D
-expensive consecutive PTO expiration due to a single lost datagram.=0D
+in the packet number space as a probe, unless there is no data available=
 to=0D
+send.  An endpoint MAY send up to two full-sized datagrams containing=0D=

+ack-eliciting packets, to avoid an expensive consecutive PTO expiration =
due=0D
+to a single lost datagram.=0D
+=0D
+In addition to sending data in the packet number space for which the tim=
er=0D
+expired, the sender SHOULD coalesce ack-eliciting packets from all other=
 packet=0D
+number spaces with inflight data if sending coalesced packets is support=
ed.=0D
</pre>=0D
<p>This is important, so I think that it needs more support.  Questions t=
hat arise are: What happens if I don't do this?  Under what conditions wo=
uld it be fine not to send in both spaces?</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3066#discussi=
on_r327881968">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -933,7 +940,7 @@ loss_detection_timer:=0D=

 pto_count:=0D
 : The number of times a PTO has been sent without receiving an ack.=0D
 =0D
-time_of_last_sent_ack_eliciting_packet:=0D
+time_of_last_sent_ack_eliciting_packet[kPacketNumberSpace]:=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-time_of_last_sent_ack_eliciting_packet[kPacke=
tNumberSpace]:=0D
+time_of_last_sent_ack_eliciting_packet\[kPacketNumberSpace]:=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3066#discussi=
on_r327882364">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1096,12 +1103,20 @@ Pseudocode for Set=
LossDetectionTimer follows:=0D
 // Returns the earliest loss_time and the packet number=0D
 // space it&#39;s from.  Returns 0 if all times are 0.=0D
 GetEarliestLossTime():=0D
-  time =3D loss_time[Initial]=0D
+  return GetEarliestTimeAndSpace(loss_time)=0D
+=0D
+// Returns the earliest time_of_last_sent_ack_eliciting_packet=0D
+// and the packet number space it&#39;s from.=0D
+GetEarliestAckElicitingTime():=0D
+  return GetEarliestTimeAndSpace(loss_time)=0D
</pre>=0D
<p>You have two identical functions here that don't seem to do anything o=
ther than indirect over the global.  I don't get this change.</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/3066?email_source=3Dnotifications&amp;email_token=3DA=
FTOJKZFKHETFC4VPPS4Y5LQLKSTPA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFZUCOA#pullrequestreview-292766008=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK3JG5R2VSDX6SOXFM3QLKSTPANCNFSM4I2FHCOQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJKYGQIZS=
MMTWSO6MWE3QLKSTPA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCFZUCOA.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/3066?email_source=3D=
notifications\u0026email_token=3DAFTOJKZFKHETFC4VPPS4Y5LQLKSTPA5CNFSM4I2F=
HCO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
FZUCOA#pullrequestreview-292766008",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3066?email_source=3Dno=
tifications\u0026email_token=3DAFTOJKZFKHETFC4VPPS4Y5LQLKSTPA5CNFSM4I2FHC=
O2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFZ=
UCOA#pullrequestreview-292766008",=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_5d8aadb7603b8_4b673fdd436cd968209695--


From nobody Tue Sep 24 17:15: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 2EB3E12084D for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 17:15:53 -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 lLN5KW6sIA0e for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 17:15: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 89A24120090 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 17:15:51 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id B088B96050A for <quic-issues@ietf.org>; Tue, 24 Sep 2019 17:15:50 -0700 (PDT)
Date: Tue, 24 Sep 2019 17:15:50 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/push/4072917843@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8ab1b6a164d_49a63fd3d60cd96c66314"; 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/JhjWWMj4SzvLRaHdm5jlcP06ubA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 00:15:53 -0000

----==_mimepart_5d8ab1b6a164d_49a63fd3d60cd96c66314
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi pushed 1 commit.

c2d175f315c819e57cdfd59d7544c6cdef56721c  MT suggestions


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3045/files/0a2645f4754df3d63a32e85e9bef9f4f3aed1278..c2d175f315c819e57cdfd59d7544c6cdef56721c

----==_mimepart_5d8ab1b6a164d_49a63fd3d60cd96c66314
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/c2d175f315c819e57cdfd59d7544c6cdef56721c">c2d175f</a>  MT 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/3045/files/0a2645f4754df3d63a32e85e9bef9f4f3aed1278..c2d175f315c819e57cdfd59d7544c6cdef56721c?email_source=notifications&amp;email_token=AFTOJKYW7ENHWNYKAGOG3D3QLKUTNA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TEOJRG44DIMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6FDFI2P2MHX7RVL3TQLKUTNANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6ORRPK57I5F3DGH6TQLKUTNA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TEOJRG44DIMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045/files/0a2645f4754df3d63a32e85e9bef9f4f3aed1278..c2d175f315c819e57cdfd59d7544c6cdef56721c?email_source=notifications\u0026email_token=AFTOJKYW7ENHWNYKAGOG3D3QLKUTNA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TEOJRG44DIMY",
"url": "https://github.com/quicwg/base-drafts/pull/3045/files/0a2645f4754df3d63a32e85e9bef9f4f3aed1278..c2d175f315c819e57cdfd59d7544c6cdef56721c?email_source=notifications\u0026email_token=AFTOJKYW7ENHWNYKAGOG3D3QLKUTNA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TEOJRG44DIMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8ab1b6a164d_49a63fd3d60cd96c66314--


From nobody Tue Sep 24 17: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 29574120090 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 17:20: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 cq50GsVE91wi for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 17:20:15 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 97AF7120033 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 17:20:15 -0700 (PDT)
Date: Tue, 24 Sep 2019 17:20:14 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569370814; bh=O39E4xRRLFrt9vJH69TJTzbPGmB7ea6yh0n31Eirzmo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=fdJ7N6u+PO7QPggIMB2o4ynYlRGu454UQzGKzv4qUHr/G84IL3sUG9p4Gw99mV9PI 1kzy46VDok5k8nJip16ahZnt0CWedCVzwSeu2H9mQ1s3o72fXo3XwGCvgVVJQLygrn QnV88KMJDPAen272ZJfNZwwqUJ8eFghyT57g71bg=
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/3045/push/4072927382@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8ab2beab190_30793fe6d8ecd96c436a9"; 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/LMO3vHXuApN7t2iaDRyVpK9XZiQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 00:20:17 -0000

----==_mimepart_5d8ab2beab190_30793fe6d8ecd96c436a9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi pushed 1 commit.

da7b436e37cc2a23712c6c0ae40488592e7e33c2  reflow


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3045/files/c2d175f315c819e57cdfd59d7544c6cdef56721c..da7b436e37cc2a23712c6c0ae40488592e7e33c2

----==_mimepart_5d8ab2beab190_30793fe6d8ecd96c436a9
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/da7b436e37cc2a23712c6c0ae40488592e7e33c2">da7b436</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/3045/files/c2d175f315c819e57cdfd59d7544c6cdef56721c..da7b436e37cc2a23712c6c0ae40488592e7e33c2?email_source=notifications&amp;email_token=AFTOJK6KU2VS5M73QH2K2SDQLKVD5A5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TEOJSG4ZTQMQ">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5UI3TCJW63RDVU433QLKVD5ANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYA6V5WFA7BBD6IUCLQLKVD5A5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TEOJSG4ZTQMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045/files/c2d175f315c819e57cdfd59d7544c6cdef56721c..da7b436e37cc2a23712c6c0ae40488592e7e33c2?email_source=notifications\u0026email_token=AFTOJK6KU2VS5M73QH2K2SDQLKVD5A5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TEOJSG4ZTQMQ",
"url": "https://github.com/quicwg/base-drafts/pull/3045/files/c2d175f315c819e57cdfd59d7544c6cdef56721c..da7b436e37cc2a23712c6c0ae40488592e7e33c2?email_source=notifications\u0026email_token=AFTOJK6KU2VS5M73QH2K2SDQLKVD5A5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA3TEOJSG4ZTQMQ",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8ab2beab190_30793fe6d8ecd96c436a9--


From nobody Tue Sep 24 17:28: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 C5C9C120090 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 17:28:34 -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 EP-iDHbs1mKO for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 17:28: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 F1A81120033 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 17:28:32 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id E5998A0070 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 17:28:31 -0700 (PDT)
Date: Tue, 24 Sep 2019 17:28:31 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6OMYKZZ3ZEHZFFMMF3S72T7EVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/534799323@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8ab4afd6a6d_62373fbd38ecd96823829d"; 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/oFTG-cktzcdBH2ZWIDC16d3xGgI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 00:28:35 -0000

----==_mimepart_5d8ab4afd6a6d_62373fbd38ecd96823829d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> Even if we use crypto for the token, any addtional crypto for the packet is at least twice the CPU required to encrypt the token; halving the packets per second.

This assumes that the great majority of packet processing time is spent on cryptographic operations, and that has never been my personal experience.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-534799323
----==_mimepart_5d8ab4afd6a6d_62373fbd38ecd96823829d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>Even if we use crypto for the token, any addtional crypto for the packet is at least twice the CPU required to encrypt the token; halving the packets per second.</p>
</blockquote>
<p>This assumes that the great majority of packet processing time is spent on cryptographic operations, and that has never been my personal experience.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJK6HWEEPPCXJKSCUEMLQLKWC7A5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QGHWY#issuecomment-534799323">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZZMOCHDMCN4NKQ4YDQLKWC7ANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5PFMNHQNTGXRYZG4DQLKWC7A5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QGHWY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK6HWEEPPCXJKSCUEMLQLKWC7A5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QGHWY#issuecomment-534799323",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK6HWEEPPCXJKSCUEMLQLKWC7A5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QGHWY#issuecomment-534799323",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8ab4afd6a6d_62373fbd38ecd96823829d--


From nobody Tue Sep 24 17: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 011C412004C for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 17:46:40 -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 DL_8uJMOyB8h for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 17:46: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 5F910120033 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 17:46:38 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 7636D660DAF for <quic-issues@ietf.org>; Tue, 24 Sep 2019 17:46:37 -0700 (PDT)
Date: Tue, 24 Sep 2019 17:46:37 -0700
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6I24CRGH76RIDHTEN3S74X3EVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/534802829@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8ab8ed674a4_22a83f80b9acd96413301"; 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/jtmvNluIXnXTiTw41vlMHNikOl0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 00:46:40 -0000

----==_mimepart_5d8ab8ed674a4_22a83f80b9acd96413301
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> This assumes that the great majority of packet processing time is spent on cryptographic operations, and that has never been my personal experience.

That may be so when doing things at the HTTP layer. I have had completely the opposite experience with my QUIC only performance tests. Encryption/decryption is closer to 60% to 75% of the CPU. UDP is the next largest, but because we've done a lot of optimizations in this area it's not that much.

But for HW, it's a whole different story. There is nothing but read QUIC header, read token, write token, write UDP packet. Read/write token will be, by far, the CPU bottleneck.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-534802829
----==_mimepart_5d8ab8ed674a4_22a83f80b9acd96413301
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>This assumes that the great majority of packet processing time is spent on cryptographic operations, and that has never been my personal experience.</p>
</blockquote>
<p>That may be so when doing things at the HTTP layer. I have had completely the opposite experience with my QUIC only performance tests. Encryption/decryption is closer to 60% to 75% of the CPU. UDP is the next largest, but because we've done a lot of optimizations in this area it's not that much.</p>
<p>But for HW, it's a whole different story. There is nothing but read QUIC header, read token, write token, write UDP packet. Read/write token will be, by far, the CPU bottleneck.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJK4AYHCXWI5P4645ZQ3QLKYG3A5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QHDDI#issuecomment-534802829">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZHC5RFV45HGHW55OTQLKYG3ANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6H7AT7YJLOIP7RIW3QLKYG3A5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QHDDI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK4AYHCXWI5P4645ZQ3QLKYG3A5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QHDDI#issuecomment-534802829",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK4AYHCXWI5P4645ZQ3QLKYG3A5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QHDDI#issuecomment-534802829",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8ab8ed674a4_22a83f80b9acd96413301--


From nobody Tue Sep 24 18:15: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 B7654120047 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 18:15: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 vYYvnb_KmfkT for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 18:15: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 1197C120033 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 18:15:12 -0700 (PDT)
Date: Tue, 24 Sep 2019 18:15:12 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569374112; bh=rwfGKmTXG+cRMuYvP4ARxO81bAOW9EmKnzAyg6eE2Yc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XFsUEqI2arRRpfUOVS5tf6lJikHAOc4FP7nRno/dMquOPhMaOIEWtVzcCWlq7hrE8 q1lFpMxFNWmvHmBLx8k1+l+api7ScqjfZvRiwuxhFtCejxRExvF1Qee2Ppg+Qb7Z7C Ly2l7U9wzTCypp38w6ewUcxaIVvZuU5n7hE2oH9Q=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5CCRDWA6BZVZ4G4PN3TAAC7EVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/534808512@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8abfa013c8_4d993fadc10cd95c10396d"; 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/JngMI_FmwIQgABcR6olv5YyUtEQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 01:15:15 -0000

----==_mimepart_5d8abfa013c8_4d993fadc10cd95c10396d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> There is nothing but read QUIC header, read token, write token, write UDP packet. Read/write token will be, by far, the CPU bottleneck.

I suspect that by "read/write token" you mean the compute/look-up token step, which I suspect won't be cheap, and that'll be there regardless of our decision on this issue.

I have a hard time believing that a hardware-accelerated AES-GCM step will take much longer than read/writing UDP. Making the protocol less reliable for the sake of a hypothetical performance result sounds like premature optimization 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/3014#issuecomment-534808512
----==_mimepart_5d8abfa013c8_4d993fadc10cd95c10396d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>There is nothing but read QUIC header, read token, write token, write UDP packet. Read/write token will be, by far, the CPU bottleneck.</p>
</blockquote>
<p>I suspect that by "read/write token" you mean the compute/look-up token step, which I suspect won't be cheap, and that'll be there regardless of our decision on this issue.</p>
<p>I have a hard time believing that a hardware-accelerated AES-GCM step will take much longer than read/writing UDP. Making the protocol less reliable for the sake of a hypothetical performance result sounds like premature optimization 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/3014?email_source=notifications&amp;email_token=AFTOJK5X5EKTHMYAUSTHPDDQLK3SBA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QIPQA#issuecomment-534808512">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK47DUZWKXPWMSKVLCDQLK3SBANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7JNHSEXH2RUSSY3RLQLK3SBA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QIPQA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK5X5EKTHMYAUSTHPDDQLK3SBA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QIPQA#issuecomment-534808512",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK5X5EKTHMYAUSTHPDDQLK3SBA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QIPQA#issuecomment-534808512",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8abfa013c8_4d993fadc10cd95c10396d--


From nobody Tue Sep 24 18:26: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 1F89B120047 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 18:26: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 DTIbbisgpzfX for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 18:26: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 C41BB120033 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 18:26:09 -0700 (PDT)
Date: Tue, 24 Sep 2019 18:26:08 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569374768; bh=WAknFUvhXO2RbMoqoPNddsQcyg9Lc7ZIEAxIKNCtANg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=aixRG+bPa6YyAGw8OFe5F5BBK/h8usoshpfExn/HlBsdVw+MzKgKcgifS5CYUyvaB EJcDWH+Ru9MybDWUwbtQyr3THBMCQuQQuRf0cIIe96GO2B4/sQnn4qIy3NmOS1jJ3U tI8zN7m9y2WvBKoo3ed9DkcfWouCYo4m7ST3wdjg=
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7BPVPO45J2PZZ7T4F3TABMBEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/534811113@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8ac230cdfbd_d753f844aecd96c23755d"; 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/fEA_fKy6tt_NcGSYupaZV2bX4FU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 01:26:11 -0000

----==_mimepart_5d8ac230cdfbd_d753f844aecd96c23755d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

UDP can gain huge perf boosts from batch processing. Crypto doesn't get the same boosts because each packet ends up needing a different key.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-534811113
----==_mimepart_5d8ac230cdfbd_d753f844aecd96c23755d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>UDP can gain huge perf boosts from batch processing. Crypto doesn't get the same boosts because each packet ends up needing a different key.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJK2LGGPYLQL6RZYAXRLQLK43BA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QJD2I#issuecomment-534811113">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2WQ257WN2KIT65A7TQLK43BANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2AI7HCQ7GPJU3MS53QLK43BA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QJD2I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK2LGGPYLQL6RZYAXRLQLK43BA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QJD2I#issuecomment-534811113",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK2LGGPYLQL6RZYAXRLQLK43BA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QJD2I#issuecomment-534811113",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8ac230cdfbd_d753f844aecd96c23755d--


From nobody Tue Sep 24 18:26: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 D8323120047 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 18:26:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 1h52Lf2LDB5o for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 18:26: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 E6AA7120033 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 18:26:48 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 34D9C8C11B7 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 18:26:48 -0700 (PDT)
Date: Tue, 24 Sep 2019 18:26:48 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7O7KFWPT37GB364O53TABOREVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/534811273@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8ac25824b51_4d23fe7970cd960138922"; 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/y3Zabo9br3xDjCwe3sOdqPw9e94>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 01:26:51 -0000

----==_mimepart_5d8ac25824b51_4d23fe7970cd960138922
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I agree with @DavidSchinazi that I have never seen profiles indicating that AES with standard(ie: AES-NI or AVX) acceleration is more costly than sending UDP packets.

I'm confused about whether you have an amazingly fast UDP path or a very slow AES-GCM path, relatively speaking.  I've seen CPU profiles where 50% of CPU is spent sending UDP packets on two different platforms now, but I've never seen a profile where AES-GCM consumed more than sending UDP packets.

Can you share any measurements that might explain the large disparity between CPU profiles I've seen and you've seen or shed any light on why our experiences are so 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/3014#issuecomment-534811273
----==_mimepart_5d8ac25824b51_4d23fe7970cd960138922
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I agree with <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> that I have never seen profiles indicating that AES with standard(ie: AES-NI or AVX) acceleration is more costly than sending UDP packets.</p>
<p>I'm confused about whether you have an amazingly fast UDP path or a very slow AES-GCM path, relatively speaking.  I've seen CPU profiles where 50% of CPU is spent sending UDP packets on two different platforms now, but I've never seen a profile where AES-GCM consumed more than sending UDP packets.</p>
<p>Can you share any measurements that might explain the large disparity between CPU profiles I've seen and you've seen or shed any light on why our experiences are so 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/3014?email_source=notifications&amp;email_token=AFTOJK3735WYKYVBLWZEZUDQLK45RA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QJFCI#issuecomment-534811273">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7Y5ZOPKXVVDMNNN5TQLK45RANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZBZT3VEHH46PQUITDQLK45RA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QJFCI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK3735WYKYVBLWZEZUDQLK45RA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QJFCI#issuecomment-534811273",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK3735WYKYVBLWZEZUDQLK45RA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QJFCI#issuecomment-534811273",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8ac25824b51_4d23fe7970cd960138922--


From nobody Tue Sep 24 19:30: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 4928B12084B for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 19:30: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 HITe-12nC_jl for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 19:29: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 4683E1201AA for <quic-issues@ietf.org>; Tue, 24 Sep 2019 19:29:59 -0700 (PDT)
Date: Tue, 24 Sep 2019 19:29:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569378598; bh=gKKb07QaYlLq4YHdZuy66KZDF+0LX+umOsv5xrM/DN4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IlQiVstn+BvS71Mmx19e1R1VRjAExtWkmfkYvbkDKvdZfpLrHt98oMHqTpL2uFQFp q1UlNj2xz8ttBlvlYm6MvjDF8CBOfwPnIKAHLZLdLoMM3PhTT9tWUX7FKBOD9Z1TQS u3tEkmfpMV6wG83XyX3zM4eHa6uAhn5jbjCuxbrE=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2S4AVKQRGL5VX6BEV3TAB2NEVBNHHB3LP3EA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3066/review/292800593@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3066@github.com>
References: <quicwg/base-drafts/pull/3066@github.com>
Subject: Re: [quicwg/base-drafts] Change PTO to be per packet number space (#3066)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8ad12646c68_1fa23f99b04cd964127274"; 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/nU9Qp9W1XUi3xQ9Vr9Q4Y7wsBzA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 02:30:01 -0000

----==_mimepart_5d8ad12646c68_1fa23f99b04cd964127274
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

kazuho commented on this pull request.



> @@ -522,9 +524,14 @@ removed from bytes in flight when the Initial and Handshake keys are discarded.
 ### Sending Probe Packets
 
 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 full-sized datagrams containing ack-eliciting packets, to avoid an
-expensive consecutive PTO expiration due to a single lost datagram.
+in the packet number space as a probe, unless there is no data available to
+send.  An endpoint MAY send up to two full-sized datagrams containing
+ack-eliciting packets, to avoid an expensive consecutive PTO expiration due
+to a single lost datagram.

Confirmation question: does this mean that we'd be permitting more datagrams to be sent in effectively one PTO, when multiple packet number spaces are involved?

Consider the case where the PTO is armed for both the Handshake packet number space and the 1-RTT packet number space. Now that we have a PTO timer for each of the packet number space, we'd see both of them firing, and the text reads that an endpoint is allowed to send two datagrams for 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/3066#pullrequestreview-292800593
----==_mimepart_5d8ad12646c68_1fa23f99b04cd964127274
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@kazuho</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3066#discussion_r327909028">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -522,9 +524,14 @@ removed from bytes in flight when the Initial and Handshake keys are discarded.
 ### Sending Probe Packets
 
 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 full-sized datagrams containing ack-eliciting packets, to avoid an
-expensive consecutive PTO expiration due to a single lost datagram.
+in the packet number space as a probe, unless there is no data available to
+send.  An endpoint MAY send up to two full-sized datagrams containing
+ack-eliciting packets, to avoid an expensive consecutive PTO expiration due
+to a single lost datagram.
</pre>
<p>Confirmation question: does this mean that we'd be permitting more datagrams to be sent in effectively one PTO, when multiple packet number spaces are involved?</p>
<p>Consider the case where the PTO is armed for both the Handshake packet number space and the 1-RTT packet number space. Now that we have a PTO timer for each of the packet number space, we'd see both of them firing, and the text reads that an endpoint is allowed to send two datagrams for 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/3066?email_source=notifications&amp;email_token=AFTOJK4RPVMVLL4AQFB3WJLQLLEKNA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFZ4QUI#pullrequestreview-292800593">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4X3D7T62TIB2ZMPQ3QLLEKNANCNFSM4I2FHCOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7U45W35LZOC6VPHGDQLLEKNA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFZ4QUI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3066?email_source=notifications\u0026email_token=AFTOJK4RPVMVLL4AQFB3WJLQLLEKNA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFZ4QUI#pullrequestreview-292800593",
"url": "https://github.com/quicwg/base-drafts/pull/3066?email_source=notifications\u0026email_token=AFTOJK4RPVMVLL4AQFB3WJLQLLEKNA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCFZ4QUI#pullrequestreview-292800593",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8ad12646c68_1fa23f99b04cd964127274--


From nobody Tue Sep 24 23: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 D0B7A1200FB for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 23:13: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 Zatf9yjK377M for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 23:13:48 -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 ADB6E120041 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 23:13:48 -0700 (PDT)
Date: Tue, 24 Sep 2019 23:13:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569392027; bh=w1kM7vgZOG7asOvbDpLShYg3cSfxAWImoF6gCO9GJbo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OuVbswD6+KLG0ntoOZq1Q2dPOxOWPnVqPZUqB2rftnHvZRBQucbndwMSuFNJC29xX fYA6f1ZO4NdPH82wy64lpSxVRgpsTsyjidbLXRpzbsRIl5seiD3V4Vm6RXjhvafjG9 alhT0SHGfMDBOkvVMOKp3oQlNengi6vBke0tfeBY=
From: Mark Nottingham <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6DQWVNJC33WV6V42F3TAVAXEVBNHHB2S7N5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3013/534870366@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3013@github.com>
References: <quicwg/base-drafts/issues/3013@github.com>
Subject: Re: [quicwg/base-drafts] QUIC versions can no longer be greased (#3013)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b059bc8c94_498d3fa6bc8cd960259126"; 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/A2ihZN0WEJ_tUnPUyZ3EjUVfEBo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 06:13:50 -0000

----==_mimepart_5d8b059bc8c94_498d3fa6bc8cd960259126
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This feels a bit editorial -- anyone have an issue with that?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3013#issuecomment-534870366
----==_mimepart_5d8b059bc8c94_498d3fa6bc8cd960259126
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This feels a bit editorial -- anyone have an issue with that?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3013?email_source=notifications&amp;email_token=AFTOJK3HWMQ3H56UHAZNSUTQLL6RXA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QXSXQ#issuecomment-534870366">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2XKD6JMDZIPZ2A4NTQLL6RXANCNFSM4IVEKYOA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK66M34LTKAWKM7JPM3QLL6RXA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QXSXQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3013?email_source=notifications\u0026email_token=AFTOJK3HWMQ3H56UHAZNSUTQLL6RXA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QXSXQ#issuecomment-534870366",
"url": "https://github.com/quicwg/base-drafts/issues/3013?email_source=notifications\u0026email_token=AFTOJK3HWMQ3H56UHAZNSUTQLL6RXA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QXSXQ#issuecomment-534870366",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8b059bc8c94_498d3fa6bc8cd960259126--


From nobody Tue Sep 24 23:14: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 4011A1200FB for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 23:14:19 -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 kz1Qa6GtfOJa for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 23:14:17 -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 B8B47120041 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 23:14:17 -0700 (PDT)
Date: Tue, 24 Sep 2019 23:14:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569392057; bh=aiffdCeQECEu2S5zXz9maOaymkCuHgYCWmYiYxMy+/k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zqqM8jzdE8a0C0V/YOq4SHxYFl3BJK0t5azY4Pf0bC/NVJe+4q4Dwjrbory8piGaH oyTRprejdlNCsRu1u926ZAiHLVbdCJ2jtse3yOiGt8DIhXU7E1rRvJp4xjCL9Lg9L6 IqGF+UqSBiVFytcmenP24A7UVjfQUKBtKRLJNwpY=
From: Mark Nottingham <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7CQO3TKC2ANXYP3CV3TAVCTEVBNHHB2ZEM7Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3027/534870487@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3027@github.com>
References: <quicwg/base-drafts/issues/3027@github.com>
Subject: Re: [quicwg/base-drafts] Codes for frame encoding errors (#3027)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b05b91a557_48383fbcbc0cd95c4117ca"; 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/vsMbY2XSAhyuiDJn6hvyFTw0BI0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 06:14:20 -0000

----==_mimepart_5d8b05b91a557_48383fbcbc0cd95c4117ca
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Can we call this 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/3027#issuecomment-534870487
----==_mimepart_5d8b05b91a557_48383fbcbc0cd95c4117ca
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Can we call this 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/3027?email_source=notifications&amp;email_token=AFTOJK2XWGTRIJGSB7RNBKLQLL6TTA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QXTVY#issuecomment-534870487">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6KWDGJM53KWM3FSPTQLL6TTANCNFSM4IWL4A7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2LURUUTJ7WESSZ5S3QLL6TTA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QXTVY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3027?email_source=notifications\u0026email_token=AFTOJK2XWGTRIJGSB7RNBKLQLL6TTA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QXTVY#issuecomment-534870487",
"url": "https://github.com/quicwg/base-drafts/issues/3027?email_source=notifications\u0026email_token=AFTOJK2XWGTRIJGSB7RNBKLQLL6TTA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QXTVY#issuecomment-534870487",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8b05b91a557_48383fbcbc0cd95c4117ca--


From nobody Tue Sep 24 23:26: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 D5C2C12085E for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 23:26:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.48
X-Spam-Level: 
X-Spam-Status: No, score=-6.48 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.026, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lkkyuWZoiz6U for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 23:26: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 165D3120100 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 23:26:54 -0700 (PDT)
Date: Tue, 24 Sep 2019 23:26:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569392813; bh=En4ILPXX7bfYDp3aaRpFpBugeyGLN4zXEmyZjjUJBAM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HfTaIuPPh0yNgO4lsA6P1xeJL7ObnKsZBrDbw0mpPPuJ6tagkfT/8Thn+sKeR4Mdr K3jzBuDpVEl9SCLrYMweetC22jUa2cyDzZtjaRZl4fG03VyaJ69PVuOMPwTiLT3jhp jlePCEEJBOooM/MQGCJQtnwFsbqd2aEEXq9hlo94=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3VMAU6V7PXEV2GUV53TA5S3EVBNHHB2S7N5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3013/534873959@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3013@github.com>
References: <quicwg/base-drafts/issues/3013@github.com>
Subject: Re: [quicwg/base-drafts] QUIC versions can no longer be greased (#3013)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b08ad1b31c_2373f9a038cd96c609672"; 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/k1T0T3L9eamMYtpFy2e0fOFpOMw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 06:26:56 -0000

----==_mimepart_5d8b08ad1b31c_2373f9a038cd96c609672
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think we have two ways forward:
* Drop the idea of version number greasing using 0x?a?a?a?a.
* Allow the servers to send Version Negotiation packets. We would need to require clients to handle it, rather than requiring them to "abandon the current connection attempt."

I think it would be a design issue if we decide to pick up the latter.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3013#issuecomment-534873959
----==_mimepart_5d8b08ad1b31c_2373f9a038cd96c609672
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I think we have two ways forward:</p>
<ul>
<li>Drop the idea of version number greasing using 0x?a?a?a?a.</li>
<li>Allow the servers to send Version Negotiation packets. We would need to require clients to handle it, rather than requiring them to "abandon the current connection attempt."</li>
</ul>
<p>I think it would be a design issue if we decide to pick up the latter.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3013?email_source=notifications&amp;email_token=AFTOJK2TE4N2UUAJGW7SG33QLMAC3A5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QYOZY#issuecomment-534873959">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3W4NUIT4LBM4TYCP3QLMAC3ANCNFSM4IVEKYOA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6V5GFN53B4Z6N3CGDQLMAC3A5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QYOZY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3013?email_source=notifications\u0026email_token=AFTOJK2TE4N2UUAJGW7SG33QLMAC3A5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QYOZY#issuecomment-534873959",
"url": "https://github.com/quicwg/base-drafts/issues/3013?email_source=notifications\u0026email_token=AFTOJK2TE4N2UUAJGW7SG33QLMAC3A5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7QYOZY#issuecomment-534873959",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8b08ad1b31c_2373f9a038cd96c609672--


From nobody Tue Sep 24 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 38BC5120041 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 23:47:37 -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 cUriLcx7BMhW for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 23:47: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 9713D1200B8 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 23:47:35 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id D4A20A0E35 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 23:47:34 -0700 (PDT)
Date: Tue, 24 Sep 2019 23:47:34 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYHHAZIDWAOD4CWJ753TBHBNEVBNHHB3MBHCE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3068@github.com>
Subject: [quicwg/base-drafts] ACK-eliciting vs ack-eliciting (#3068)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b0d86c315d_6dc23fd654acd96411499d"; 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/kWahCKkckQRZhillDZ7R7TkHEIo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 06:47:37 -0000

----==_mimepart_5d8b0d86c315d_6dc23fd654acd96411499d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The transport text wildly disagrees on case even in neighbouring paragraphs.
Recovery uses ack-eliciting consistently, except Ack-eliciting at paragraph start.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3068
----==_mimepart_5d8b0d86c315d_6dc23fd654acd96411499d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The transport text wildly disagrees on case even in neighbouring paragraphs.<br>
Recovery uses ack-eliciting consistently, except Ack-eliciting at paragraph start.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3068?email_source=notifications&amp;email_token=AFTOJK5UAL3JUFBO5HZG7E3QLMCQNA5CNFSM4I2IOZF2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNQE4IQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK735E33WEJDDLCZYULQLMCQNANCNFSM4I2IOZFQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5DR3FJ3OBUPGJNVFTQLMCQNA5CNFSM4I2IOZF2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNQE4IQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3068?email_source=notifications\u0026email_token=AFTOJK5UAL3JUFBO5HZG7E3QLMCQNA5CNFSM4I2IOZF2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNQE4IQ",
"url": "https://github.com/quicwg/base-drafts/issues/3068?email_source=notifications\u0026email_token=AFTOJK5UAL3JUFBO5HZG7E3QLMCQNA5CNFSM4I2IOZF2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNQE4IQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8b0d86c315d_6dc23fd654acd96411499d--


From nobody Tue Sep 24 23:57: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 9DBB91200B8 for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 23:56: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 AfYIVEwDdhot for <quic-issues@ietfa.amsl.com>; Tue, 24 Sep 2019 23: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 7C581120041 for <quic-issues@ietf.org>; Tue, 24 Sep 2019 23:56:57 -0700 (PDT)
Date: Tue, 24 Sep 2019 23:56:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569394616; bh=Yi93GWg5sgOp8lH3xWo4EpKd4O4sRX/P+dedYP3Gp4c=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bO0lwmnAkkE360Rb4CzDenYD1bzIoSrQeIq2edSJhktNjvKUBhvNG2UAcecNFcvM6 kP0k6r7ZSX2siWKmmuvUPUfKEpb7608maHrcG+JLFTrRP6jWzEbHTascxmxMsBvqUl QiFX0/2PcCsidbq1qdYhF0ewQ+4zfJboqTtN7iXQ=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2KCGIRGV2SCJQO2453TBIEREVBNHHB3LP3EA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3066/c534882298@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3066@github.com>
References: <quicwg/base-drafts/pull/3066@github.com>
Subject: Re: [quicwg/base-drafts] Change PTO to be per packet number space (#3066)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b0fb87df1e_463e3ff4d52cd968225114"; 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/wQR-A69vLgm1voONwMJxOk43Nkw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 06:57:00 -0000

----==_mimepart_5d8b0fb87df1e_463e3ff4d52cd968225114
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'd like to see the different packet number spaces operate independently because the initial handshake can use a less optimised, more complicated code path. While separate PTOs works for that, the requirement about SHOULD coalesce across packet number spaces goes against it. It requires upstream coordination and one PTO timer firing might affect the timeout of another PTO timer because coalesced packets are being sent. Overall this sounds rather complicated.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3066#issuecomment-534882298
----==_mimepart_5d8b0fb87df1e_463e3ff4d52cd968225114
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'd like to see the different packet number spaces operate independently because the initial handshake can use a less optimised, more complicated code path. While separate PTOs works for that, the requirement about SHOULD coalesce across packet number spaces goes against it. It requires upstream coordination and one PTO timer firing might affect the timeout of another PTO timer because coalesced packets are being sent. Overall this sounds rather complicated.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3066?email_source=notifications&amp;email_token=AFTOJK3GOSAP7OY6YC552YTQLMDTRA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q2P6Q#issuecomment-534882298">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYLWRVEZVWDHD5EQFDQLMDTRANCNFSM4I2FHCOQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6HDU2GJS2HYEH47FTQLMDTRA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q2P6Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3066?email_source=notifications\u0026email_token=AFTOJK3GOSAP7OY6YC552YTQLMDTRA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q2P6Q#issuecomment-534882298",
"url": "https://github.com/quicwg/base-drafts/pull/3066?email_source=notifications\u0026email_token=AFTOJK3GOSAP7OY6YC552YTQLMDTRA5CNFSM4I2FHCO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q2P6Q#issuecomment-534882298",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8b0fb87df1e_463e3ff4d52cd968225114--


From nobody Wed Sep 25 00:02: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 1ACFE1200B8 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 00:02:14 -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 NFWwWDYnP88U for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 00:02:12 -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 8B7AD120041 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 00:02:12 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id C25E9A083F for <quic-issues@ietf.org>; Wed, 25 Sep 2019 00:02:11 -0700 (PDT)
Date: Wed, 25 Sep 2019 00:02:11 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5BY4UJZ37ZJHCG5A53TBIYHEVBNHHB3LILA4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3065/534883893@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3065@github.com>
References: <quicwg/base-drafts/issues/3065@github.com>
Subject: Re: [quicwg/base-drafts] Help me fix this problem  (#3065)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b10f3b390d_641a3faadf6cd968897f2"; 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/IcuZoUEhx2h0yLtyRGMFPX1jLaw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 07:02:14 -0000

----==_mimepart_5d8b10f3b390d_641a3faadf6cd968897f2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I first thought this is spam, but whatever, since this thread won't die: the reason for the error is an extra space in the last line 

`> / sdcard/hola.apk` should probably be `>/sdcard/hola.apk`

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3065#issuecomment-534883893
----==_mimepart_5d8b10f3b390d_641a3faadf6cd968897f2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I first thought this is spam, but whatever, since this thread won't die: the reason for the error is an extra space in the last line</p>
<p><code>&gt; / sdcard/hola.apk</code> should probably be <code>&gt;/sdcard/hola.apk</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/3065?email_source=notifications&amp;email_token=AFTOJK3D7XMS6RGDFEUT5STQLMEHHA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q24NI#issuecomment-534883893">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK76AQYCDMFUOH3JUPTQLMEHHANCNFSM4I2D3ILQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3OXXYUOKR4ZQSEE4LQLMEHHA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q24NI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3065?email_source=notifications\u0026email_token=AFTOJK3D7XMS6RGDFEUT5STQLMEHHA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q24NI#issuecomment-534883893",
"url": "https://github.com/quicwg/base-drafts/issues/3065?email_source=notifications\u0026email_token=AFTOJK3D7XMS6RGDFEUT5STQLMEHHA5CNFSM4I2D3IL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q24NI#issuecomment-534883893",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8b10f3b390d_641a3faadf6cd968897f2--


From nobody Wed Sep 25 00:06: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 3A7161200B8 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 00:06: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 jgdq-rB1Vglu for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 00:06: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 CB612120041 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 00:06:17 -0700 (PDT)
Date: Wed, 25 Sep 2019 00:06:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569395177; bh=OkSMxVGtdKW5Ol4mMbljt5MHYA4xA+JeMqdO+F8POKc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=C6lm+KMwTGiao1jF5YFi5lm1SQhnA35AoDKRDQc++NI8G4J+ydbM0sX580xMX2pFj Y0iD541HfaI4SuZu8Y3e5Iuz3GanOB/MJhK1QM2CyGcRFrdscjeVFQDj2HWh2CfLux APBsHPvTbI2SQ0d7+6b/kBS7UOhOi1ReCt2si1nk=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK66OUWDFM5TNBTBAL53TA3FREVBNHHB2ZEM7Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3027/534885048@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3027@github.com>
References: <quicwg/base-drafts/issues/3027@github.com>
Subject: Re: [quicwg/base-drafts] Codes for frame encoding errors (#3027)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b11e8dbb69_47723fbf42acd9601446d0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9DncRMPpMD2hjh67Q6wj44F9iO4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 07:06:19 -0000

----==_mimepart_5d8b11e8dbb69_47723fbf42acd9601446d0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

It changes functional requirements about what error codes to send, so not really.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3027#issuecomment-534885048
----==_mimepart_5d8b11e8dbb69_47723fbf42acd9601446d0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>It changes functional requirements about what error codes to send, so not really.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3027?email_source=notifications&amp;email_token=AFTOJK2OHXBJLCWKX3P2WPLQLMEWRA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q3FOA#issuecomment-534885048">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4FNX4IZ64DFK2SQ73QLMEWRANCNFSM4IWL4A7Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6WQJOZSFEGLP4GVGDQLMEWRA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q3FOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3027?email_source=notifications\u0026email_token=AFTOJK2OHXBJLCWKX3P2WPLQLMEWRA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q3FOA#issuecomment-534885048",
"url": "https://github.com/quicwg/base-drafts/issues/3027?email_source=notifications\u0026email_token=AFTOJK2OHXBJLCWKX3P2WPLQLMEWRA5CNFSM4IWL4A72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q3FOA#issuecomment-534885048",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8b11e8dbb69_47723fbf42acd9601446d0--


From nobody Wed Sep 25 00:07: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 9038D1200B8 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 00:07:30 -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 Su0L6CDxdbdT for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 00:07:29 -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 0EB12120041 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 00:07:28 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 7B17C1204E4 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 00:07:28 -0700 (PDT)
Date: Wed, 25 Sep 2019 00:07:28 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6SAPTFV4CUT73T6FN3TA3KBEVBNHHB2S7N5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3013/534885370@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3013@github.com>
References: <quicwg/base-drafts/issues/3013@github.com>
Subject: Re: [quicwg/base-drafts] QUIC versions can no longer be greased (#3013)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b1230344a7_2b993ff9120cd9601501ac"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/k21H_NIbbcwQw6PMJCWpIxKxAbc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 07:07:31 -0000

----==_mimepart_5d8b1230344a7_2b993ff9120cd9601501ac
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Presumably clients could still use greasing version numbers, so I don't think that we necessarily need to do anything other than an editorial tweak.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3013#issuecomment-534885370
----==_mimepart_5d8b1230344a7_2b993ff9120cd9601501ac
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Presumably clients could still use greasing version numbers, so I don't think that we necessarily need to do anything other than an editorial tweak.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3013?email_source=notifications&amp;email_token=AFTOJK6FU4N37AN2555IQZTQLME3BA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q3H6Q#issuecomment-534885370">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7BMWO3KPZRFOU6AGDQLME3BANCNFSM4IVEKYOA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZWTADMTRBOJYS3NRTQLME3BA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q3H6Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3013?email_source=notifications\u0026email_token=AFTOJK6FU4N37AN2555IQZTQLME3BA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q3H6Q#issuecomment-534885370",
"url": "https://github.com/quicwg/base-drafts/issues/3013?email_source=notifications\u0026email_token=AFTOJK6FU4N37AN2555IQZTQLME3BA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q3H6Q#issuecomment-534885370",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8b1230344a7_2b993ff9120cd9601501ac--


From nobody Wed Sep 25 00: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 0C3061200FD for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 00:15:59 -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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.026, 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 MYWGQTmkKppP for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 00:15: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 9BE14120041 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 00:15:57 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id B0E27C61FB4 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 00:15:56 -0700 (PDT)
Date: Wed, 25 Sep 2019 00:15:56 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZNUQF6QMF5D7YJNEN3TBKLZEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/534887912@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b142ca17bf_5a113f8fe6ecd960235736"; 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/m8FknBBMyndFKozNunDJv7TgdI0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 07:15:59 -0000

----==_mimepart_5d8b142ca17bf_5a113f8fe6ecd960235736
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

A hardware forwarding UDP device has a completely different path from any general purpose OS, so it can't be compared at all.

AES as a number of roundtrips which requires a pipeline depth even if each step is fast and it might require custom specs if you have a fast simple core to start with.

Another option is to use good enough pseudo-crypto like some key mixed into a splitmix64 algorithm with frequently changing keys, at least for a part of the token field that affects the hardware filter.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-534887912
----==_mimepart_5d8b142ca17bf_5a113f8fe6ecd960235736
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>A hardware forwarding UDP device has a completely different path from any general purpose OS, so it can't be compared at all.</p>
<p>AES as a number of roundtrips which requires a pipeline depth even if each step is fast and it might require custom specs if you have a fast simple core to start with.</p>
<p>Another option is to use good enough pseudo-crypto like some key mixed into a splitmix64 algorithm with frequently changing keys, at least for a part of the token field that affects the hardware filter.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJK757IVBRA2WTTOVTL3QLMF2ZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q332A#issuecomment-534887912">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZWHQFALHQVC3G2XUDQLMF2ZANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5P3BQ7AZNTTG5HCS3QLMF2ZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q332A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK757IVBRA2WTTOVTL3QLMF2ZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q332A#issuecomment-534887912",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK757IVBRA2WTTOVTL3QLMF2ZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q332A#issuecomment-534887912",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8b142ca17bf_5a113f8fe6ecd960235736--


From nobody Wed Sep 25 00:31: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 DF352120105 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 00:31:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 nrvIKo9_xBCB for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 00:31: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 01653120905 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 00:31:32 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 3EE4A520083 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 00:31:32 -0700 (PDT)
Date: Wed, 25 Sep 2019 00:31:32 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4PUL7TFP5TQCZE46N3TBFFJEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/534892744@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b17d43064d_69413ff1c8ecd96c16171f"; 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/L4U9pAU1YNQFWoe2-rB5IdZP1D4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 07:31:48 -0000

----==_mimepart_5d8b17d43064d_69413ff1c8ecd96c16171f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I agree with @kazuho, @DavidSchinazi and @ianswett. Making the protocol robust against bit flips should be our first priority, even if it's a (little?) bit more expensive for the sender of Retry 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/3014#issuecomment-534892744
----==_mimepart_5d8b17d43064d_69413ff1c8ecd96c16171f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I agree with <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>, <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> 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>. Making the protocol robust against bit flips should be our first priority, even if it's a (little?) bit more expensive for the sender of Retry 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/3014?email_source=notifications&amp;email_token=AFTOJK2HHF6OTR64F75OGYLQLMHVJA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q5BSA#issuecomment-534892744">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4PGO7PATCCOAUWAK3QLMHVJANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5AWM2LASKSJOXCIR3QLMHVJA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q5BSA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK2HHF6OTR64F75OGYLQLMHVJA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q5BSA#issuecomment-534892744",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK2HHF6OTR64F75OGYLQLMHVJA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q5BSA#issuecomment-534892744",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8b17d43064d_69413ff1c8ecd96c16171f--


From nobody Wed Sep 25 00:32: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 68FF11200FD for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 00:32: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 QgXKe7dxdEG6 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 00:32: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 CD7891200B8 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 00:32:27 -0700 (PDT)
Date: Wed, 25 Sep 2019 00:32:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569396747; bh=f887ozDC3NwZvIgUw73WhzmFesrB0RnYNYwr4C6rUx0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=T2VX/ddEDmmBW6u5ETK2CRJyVaZGDVcf/hD3IeZSxf0eZ10wNZLnMWaBNF1/cl8pP bm4SVPCg85AmAHnJbgn3VyQEeJQ8M8FAPvF+l9Tq/7O4pizKX9/qJ/ST6bHQWclfCf t1ZZinHm9FBH0aXYbN5zfAf2Mpy9ej22T1/sabEE=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7DY5P7KG2ZDSXLZF53TBFIVEVBNHHB2S7N5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3013/534892996@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3013@github.com>
References: <quicwg/base-drafts/issues/3013@github.com>
Subject: Re: [quicwg/base-drafts] QUIC versions can no longer be greased (#3013)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b180af39b6_4c3f3fd1c8ccd95c1678b"; 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/EsXheSrQiXxy6dSGJMSWnN4L-rs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 07:32:30 -0000

----==_mimepart_5d8b180af39b6_4c3f3fd1c8ccd95c1678b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Apologies, I was confused when I wrote my last comment.

Yes, this can be an editorial tweak, that allows the client to respect the Version Negotiation packet, when it sends an Initial packet with a greasing version number.

Or, we can leave the text as-is, claiming that the act of sending a long header packet using a greasing version number is solely governed by the invariants I-D rather than the V1 I-D.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3013#issuecomment-534892996
----==_mimepart_5d8b180af39b6_4c3f3fd1c8ccd95c1678b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Apologies, I was confused when I wrote my last comment.</p>
<p>Yes, this can be an editorial tweak, that allows the client to respect the Version Negotiation packet, when it sends an Initial packet with a greasing version number.</p>
<p>Or, we can leave the text as-is, claiming that the act of sending a long header packet using a greasing version number is solely governed by the invariants I-D rather than the V1 I-D.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3013?email_source=notifications&amp;email_token=AFTOJK44P7VOXXYBCAQPXYTQLMHYVA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q5DRA#issuecomment-534892996">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2NWQLHLI2FJXZ7VFDQLMHYVANCNFSM4IVEKYOA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6T7C5HZ2QXJURDBWLQLMHYVA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q5DRA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3013?email_source=notifications\u0026email_token=AFTOJK44P7VOXXYBCAQPXYTQLMHYVA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q5DRA#issuecomment-534892996",
"url": "https://github.com/quicwg/base-drafts/issues/3013?email_source=notifications\u0026email_token=AFTOJK44P7VOXXYBCAQPXYTQLMHYVA5CNFSM4IVEKYOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q5DRA#issuecomment-534892996",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8b180af39b6_4c3f3fd1c8ccd95c1678b--


From nobody Wed Sep 25 00:35: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 328DF1200B8 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 00:35:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 STEyWeA3794n for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 00:35:42 -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 CDF77120041 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 00:35:42 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 099E4960588 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 00:35:42 -0700 (PDT)
Date: Wed, 25 Sep 2019 00:35:41 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/test-ci/000000-cffb38@github.com>
Subject: [quicwg/base-drafts] cffb38: Test printing of config
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/nYqzQBcf_GmHGLP_QeaL9sYSvAA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 07:35:44 -0000

  Branch: refs/heads/test-ci
  Home:   https://github.com/quicwg/base-drafts
  Commit: cffb389bd376372ce8b3dad25fe42f28c35cab08
      https://github.com/quicwg/base-drafts/commit/cffb389bd376372ce8b3dad25fe42f28c35cab08
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-25 (Wed, 25 Sep 2019)

  Changed paths:
    M .circleci/config.yml

  Log Message:
  -----------
  Test printing of config



From nobody Wed Sep 25 00:36: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 909851200B8 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 00:36:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 96SSBpr_Idmr for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 00:36: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 6E15E120041 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 00:36:17 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id B2F0A520095 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 00:36:16 -0700 (PDT)
Date: Wed, 25 Sep 2019 00:36:16 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/72b665-9e44aa@github.com>
Subject: [quicwg/base-drafts] 9e44aa: Script updating gh-pages from cffb389b. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/XWt1aNsne5Knyj5sbclVbI9kYf0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 07:36:19 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9e44aabffabee2d8a8bb4dbbf6a6bf122dd3b692
      https://github.com/quicwg/base-drafts/commit/9e44aabffabee2d8a8bb4dbbf6a6bf122dd3b692
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-25 (Wed, 25 Sep 2019)

  Changed paths:
    M index.html
    A test-ci/draft-ietf-quic-http.html
    A test-ci/draft-ietf-quic-http.txt
    A test-ci/draft-ietf-quic-invariants.html
    A test-ci/draft-ietf-quic-invariants.txt
    A test-ci/draft-ietf-quic-qpack.html
    A test-ci/draft-ietf-quic-qpack.txt
    A test-ci/draft-ietf-quic-recovery.html
    A test-ci/draft-ietf-quic-recovery.txt
    A test-ci/draft-ietf-quic-tls.html
    A test-ci/draft-ietf-quic-tls.txt
    A test-ci/draft-ietf-quic-transport.html
    A test-ci/draft-ietf-quic-transport.txt
    A test-ci/index.html

  Log Message:
  -----------
  Script updating gh-pages from cffb389b. [ci skip]



From nobody Wed Sep 25 05:24: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 E95E612080B for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 05:24:14 -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 5kXj6bxZm6j3 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 05:24: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 37D6512080A for <quic-issues@ietf.org>; Wed, 25 Sep 2019 05:24:13 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 5C4E1960B40 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 05:24:12 -0700 (PDT)
Date: Wed, 25 Sep 2019 05:24:12 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7MQUMAW2BUWBON2YF3TCOPZEVBNHHB3JNFTE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3063/534996442@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3063@github.com>
References: <quicwg/base-drafts/issues/3063@github.com>
Subject: Re: [quicwg/base-drafts] http: Allow unquoted tokens in Alt-Svc quic parameter (#3063)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b5c6c4ee80_41db3fa78e0cd968206449"; 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/D6U2zVHGl639aAG92lq6tQy3mWE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 12:24:15 -0000

----==_mimepart_5d8b5c6c4ee80_41db3fa78e0cd968206449
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

To highlight my earlier point, on slack the following was posted 

> Specifically: I have an H1/H2 server running on ports 443 and 4433 which advertises
> alt-svc: h3-23=":4433"; ma=3600

The issue appears to not be the unquoted ma=3600, but it does suggest we will see unquoted strings in the wild.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3063#issuecomment-534996442
----==_mimepart_5d8b5c6c4ee80_41db3fa78e0cd968206449
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>To highlight my earlier point, on slack the following was posted</p>
<blockquote>
<p>Specifically: I have an H1/H2 server running on ports 443 and 4433 which advertises<br>
alt-svc: h3-23=":4433"; ma=3600</p>
</blockquote>
<p>The issue appears to not be the unquoted ma=3600, but it does suggest we will see unquoted strings in the wild.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications&amp;email_token=AFTOJK2TQXXMBW6XU2UDNIDQLNJ6ZA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7RWLWQ#issuecomment-534996442">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5UWMWGWARRDESF32DQLNJ6ZANCNFSM4IZWYYMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6ML2G6KLOD56S2OKLQLNJ6ZA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7RWLWQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications\u0026email_token=AFTOJK2TQXXMBW6XU2UDNIDQLNJ6ZA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7RWLWQ#issuecomment-534996442",
"url": "https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications\u0026email_token=AFTOJK2TQXXMBW6XU2UDNIDQLNJ6ZA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7RWLWQ#issuecomment-534996442",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8b5c6c4ee80_41db3fa78e0cd968206449--


From nobody Wed Sep 25 06:01: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 1321C12081A for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 06:01: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 tEDYCZIzHQwK for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 06:01:04 -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 1DDD4120828 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 06:01:04 -0700 (PDT)
Date: Wed, 25 Sep 2019 06:01:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569416463; bh=xSPZMthpV47KLtXAFpJZWkzhAwIz3R3s3q7lZiTqynY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oyX1ieM3n9TstHm3AFJ9LC1VxlbTB1S2SHAP+3UKezjbVaErTlvt4qsP/GRBtUzqM bwb7/2ayq1d0cwn46pURdN5NJJDPXvE8YCwgLuxnZw08Nd6CvjT31GfVFbfEm/Bq/+ cBv3TkNf+TlB4X0tqcXNTZ06L3IoSVsrmVGFshXU=
From: Ryan Hamilton <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6ZMYBAKR2ALB7Q2D53TCLY7EVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/535010726@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b650f386e8_75443fc4132cd96076860"; 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/xo7hFea1A651HAuptWSCjqPshJc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 13:01:11 -0000

----==_mimepart_5d8b650f386e8_75443fc4132cd96076860
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

+1 Robustness is important.=0D
=0D
On Wed, Sep 25, 2019 at 12:31 AM Marten Seemann <notifications@github.com=
>=0D
wrote:=0D
=0D
> I agree with @kazuho <https://github.com/kazuho>, @DavidSchinazi=0D
> <https://github.com/DavidSchinazi> and @ianswett=0D
> <https://github.com/ianswett>. Making the protocol robust against bit=0D=

> flips should be our first priority, even if it's a (little?) bit more=0D=

> expensive for the sender of Retry packets.=0D
>=0D
> =E2=80=94=0D
> You are receiving this because you were mentioned.=0D
> Reply to this email directly, view it on GitHub=0D
> <https://github.com/quicwg/base-drafts/issues/3014?email_source=3Dnotif=
ications&email_token=3DAEVHVSQADYBUZAV4DKGKA6DQLMHVHA5CNFSM4IVITWZKYY3PNV=
WWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q5BSA#issuecommen=
t-534892744>,=0D
> or mute the thread=0D
> <https://github.com/notifications/unsubscribe-auth/AEVHVSTU3D2AP3HSDX55=
6PLQLMHVHANCNFSM4IVITWZA>=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/3014#issuecomment-535010726=

----==_mimepart_5d8b650f386e8_75443fc4132cd96076860
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

+1 Robustness is important.<br>=0D
<br>=0D
On Wed, Sep 25, 2019 at 12:31 AM Marten Seemann &lt;notifications@github.=
com&gt;<br>=0D
wrote:<br>=0D
<br>=0D
&gt; I agree with @kazuho &lt;https://github.com/kazuho&gt;, @DavidSchina=
zi<br>=0D
&gt; &lt;https://github.com/DavidSchinazi&gt; and @ianswett<br>=0D
&gt; &lt;https://github.com/ianswett&gt;. Making the protocol robust agai=
nst bit<br>=0D
&gt; flips should be our first priority, even if it&#39;s a (little?) bit=
 more<br>=0D
&gt; expensive for the sender of Retry packets.<br>=0D
&gt;<br>=0D
&gt; =E2=80=94<br>=0D
&gt; You are receiving this because you were mentioned.<br>=0D
&gt; Reply to this email directly, view it on GitHub<br>=0D
&gt; &lt;https://github.com/quicwg/base-drafts/issues/3014?email_source=3D=
notifications&amp;email_token=3DAEVHVSQADYBUZAV4DKGKA6DQLMHVHA5CNFSM4IVIT=
WZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7Q5BSA#is=
suecomment-534892744&gt;,<br>=0D
&gt; or mute the thread<br>=0D
&gt; &lt;https://github.com/notifications/unsubscribe-auth/AEVHVSTU3D2AP3=
HSDX556PLQLMHVHANCNFSM4IVITWZA&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/3014?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK4F4742QIMGLVVBFR3QLNOI7A5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7RZ3JQ#issuecomment-535010726">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJKYWP4CEWZ64LZXCM6DQLNOI7ANCNFSM4IVITWZA">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJK53265CK7OWYY3GHCLQ=
LNOI7A5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD7RZ3JQ.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/3014?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK4F4742QIMGLVVBFR3QLNOI7A5CNFSM4=
IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7RZ3J=
Q#issuecomment-535010726",=0D
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=3D=
notifications\u0026email_token=3DAFTOJK4F4742QIMGLVVBFR3QLNOI7A5CNFSM4IVI=
TWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7RZ3JQ#i=
ssuecomment-535010726",=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_5d8b650f386e8_75443fc4132cd96076860--


From nobody Wed Sep 25 06: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 6B5A612080B for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 06:06:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 KGinFZ_dYgGR for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 06:06: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 BC3C512022C for <quic-issues@ietf.org>; Wed, 25 Sep 2019 06:06:28 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id 2A9302C3345 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 06:06:28 -0700 (PDT)
Date: Wed, 25 Sep 2019 06:06:28 -0700
From: Ryan Hamilton <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK75RTTT72NOLEGUNV53TCMNJEVBNHHB3JNFTE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3063/535012880@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3063@github.com>
References: <quicwg/base-drafts/issues/3063@github.com>
Subject: Re: [quicwg/base-drafts] http: Allow unquoted tokens in Alt-Svc quic parameter (#3063)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b66541c10f_31363f975c8cd95c2363a6"; 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/Jp0PpLvcmtPWwbbqVOCOxBVpTw0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 13:06:31 -0000

----==_mimepart_5d8b66541c10f_31363f975c8cd95c2363a6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

But that's the ma=3D field, not the quic=3D field, right? (This issue is =
about=0D
the quic=3D field, I think)=0D
=0D
On Wed, Sep 25, 2019 at 5:24 AM MikkelFJ <notifications@github.com> wrote=
:=0D
=0D
> To highlight my earlier point, on slack the following was posted=0D
>=0D
> Specifically: I have an H1/H2 server running on ports 443 and 4433 whic=
h=0D
> advertises=0D
> alt-svc: h3-23=3D":4433"; ma=3D3600=0D
>=0D
> The issue appears to not be the unquoted ma=3D3600, but it does suggest=
 we=0D
> will see unquoted strings in the wild.=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/3063?email_source=3Dnotif=
ications&email_token=3DAEVHVSVMASRXRELYTEAKLWTQLNJ6XA5CNFSM4IZWYYM2YY3PNV=
WWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7RWLWQ#issuecommen=
t-534996442>,=0D
> or mute the thread=0D
> <https://github.com/notifications/unsubscribe-auth/AEVHVSSU5ZHOPBWYSKQ4=
GJTQLNJ6XANCNFSM4IZWYYMQ>=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/3063#issuecomment-535012880=

----==_mimepart_5d8b66541c10f_31363f975c8cd95c2363a6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

But that&#39;s the ma=3D field, not the quic=3D field, right? (This issue=
 is about<br>=0D
the quic=3D field, I think)<br>=0D
<br>=0D
On Wed, Sep 25, 2019 at 5:24 AM MikkelFJ &lt;notifications@github.com&gt;=
 wrote:<br>=0D
<br>=0D
&gt; To highlight my earlier point, on slack the following was posted<br>=
=0D
&gt;<br>=0D
&gt; Specifically: I have an H1/H2 server running on ports 443 and 4433 w=
hich<br>=0D
&gt; advertises<br>=0D
&gt; alt-svc: h3-23=3D&quot;:4433&quot;; ma=3D3600<br>=0D
&gt;<br>=0D
&gt; The issue appears to not be the unquoted ma=3D3600, but it does sugg=
est we<br>=0D
&gt; will see unquoted strings in the wild.<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/3063?email_source=3D=
notifications&amp;email_token=3DAEVHVSVMASRXRELYTEAKLWTQLNJ6XA5CNFSM4IZWY=
YM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7RWLWQ#is=
suecomment-534996442&gt;,<br>=0D
&gt; or mute the thread<br>=0D
&gt; &lt;https://github.com/notifications/unsubscribe-auth/AEVHVSSU5ZHOPB=
WYSKQ4GJTQLNJ6XANCNFSM4IZWYYMQ&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/3063?email_source=3Dnotifications&amp;email_token=3D=
AFTOJKZQLEWSKDBADDC3OPDQLNO5JA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7R2MEA#issuecomment-535012880">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJKYIOVRIVV7GJBSS6KDQLNO5JANCNFSM4IZWYYMQ">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJKZJLE3RRCBJ5RFY4CDQ=
LNO5JA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD7R2MEA.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/3063?email_source=
=3Dnotifications\u0026email_token=3DAFTOJKZQLEWSKDBADDC3OPDQLNO5JA5CNFSM4=
IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7R2ME=
A#issuecomment-535012880",=0D
"url": "https://github.com/quicwg/base-drafts/issues/3063?email_source=3D=
notifications\u0026email_token=3DAFTOJKZQLEWSKDBADDC3OPDQLNO5JA5CNFSM4IZW=
YYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7R2MEA#i=
ssuecomment-535012880",=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_5d8b66541c10f_31363f975c8cd95c2363a6--


From nobody Wed Sep 25 06:16: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 9709C120806 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 06:15: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 UMkW8ib9SfRr for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 06:15: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 E63DD120043 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 06:15:56 -0700 (PDT)
Date: Wed, 25 Sep 2019 06:15:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569417356; bh=/ysAF4P5WJvqizNJsb8GMBjIQa86SDMxa27ohk40P60=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Ut0QLzkfeNorWXhh9VIV+2HD6HKWJrSlGR9Xmk+941vUQLRybl/9Nc8BwbS6uv05v e1kYZT0YR2NrY+W7e+FjU9omCd3xAiPmZzUB02FuGxNBk9VHBQHPrcQSHP225T/cTF 1klu3qW53OiyFb7AUDNo2NkqefwmqPGtKTqSGGeA=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYLI6BHDU2LUT7MJ6N3TCGPZEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/535016758@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b688c42666_1bc53fc86b2cd96822552e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZPQ-mlEQIs7QrrXax0MqJIzd7Lw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 13:15:59 -0000

----==_mimepart_5d8b688c42666_1bc53fc86b2cd96822552e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

To be fair, this isn't just about running an AEAD over a relatively short packet.  It's running HKDF as well.  If you weren't inclined to process the packet, that's a fairly big jump in cost.

So it's not just twice the cost.  SHA-256 tends to be more expensive than AES, even with AES and its fairly clunky key setup.  You run multiple iterations of SHA-256 to generate the keys.

I personally think that this is worth doing, but I don't operate a service at scale.  I'd like something more concrete than "this is expensive", but I'm willing to concede that this is a considerable increase in cost for a DoS protection device.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-535016758
----==_mimepart_5d8b688c42666_1bc53fc86b2cd96822552e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>To be fair, this isn't just about running an AEAD over a relatively short packet.  It's running HKDF as well.  If you weren't inclined to process the packet, that's a fairly big jump in cost.</p>
<p>So it's not just twice the cost.  SHA-256 tends to be more expensive than AES, even with AES and its fairly clunky key setup.  You run multiple iterations of SHA-256 to generate the keys.</p>
<p>I personally think that this is worth doing, but I don't operate a service at scale.  I'd like something more concrete than "this is expensive", but I'm willing to concede that this is a considerable increase in cost for a DoS protection device.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJK67JKEHOP3ZGSQFIU3QLNQAZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7R3KNQ#issuecomment-535016758">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZLTO5ACNEA23GDW3TQLNQAZANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3E755TO6T332KD2I3QLNQAZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7R3KNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK67JKEHOP3ZGSQFIU3QLNQAZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7R3KNQ#issuecomment-535016758",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK67JKEHOP3ZGSQFIU3QLNQAZA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7R3KNQ#issuecomment-535016758",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8b688c42666_1bc53fc86b2cd96822552e--


From nobody Wed Sep 25 06:24: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 50625120815 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 06:24:31 -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 QFefU7_U5zkf for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 06:24:29 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A7AD2120806 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 06:24:29 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id E9ADDA084F for <quic-issues@ietf.org>; Wed, 25 Sep 2019 06:24:28 -0700 (PDT)
Date: Wed, 25 Sep 2019 06:24:28 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2FSGXVMSPJWI6UUMN3TCVRZEVBNHHB3JNFTE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3063/535020366@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3063@github.com>
References: <quicwg/base-drafts/issues/3063@github.com>
Subject: Re: [quicwg/base-drafts] http: Allow unquoted tokens in Alt-Svc quic parameter (#3063)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b6a8cdb5dc_10443fe5f5ccd95c18717d"; 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/6XFXJMPslUgXLg3h9WwEOROSfIs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 13:24:32 -0000

----==_mimepart_5d8b6a8cdb5dc_10443fe5f5ccd95c18717d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

As I said elsewhere, the current text in draft-23 stems from a Structured Headers issue related to wanting to advertise multiple versions of QUIC.  https://github.com/httpwg/http-extensions/issues/281

Alt-Svc isn't a structured one but if it were (e.g. if someone wanted to write a generic Structured Header parser) then there was a danger that the rules preventing dictionary key repetition would have prevented an endpoint sending multiple `quic` parameters e.g. `Alt-svc: ":443"; quic=1; quic=1abadaba`.

To mitigate the risk, the quic parameter was changed to a DQUOTED comma-separated list as part of https://github.com/quicwg/base-drafts/issues/1093.

This issue addresses the correctness within the Alt-Svc spec but does it reopen the can related to Structured 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/3063#issuecomment-535020366
----==_mimepart_5d8b6a8cdb5dc_10443fe5f5ccd95c18717d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>As I said elsewhere, the current text in draft-23 stems from a Structured Headers issue related to wanting to advertise multiple versions of QUIC.  <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="199098919" data-permission-text="Issue title is private" data-url="https://github.com/httpwg/http-extensions/issues/281" data-hovercard-type="issue" data-hovercard-url="/httpwg/http-extensions/issues/281/hovercard" href="https://github.com/httpwg/http-extensions/issues/281">httpwg/http-extensions#281</a></p>
<p>Alt-Svc isn't a structured one but if it were (e.g. if someone wanted to write a generic Structured Header parser) then there was a danger that the rules preventing dictionary key repetition would have prevented an endpoint sending multiple <code>quic</code> parameters e.g. <code>Alt-svc: ":443"; quic=1; quic=1abadaba</code>.</p>
<p>To mitigate the risk, the quic parameter was changed to a DQUOTED comma-separated list as part of <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="293902356" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/1093" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/1093/hovercard" href="https://github.com/quicwg/base-drafts/issues/1093">#1093</a>.</p>
<p>This issue addresses the correctness within the Alt-Svc spec but does it reopen the can related to Structured Headers?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications&amp;email_token=AFTOJK4742ZNB4DA3BA6Q3LQLNRAZA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7R4GTQ#issuecomment-535020366">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3F4KTLRJ3RH3Y2NIDQLNRAZANCNFSM4IZWYYMQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZVEW2RJEEG2GY56ADQLNRAZA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7R4GTQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications\u0026email_token=AFTOJK4742ZNB4DA3BA6Q3LQLNRAZA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7R4GTQ#issuecomment-535020366",
"url": "https://github.com/quicwg/base-drafts/issues/3063?email_source=notifications\u0026email_token=AFTOJK4742ZNB4DA3BA6Q3LQLNRAZA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7R4GTQ#issuecomment-535020366",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8b6a8cdb5dc_10443fe5f5ccd95c18717d--


From nobody Wed Sep 25 06: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 27AAE12008C for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 06:28:08 -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 YGev2OVWIWy6 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 06:28: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 3E81712004A for <quic-issues@ietf.org>; Wed, 25 Sep 2019 06:28:06 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 99E678C1EB7 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 06:28:05 -0700 (PDT)
Date: Wed, 25 Sep 2019 06:28:05 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7WXMW6OVARY73NKJ53TCO6LEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/535022144@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b6b658a891_103a3fe5f5ccd95c15384e"; 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/bKRwoBkHeTgdgyGmZOWwQ4le1fs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 13:28:08 -0000

----==_mimepart_5d8b6b658a891_103a3fe5f5ccd95c15384e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> I'd like something more concrete than "this is expensive", but I'm willing to concede that this is a considerable increase in cost for a DoS protection device.

I share the same view. We have discussed this previously, and the conclusion was to not apply AEAD to the Retry packets. I think this issue warrants us the chance to revisit the previous conclusion, but I think it's worth wondering if we can find a solution without enforcing the use of AEAD.

That's why I am suggesting the use of optional GMAC. The straw-man is as follows.

When a client receives a Retry packet, it checks the last 16 bytes of the packet. If the last 16 bytes are equal to the original DCID, the packet is considered to be _not_ protected by the AEAD. The token is the rest of the packet payload. If the last 16 bytes is anything else, the packet is considered to be protected by the AEAD. The requirement to the server would be that it should either AEAD-protect the Retry packet, or use the UDP checksum.

There would no longer be a ODCID field.

I think this straw-man might be somewhat better than the "worst" of the two approach being combined, and that it might be something that we can go with.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-535022144
----==_mimepart_5d8b6b658a891_103a3fe5f5ccd95c15384e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>I'd like something more concrete than "this is expensive", but I'm willing to concede that this is a considerable increase in cost for a DoS protection device.</p>
</blockquote>
<p>I share the same view. We have discussed this previously, and the conclusion was to not apply AEAD to the Retry packets. I think this issue warrants us the chance to revisit the previous conclusion, but I think it's worth wondering if we can find a solution without enforcing the use of AEAD.</p>
<p>That's why I am suggesting the use of optional GMAC. The straw-man is as follows.</p>
<p>When a client receives a Retry packet, it checks the last 16 bytes of the packet. If the last 16 bytes are equal to the original DCID, the packet is considered to be <em>not</em> protected by the AEAD. The token is the rest of the packet payload. If the last 16 bytes is anything else, the packet is considered to be protected by the AEAD. The requirement to the server would be that it should either AEAD-protect the Retry packet, or use the UDP checksum.</p>
<p>There would no longer be a ODCID field.</p>
<p>I think this straw-man might be somewhat better than the "worst" of the two approach being combined, and that it might be something that we can go with.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJK7IZJ2HJ3ZNSCBXSDDQLNROLA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7R4UQA#issuecomment-535022144">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYGTHUAQD6O2M25NPLQLNROLANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZIXA5SF3JFJWVE4FTQLNROLA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7R4UQA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK7IZJ2HJ3ZNSCBXSDDQLNROLA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7R4UQA#issuecomment-535022144",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK7IZJ2HJ3ZNSCBXSDDQLNROLA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7R4UQA#issuecomment-535022144",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8b6b658a891_103a3fe5f5ccd95c15384e--


From nobody Wed Sep 25 07:31: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 3E96A1200C4 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 07:31:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 HE7jb-88X1as for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 07:31:20 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6873512006E for <quic-issues@ietf.org>; Wed, 25 Sep 2019 07:31:20 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 764088C0549 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 07:31:19 -0700 (PDT)
Date: Wed, 25 Sep 2019 07:31:19 -0700
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK47Q3GUNH5UGTFEYRV3TC5MPEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/535051316@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b7a37679cc_f4a3f8aa8ecd96c15055e"; 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/rN5QyIjN7G2fsvCaoy1Z1-HIOlM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 14:31:22 -0000

----==_mimepart_5d8b7a37679cc_f4a3f8aa8ecd96c15055e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm not exactly what more you need than "this is expensive". Obviously the HW can't be built and then we decide what to do. I just did a quick and dirty perf test (not sure if RSS was completely configured), and these were some numbers of our software QUIC stack for a CPU limited sender:
```
Encryption          45.32%
UDP Send            36.86%
Stream Data Copy     6.07%
ACK Processing       3.65%
```
The leftovers are for various smaller things. This is also on a machine that doesn't support all the HW offloads we support in Windows, so the UDP number can go down (drastically, giving numbers closer to the one I gave before). Also, while I am no crypto expert, I do not believe Windows bcrypt APIs are overly costly, compared to other libraries.

I know UDP has been expensive in the past, but that's no longer the case. I feel we should not use that past behavior as an excuse to default to computationally expensive solutions, where other solutions are available.

And again, like mikkelfj said you can't directly compare HW and SW solutions very 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/3014#issuecomment-535051316
----==_mimepart_5d8b7a37679cc_f4a3f8aa8ecd96c15055e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I'm not exactly what more you need than "this is expensive". Obviously the HW can't be built and then we decide what to do. I just did a quick and dirty perf test (not sure if RSS was completely configured), and these were some numbers of our software QUIC stack for a CPU limited sender:</p>
<pre><code>Encryption          45.32%
UDP Send            36.86%
Stream Data Copy     6.07%
ACK Processing       3.65%
</code></pre>
<p>The leftovers are for various smaller things. This is also on a machine that doesn't support all the HW offloads we support in Windows, so the UDP number can go down (drastically, giving numbers closer to the one I gave before). Also, while I am no crypto expert, I do not believe Windows bcrypt APIs are overly costly, compared to other libraries.</p>
<p>I know UDP has been expensive in the past, but that's no longer the case. I feel we should not use that past behavior as an excuse to default to computationally expensive solutions, where other solutions are available.</p>
<p>And again, like mikkelfj said you can't directly compare HW and SW solutions very 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/3014?email_source=notifications&amp;email_token=AFTOJK5UI6KSMOPJKOWD4N3QLNY3PA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7SDYNA#issuecomment-535051316">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3EGK5LGFYI2WOTJADQLNY3PANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7DH3AHW6RASCZDDNTQLNY3PA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7SDYNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK5UI6KSMOPJKOWD4N3QLNY3PA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7SDYNA#issuecomment-535051316",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK5UI6KSMOPJKOWD4N3QLNY3PA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7SDYNA#issuecomment-535051316",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8b7a37679cc_f4a3f8aa8ecd96c15055e--


From nobody Wed Sep 25 07:51: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 0D33912096B for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 07:51: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 LAcOjt1ONzpy for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 07:51: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 888F0120941 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 07:51:31 -0700 (PDT)
Date: Wed, 25 Sep 2019 07:51:30 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569423090; bh=nhrn1wSwBj1pJ3q8DP13BSRmiSb1/HHM/Ws47kJVBVg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=p5jCWf/Z9mUHXgShfieVwsaDPxlIJRW2oAMR3gvvSsmtPKix9Cjw5SbkNKPDWS2GK LvrHOw1s3uRdx5xlf5GDDwnW1/s+9ZksgcbzvS0Va2BDnPb/FGGSLIZKRGlV/vt08N X7sMZcf4NhZLJR9/Uo+8ZfXUQM6CQNQFPTRZ94Bg=
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5RWEGWIVPOZQFCVP53TC7YFEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/535060731@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b7ef248182_53f93fe01eacd968192551"; 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/jsgnPagm6lQFJRkHqJDZyHMNItY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 14:51:33 -0000

----==_mimepart_5d8b7ef248182_53f93fe01eacd968192551
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

So to be clear, I do vote a Initial like authentication scheme in Retry, as I hope I have stated earlier. But @nibanks concern is valid. I just don't think they have to be mutually exclusive:

You can have tail authentication tags and have other data that is fast for hardware to verify even if the filter is not perfect. I'd rather not rely on UDP headers for anything but IP routing.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-535060731
----==_mimepart_5d8b7ef248182_53f93fe01eacd968192551
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>So to be clear, I do vote a Initial like authentication scheme in Retry, as I hope I have stated earlier. But <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> concern is valid. I just don't think they have to be mutually exclusive:</p>
<p>You can have tail authentication tags and have other data that is fast for hardware to verify even if the filter is not perfect. I'd rather not rely on UDP headers for anything but IP routing.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJKYQYJUUNFS7PRV7SVTQLN3HFA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7SGB6Y#issuecomment-535060731">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3GJR4NXPLKJF7Z7NDQLN3HFANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4MMBVSLAC6V3YV6KTQLN3HFA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7SGB6Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJKYQYJUUNFS7PRV7SVTQLN3HFA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7SGB6Y#issuecomment-535060731",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJKYQYJUUNFS7PRV7SVTQLN3HFA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7SGB6Y#issuecomment-535060731",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8b7ef248182_53f93fe01eacd968192551--


From nobody Wed Sep 25 08:12: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 4AD961200C7 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 08:12:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 NjZw12GdolXP for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 08:12:24 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 961BE120091 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 08:12:24 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id A84C5520550 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 08:12:23 -0700 (PDT)
Date: Wed, 25 Sep 2019 08:12:23 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-eliciting/000000-22239c@github.com>
Subject: [quicwg/base-drafts] 22239c: ack-eliciting not 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/2-dUq6amgAdJGgG8NnovRLvXS8o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 15:12:27 -0000

  Branch: refs/heads/ianswett-ack-eliciting
  Home:   https://github.com/quicwg/base-drafts
  Commit: 22239c60048e3c8266ed52fa7fa26e827dfb4c27
      https://github.com/quicwg/base-drafts/commit/22239c60048e3c8266ed52fa7fa26e827dfb4c27
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-25 (Wed, 25 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  ack-eliciting not ACK-eliciting

Fixes #3068



From nobody Wed Sep 25 08:13: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 84B12120025 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 08:13: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 Gmz5krO0bWzs for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 08:13: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 EA72E120241 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 08:12:59 -0700 (PDT)
Date: Wed, 25 Sep 2019 08:12:59 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569424379; bh=jSMMN6MeINr80xTWD6tgqoa4rUgQw0zBWittqkIQ51Y=; h=Date:From:To:Subject:From; b=1tWJGws0EoPYbOy7kiHcJDUe+m6XnrEcwHpOfazUTrc/pxNPiuhgXhgoDE6mqeXMP 2+Dkhr5xB5Blcvfgl7nQOn4tV8Nla/FoHthETIwNREOAr1A5fjswqc96NzHF343bAE h+0O2HagutbOUWDT7WvCt8QfFmuKGB8r3Ky/cvNo=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/9e44aa-2a55f7@github.com>
Subject: [quicwg/base-drafts] 2a55f7: Script updating gh-pages from 22239c60. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1i9uH2X0wdc4KNKenqGUAwcL9ho>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 15:13:06 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2a55f7ba88eb6f55a104330b88bd883d8802990c
      https://github.com/quicwg/base-drafts/commit/2a55f7ba88eb6f55a104330b88bd883d8802990c
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-25 (Wed, 25 Sep 2019)

  Changed paths:
    R coalesce-retry-vn/draft-ietf-quic-http.html
    R coalesce-retry-vn/draft-ietf-quic-http.txt
    R coalesce-retry-vn/draft-ietf-quic-invariants.html
    R coalesce-retry-vn/draft-ietf-quic-invariants.txt
    R coalesce-retry-vn/draft-ietf-quic-qpack.html
    R coalesce-retry-vn/draft-ietf-quic-qpack.txt
    R coalesce-retry-vn/draft-ietf-quic-recovery.html
    R coalesce-retry-vn/draft-ietf-quic-recovery.txt
    R coalesce-retry-vn/draft-ietf-quic-tls.html
    R coalesce-retry-vn/draft-ietf-quic-tls.txt
    R coalesce-retry-vn/draft-ietf-quic-transport.html
    R coalesce-retry-vn/draft-ietf-quic-transport.txt
    R coalesce-retry-vn/index.html
    A ianswett-ack-eliciting/draft-ietf-quic-http.html
    A ianswett-ack-eliciting/draft-ietf-quic-http.txt
    A ianswett-ack-eliciting/draft-ietf-quic-invariants.html
    A ianswett-ack-eliciting/draft-ietf-quic-invariants.txt
    A ianswett-ack-eliciting/draft-ietf-quic-qpack.html
    A ianswett-ack-eliciting/draft-ietf-quic-qpack.txt
    A ianswett-ack-eliciting/draft-ietf-quic-recovery.html
    A ianswett-ack-eliciting/draft-ietf-quic-recovery.txt
    A ianswett-ack-eliciting/draft-ietf-quic-tls.html
    A ianswett-ack-eliciting/draft-ietf-quic-tls.txt
    A ianswett-ack-eliciting/draft-ietf-quic-transport.html
    A ianswett-ack-eliciting/draft-ietf-quic-transport.txt
    A ianswett-ack-eliciting/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 22239c60. [ci skip]



From nobody Wed Sep 25 08:14: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 56B59120025 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 08:14: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 vL0NK0JbMBYC for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 08:14: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 36CBC12022A for <quic-issues@ietf.org>; Wed, 25 Sep 2019 08:14:08 -0700 (PDT)
Date: Wed, 25 Sep 2019 08:14:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569424447; bh=/DoK2AlBSYWLGjEH1g3566MLlECWeqWMeVkKydnuIPw=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=aBwFfTLhPbUszLzgbq+wVR+LZ1y36QbUKeoyYy5jZcA2lVjaPweTKWT4umOKigNXS XXAae5meyKwUfIqHPmR4YT6L8Alyl/o/efvZrrkEaern3tcC5RqhwAOE2snOe4OHni HlhRYqholAHHKT0l+UME670rvQJfgXuP0HuRRUQQ=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK64I7NIY2FB37IPT5N3TDCM7EVBNHHB3NCBX4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3069@github.com>
Subject: [quicwg/base-drafts] ack-eliciting not ACK-eliciting (#3069)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8b843f51401_549c3ff2d46cd96c1160a1"; 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/neabtFUuPx05G58xUF2lcObU0Bw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 15:14:13 -0000

----==_mimepart_5d8b843f51401_549c3ff2d46cd96c1160a1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Fixes #3068
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3069

-- Commit Summary --

  * ack-eliciting not ACK-eliciting

-- File Changes --

    M draft-ietf-quic-transport.md (32)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3069.patch
https://github.com/quicwg/base-drafts/pull/3069.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/3069

----==_mimepart_5d8b843f51401_549c3ff2d46cd96c1160a1
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 #3068.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="498083601" data-permission-text="Issue title is private" data-url="https://github.com/quicwg/base-drafts/issues/3068" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3068/hovercard" href="https://github.com/quicwg/base-drafts/issues/3068">#3068</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/3069'>https://github.com/quicwg/base-drafts/pull/3069</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>ack-eliciting not ACK-eliciting</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3069/files#diff-0">draft-ietf-quic-transport.md</a>
    (32)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3069.patch'>https://github.com/quicwg/base-drafts/pull/3069.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3069.diff'>https://github.com/quicwg/base-drafts/pull/3069.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/3069?email_source=notifications&amp;email_token=AFTOJK7MCH7SBDDQ2KO3GMDQLN537A5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNUIG7Q">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5B3WYM4XN7C5US2BLQLN537ANCNFSM4I2OHT2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7ZEOOOJUKCQXHP5CLQLN537A5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNUIG7Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3069?email_source=notifications\u0026email_token=AFTOJK7MCH7SBDDQ2KO3GMDQLN537A5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNUIG7Q",
"url": "https://github.com/quicwg/base-drafts/pull/3069?email_source=notifications\u0026email_token=AFTOJK7MCH7SBDDQ2KO3GMDQLN537A5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNUIG7Q",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8b843f51401_549c3ff2d46cd96c1160a1--


From nobody Wed Sep 25 11:59: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 2D441120178 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 11:59: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 gGNPpnrjGjx1 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 11:59:08 -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 0F3FD120048 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 11:59:08 -0700 (PDT)
Date: Wed, 25 Sep 2019 11:59:07 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569437947; bh=5ewixUDUKeNvTelpITvdfvRG8hBAH81UCu5EO19hLG0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LPiyPnLkDsEInZdq1WUQJEe/Sjrv2OrBBLfw4sJktOvWfYKjlUAJjAS7pbCAd3wJb mS2tkEMcCPyd0jYtPpP/POXhH+BdDA8zUD+XZL4CfvTiileSKTpuIqbTkAM1eby4Kv L8R4oSq2IsfnxVg2OR35GQMlZ/gGxf7ic2ywUVMc=
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3RNRLGJFO7E3N7YLF3TD4YXEVBNHHB3NCBX4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3069/c535164281@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3069@github.com>
References: <quicwg/base-drafts/pull/3069@github.com>
Subject: Re: [quicwg/base-drafts] ack-eliciting not ACK-eliciting (#3069)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8bb8fb1779a_49223ffb4cccd968123731"; 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/MMI3ZK6GLoH_j8vTS_0P8O3OjSU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 18:59:10 -0000

----==_mimepart_5d8bb8fb1779a_49223ffb4cccd968123731
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

We use ACK for ACK frame and 'acknowledgment' instead of 'ack'. I think this should be ACK-eliciting. I suppose if ack-eliciting were defined as a term that might make it ok to use... can you bring the term over from the recovery doc into the transport 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/3069#issuecomment-535164281
----==_mimepart_5d8bb8fb1779a_49223ffb4cccd968123731
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>We use ACK for ACK frame and 'acknowledgment' instead of 'ack'. I think this should be ACK-eliciting. I suppose if ack-eliciting were defined as a term that might make it ok to use... can you bring the term over from the recovery doc into the transport 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/3069?email_source=notifications&amp;email_token=AFTOJK36EFBFXYUCCOQ4A2LQLOYHXA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7S7K6I#issuecomment-535164281">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3HB4WYS66I5S63IHTQLOYHXANCNFSM4I2OHT2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6XJ2FACYEG7NGRLPTQLOYHXA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7S7K6I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3069?email_source=notifications\u0026email_token=AFTOJK36EFBFXYUCCOQ4A2LQLOYHXA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7S7K6I#issuecomment-535164281",
"url": "https://github.com/quicwg/base-drafts/pull/3069?email_source=notifications\u0026email_token=AFTOJK36EFBFXYUCCOQ4A2LQLOYHXA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7S7K6I#issuecomment-535164281",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8bb8fb1779a_49223ffb4cccd968123731--


From nobody Wed Sep 25 12:39: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 35B681207FD for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 12:39: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 VjHCXlRzk5mS for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 12:39: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 814781200CD for <quic-issues@ietf.org>; Wed, 25 Sep 2019 12:39:17 -0700 (PDT)
Date: Wed, 25 Sep 2019 12:39:16 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569440356; bh=Hh7VvG7xQGspemLJDw8VgyKx4ooWCl15xUv+UX/5HII=; h=Date:From:To:Subject:From; b=SDJqFAjITYsM4PHGlCqdMw9fC+1ugSwgbenz8XVVVzqZhHJwXmFW5j4ByOGNPfEiC AfOjJkkk9FCcCW/x6bDfIJD3E1RXHT6Zj0o5gKhhlwek4lGQiEh/+UhokR6Zy6dpOd QC1Baocqk16hUBZll8S8ITd3uhHVogzpswH/8DgM=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-eliciting/22239c-1d0274@github.com>
Subject: [quicwg/base-drafts] 1d0274: Define 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/yyquS-XmGZDnEthavs2it7BZbaQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 19:39:19 -0000

  Branch: refs/heads/ianswett-ack-eliciting
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1d0274ff01eafb4dc088a09976f949fe2899150c
      https://github.com/quicwg/base-drafts/commit/1d0274ff01eafb4dc088a09976f949fe2899150c
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-25 (Wed, 25 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Define Ack-eliciting packet



From nobody Wed Sep 25 12:39: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 B0D471207FE for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 12:39:27 -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 YIBFmcaisYrE for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 12:39: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 9B3331202DD for <quic-issues@ietf.org>; Wed, 25 Sep 2019 12:39:25 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id DA3CC8C03B2 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 12:39:24 -0700 (PDT)
Date: Wed, 25 Sep 2019 12:39:24 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3069/push/4077011675@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3069@github.com>
References: <quicwg/base-drafts/pull/3069@github.com>
Subject: Re: [quicwg/base-drafts] ack-eliciting not ACK-eliciting (#3069)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8bc26ccc549_2c053ff6876cd96044049"; 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/BpbUzWY9t3Si5vSkhz972LX4oTo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 19:39:28 -0000

----==_mimepart_5d8bc26ccc549_2c053ff6876cd96044049
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

1d0274ff01eafb4dc088a09976f949fe2899150c  Define Ack-eliciting packet


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3069/files/22239c60048e3c8266ed52fa7fa26e827dfb4c27..1d0274ff01eafb4dc088a09976f949fe2899150c

----==_mimepart_5d8bc26ccc549_2c053ff6876cd96044049
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/1d0274ff01eafb4dc088a09976f949fe2899150c">1d0274f</a>  Define Ack-eliciting packet</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3069/files/22239c60048e3c8266ed52fa7fa26e827dfb4c27..1d0274ff01eafb4dc088a09976f949fe2899150c?email_source=notifications&amp;email_token=AFTOJKZJQYPYITTZFMVCNBDQLO46ZA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOMBRGE3DONI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3INUTRFQLX4HY6IFDQLO46ZANCNFSM4I2OHT2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4N2NNJFCEP5WQLZH3QLO46ZA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOMBRGE3DONI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3069/files/22239c60048e3c8266ed52fa7fa26e827dfb4c27..1d0274ff01eafb4dc088a09976f949fe2899150c?email_source=notifications\u0026email_token=AFTOJKZJQYPYITTZFMVCNBDQLO46ZA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOMBRGE3DONI",
"url": "https://github.com/quicwg/base-drafts/pull/3069/files/22239c60048e3c8266ed52fa7fa26e827dfb4c27..1d0274ff01eafb4dc088a09976f949fe2899150c?email_source=notifications\u0026email_token=AFTOJKZJQYPYITTZFMVCNBDQLO46ZA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOMBRGE3DONI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8bc26ccc549_2c053ff6876cd96044049--


From nobody Wed Sep 25 12: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 2445A1202DD for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 12:39:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 E1y1sJifQm6Z for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 12:39:50 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0A4471200CD for <quic-issues@ietf.org>; Wed, 25 Sep 2019 12:39:50 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 3DE042C2ED1 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 12:39:49 -0700 (PDT)
Date: Wed, 25 Sep 2019 12:39:49 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/2a55f7-097804@github.com>
Subject: [quicwg/base-drafts] 097804: Script updating gh-pages from 1d0274ff. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jSD1iv-OKczlMgfaOvtrOSTnWHc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 19:39:51 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 097804d12b13c1e9b54b82f4e5bb7391489e32de
      https://github.com/quicwg/base-drafts/commit/097804d12b13c1e9b54b82f4e5bb7391489e32de
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-25 (Wed, 25 Sep 2019)

  Changed paths:
    M ianswett-ack-eliciting/draft-ietf-quic-transport.html
    M ianswett-ack-eliciting/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 1d0274ff. [ci skip]



From nobody Wed Sep 25 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 15D3912081E for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 12:41:09 -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, TVD_SPACE_RATIO=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 a4Xw0rlOQcgq for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 12:41: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 BE6601202DD for <quic-issues@ietf.org>; Wed, 25 Sep 2019 12:41:07 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id EFC85660085 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 12:41:06 -0700 (PDT)
Date: Wed, 25 Sep 2019 12:41:06 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-eliciting/1d0274-dae6c3@github.com>
Subject: [quicwg/base-drafts] dae6c3: 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/AX6dWnY6uhVFWBjnP1tAP6xRdLU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 19:41:09 -0000

  Branch: refs/heads/ianswett-ack-eliciting
  Home:   https://github.com/quicwg/base-drafts
  Commit: dae6c31a90f737b6fa7b2fb67d5d481972c7a765
      https://github.com/quicwg/base-drafts/commit/dae6c31a90f737b6fa7b2fb67d5d481972c7a765
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-25 (Wed, 25 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md



From nobody Wed Sep 25 12:41: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 4541A120824 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 12:41: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 7DUlmuSwUdT6 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 12:41:16 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 642D11202DD for <quic-issues@ietf.org>; Wed, 25 Sep 2019 12:41:16 -0700 (PDT)
Date: Wed, 25 Sep 2019 12:41:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569440475; bh=TI0vFaA2c+g+N1DgH74klum9VDePB/ukGotCpzDBFok=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=iHuMKKFf/aZ1BB5uuOdxoHAbUip2GZIGkHjhM/Htp2ivZ+TIVS7ftCkKNgR3XU4tI lwNKw8yQ1QpZdewkc1PkuXiys7t6ZNjiTZq0zlShBzOM2w3cLP1oO1wHlrUZgsJUlz RkDrrSrfdQOFHoXevAkZNqQ3rQaO19XLmPV92VHQ=
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/3069/push/4077018359@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3069@github.com>
References: <quicwg/base-drafts/pull/3069@github.com>
Subject: Re: [quicwg/base-drafts] ack-eliciting not ACK-eliciting (#3069)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8bc2db596c9_39053fadfd0cd95c193991"; 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/Z4sqiRm1-ioh7Y0Or-nnfVoWLy0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 19:41:22 -0000

----==_mimepart_5d8bc2db596c9_39053fadfd0cd95c193991
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

dae6c31a90f737b6fa7b2fb67d5d481972c7a765  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/3069/files/1d0274ff01eafb4dc088a09976f949fe2899150c..dae6c31a90f737b6fa7b2fb67d5d481972c7a765

----==_mimepart_5d8bc2db596c9_39053fadfd0cd95c193991
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/dae6c31a90f737b6fa7b2fb67d5d481972c7a765">dae6c31</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/3069/files/1d0274ff01eafb4dc088a09976f949fe2899150c..dae6c31a90f737b6fa7b2fb67d5d481972c7a765?email_source=notifications&amp;email_token=AFTOJK6BBC7TXP4V4WRMVOTQLO5FXA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOMBRHAZTKOI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYRGRJYIJ5MUK7SY4DQLO5FXANCNFSM4I2OHT2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4TOMGUGZ5IDJPX4L3QLO5FXA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOMBRHAZTKOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3069/files/1d0274ff01eafb4dc088a09976f949fe2899150c..dae6c31a90f737b6fa7b2fb67d5d481972c7a765?email_source=notifications\u0026email_token=AFTOJK6BBC7TXP4V4WRMVOTQLO5FXA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOMBRHAZTKOI",
"url": "https://github.com/quicwg/base-drafts/pull/3069/files/1d0274ff01eafb4dc088a09976f949fe2899150c..dae6c31a90f737b6fa7b2fb67d5d481972c7a765?email_source=notifications\u0026email_token=AFTOJK6BBC7TXP4V4WRMVOTQLO5FXA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOMBRHAZTKOI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8bc2db596c9_39053fadfd0cd95c193991--


From nobody Wed Sep 25 12:42: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 CB20C120824 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 12:42:27 -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 9nWs99_MiuXo for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 12:42: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 58CD8120823 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 12:42:26 -0700 (PDT)
Date: Wed, 25 Sep 2019 12:42:25 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569440545; bh=/olkUWpAt/LcJ6JevhYBeR7E83E8rYlId2qY3PJYoNw=; h=Date:From:To:Subject:From; b=N4fqChHYT0NJmcC10DhvpD/oRjoaueZlv5e0hyp6jmXYIigroPFqF2mWFEMZFNB5q Gf0x3Fot4YGlChplS2QAxF6WptaOQ1xmCN0Shc9A/yaEml3kqxXx/aK0ddN4A90dFL YHNEh4xrc30YRlWF40Iunmzl6k2EOXi0jUlXCQQo=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-eliciting/dae6c3-7e738c@github.com>
Subject: [quicwg/base-drafts] 7e738c: 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/nJdgmVH-Ww3ZCIccRUCI-PEpBx4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 19:42:28 -0000

  Branch: refs/heads/ianswett-ack-eliciting
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7e738c6605dd9e5c5325b418955d8f167ff523af
      https://github.com/quicwg/base-drafts/commit/7e738c6605dd9e5c5325b418955d8f167ff523af
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-25 (Wed, 25 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md



From nobody Wed Sep 25 12:42: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 D79C9120823 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 12:42:35 -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 aR_xLtOJ1INY for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 12:42:34 -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 6C43D1202DD for <quic-issues@ietf.org>; Wed, 25 Sep 2019 12:42:34 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id CA5832C118A for <quic-issues@ietf.org>; Wed, 25 Sep 2019 12:42:33 -0700 (PDT)
Date: Wed, 25 Sep 2019 12:42:33 -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/3069/push/4077023140@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3069@github.com>
References: <quicwg/base-drafts/pull/3069@github.com>
Subject: Re: [quicwg/base-drafts] ack-eliciting not ACK-eliciting (#3069)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8bc329bba03_487d3f9fa26cd9607797a"; 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/zXjOfZWw8jDZ29zvOqHMf6DljZo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 19:42:36 -0000

----==_mimepart_5d8bc329bba03_487d3f9fa26cd9607797a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

7e738c6605dd9e5c5325b418955d8f167ff523af  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/3069/files/dae6c31a90f737b6fa7b2fb67d5d481972c7a765..7e738c6605dd9e5c5325b418955d8f167ff523af

----==_mimepart_5d8bc329bba03_487d3f9fa26cd9607797a
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/7e738c6605dd9e5c5325b418955d8f167ff523af">7e738c6</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/3069/files/dae6c31a90f737b6fa7b2fb67d5d481972c7a765..7e738c6605dd9e5c5325b418955d8f167ff523af?email_source=notifications&amp;email_token=AFTOJK7CTBLS3YWDRAK7RCLQLO5KTA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOMBSGMYTIMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3WV6QD43VUBOKTRCLQLO5KTANCNFSM4I2OHT2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3A6FKOOBOTYQYNESLQLO5KTA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOMBSGMYTIMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3069/files/dae6c31a90f737b6fa7b2fb67d5d481972c7a765..7e738c6605dd9e5c5325b418955d8f167ff523af?email_source=notifications\u0026email_token=AFTOJK7CTBLS3YWDRAK7RCLQLO5KTA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOMBSGMYTIMA",
"url": "https://github.com/quicwg/base-drafts/pull/3069/files/dae6c31a90f737b6fa7b2fb67d5d481972c7a765..7e738c6605dd9e5c5325b418955d8f167ff523af?email_source=notifications\u0026email_token=AFTOJK7CTBLS3YWDRAK7RCLQLO5KTA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOMBSGMYTIMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8bc329bba03_487d3f9fa26cd9607797a--


From nobody Wed Sep 25 12:43: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 89E64120850 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 12:43: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 Vy3zSkGXA1AI for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 12:43:03 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 58FEF120857 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 12:42:57 -0700 (PDT)
Date: Wed, 25 Sep 2019 12:42:56 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569440576; bh=it5KdMbkflNbdVPuDXPLbj+oO7L3jiJ3L9OUDd5nYjU=; h=Date:From:To:Subject:From; b=YSSXjpUBuUIp9gkTVul1r8Jfm3ElGB6/ALAmbxBtIrnByIaLVJ/Hu4yoXnU0J5bt4 ISXEwSdwhJgnQaHXwIeSyC0W8c4Ugva1Q/c6fMhKazs25Pt6ndWDRFfrgOdZvojxmG b8jjrVTdD2Lvw34L+hkAbMmwK8E8CblMWtIR5ULs=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/097804-d463fa@github.com>
Subject: [quicwg/base-drafts] d463fa: Script updating gh-pages from 7e738c66. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/nYpebfpU7qfmqRDlfbiHlLuHzgM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 19:43:05 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d463fab59dbda34419db1188ed357a1bca1c7d1d
      https://github.com/quicwg/base-drafts/commit/d463fab59dbda34419db1188ed357a1bca1c7d1d
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-25 (Wed, 25 Sep 2019)

  Changed paths:
    M ianswett-ack-eliciting/draft-ietf-quic-transport.html
    M ianswett-ack-eliciting/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 7e738c66. [ci skip]



From nobody Wed Sep 25 12:43: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 DB0D4120863 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 12:43: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 9PFIQCTgXhwm for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 12:43:05 -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 91F2F12085F for <quic-issues@ietf.org>; Wed, 25 Sep 2019 12:43:04 -0700 (PDT)
Date: Wed, 25 Sep 2019 12:43:03 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569440583; bh=+y0lk2sf9kMwssBzvJkr4A16WNeCzQz3GFzUnWk5SiA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Vz8WvQl4J/Ap2yw7P9mjRaciaiDOl8bUF1IK3EWrDRqsgQkBnMmW/GhkVL0oTXq/K HbvaK9ae4uYt3xujsIS14lU49yrRb9in7ElNcDwKDfQ3DfntNF58KoE7U8f/uw/2vK JF2lBXQwv9RTWxwvIzpoxhDv+qMqdwBSNhfIzkHA=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4QTX2T7ZEPAUTXM5F3TEB5PEVBNHHB3NCBX4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3069/c535180765@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3069@github.com>
References: <quicwg/base-drafts/pull/3069@github.com>
Subject: Re: [quicwg/base-drafts] ack-eliciting not ACK-eliciting (#3069)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8bc347dc3b2_31fb3fe21eacd95c14369"; 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/fe_s7RD4EztunYr-5MkIVcCkcrA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 19:43:08 -0000

----==_mimepart_5d8bc347dc3b2_31fb3fe21eacd95c14369
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Definition of ack-eliciting added.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3069#issuecomment-535180765
----==_mimepart_5d8bc347dc3b2_31fb3fe21eacd95c14369
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Definition of ack-eliciting added.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3069?email_source=notifications&amp;email_token=AFTOJK33CVAQDNV7XOE3LV3QLO5MPA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7TDLXI#issuecomment-535180765">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6WV2FCTZ4OEAVMFZDQLO5MPANCNFSM4I2OHT2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2DYCKZ6WIBVMDJP5TQLO5MPA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7TDLXI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3069?email_source=notifications\u0026email_token=AFTOJK33CVAQDNV7XOE3LV3QLO5MPA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7TDLXI#issuecomment-535180765",
"url": "https://github.com/quicwg/base-drafts/pull/3069?email_source=notifications\u0026email_token=AFTOJK33CVAQDNV7XOE3LV3QLO5MPA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7TDLXI#issuecomment-535180765",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8bc347dc3b2_31fb3fe21eacd95c14369--


From nobody Wed Sep 25 14:46: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 F2E2712004E for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 14:46:04 -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 Xmm6s2_5uJ1g for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 14:46: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 39676120018 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 14:46:03 -0700 (PDT)
Date: Wed, 25 Sep 2019 14:46:02 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569447962; bh=Yixfon38unqGwm4MUU0/3AIuc0kxGhBPYap7pwy0ysw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BnnU6flMGG11onCBBbMMdPLzHF36BkdM/wF7oxF2hkTP8Z31J3ZH7s9e8v5S05iCX 3sVAhESXjIcll7S45p7BACj+ImkyC6Iex9SGgi1kuXZmKFRGIHrSGFuhMr5tesgXPE GzDTiis8Kvd0DFdk7ZHc03msNoSdtjPm2V6PiPLY=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3XZY3J56JF4EYVGNV3TECIVEVBNHHB3NCBX4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3069/review/293382727@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3069@github.com>
References: <quicwg/base-drafts/pull/3069@github.com>
Subject: Re: [quicwg/base-drafts] ack-eliciting not ACK-eliciting (#3069)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8be01a4af6d_115b3f7e474cd95c1835c0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/u4brD9OCKP_SljYwuatEPHk4onQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Sep 2019 21:46:05 -0000

----==_mimepart_5d8be01a4af6d_115b3f7e474cd95c1835c0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson approved this pull request.

With a tweak.

> @@ -190,6 +190,11 @@ QUIC packet:
 : A complete processable unit of QUIC that can be encapsulated in a UDP
   datagram.  Multiple QUIC packets can be encapsulated in a single UDP datagram.
 
+Ack-eliciting Packet:
+
+: A QUIC packet that contain frames other than ACK and PADDING elicits an ACK

```suggestion
: A QUIC packet that contains frames other than ACK and PADDING. These cause a recipient
   to send an acknowledgment within the maximum ack delay.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3069#pullrequestreview-293382727
----==_mimepart_5d8be01a4af6d_115b3f7e474cd95c1835c0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><b>@martinthomson</b> approved this pull request.</p>=0D
=0D
<p>With a tweak.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3069#discussi=
on_r328354749">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -190,6 +190,11 @@ QUIC packet:=0D
 : A complete processable unit of QUIC that can be encapsulated in a UDP=0D=

   datagram.  Multiple QUIC packets can be encapsulated in a single UDP d=
atagram.=0D
 =0D
+Ack-eliciting Packet:=0D
+=0D
+: A QUIC packet that contain frames other than ACK and PADDING elicits a=
n ACK=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-: A QUIC packet that contain frames other tha=
n ACK and PADDING elicits an ACK=0D
+: A QUIC packet that contains frames other than ACK and PADDING. These c=
ause a recipient=0D
+   to send an acknowledgment within the maximum ack delay.=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/3069?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK4N5FVHD5CX2KUQUPDQLPLZVA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCF6KURY#pullrequestreview-293382727=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK6PAZQDAFBUBXFZ7WLQLPLZVANCNFSM4I2OHT2Q">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJK765HT4=
D3AL4EHTKKLQLPLZVA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCF6KURY.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/3069?email_source=3D=
notifications\u0026email_token=3DAFTOJK4N5FVHD5CX2KUQUPDQLPLZVA5CNFSM4I2O=
HT22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
F6KURY#pullrequestreview-293382727",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3069?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK4N5FVHD5CX2KUQUPDQLPLZVA5CNFSM4I2OHT=
22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCF6=
KURY#pullrequestreview-293382727",=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_5d8be01a4af6d_115b3f7e474cd95c1835c0--


From nobody Wed Sep 25 17: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 813901201C6 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 17:11:34 -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 TFs9gshqH5DW for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 17:11:32 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A7CAC12001A for <quic-issues@ietf.org>; Wed, 25 Sep 2019 17:11:32 -0700 (PDT)
Date: Wed, 25 Sep 2019 17:11:31 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569456692; bh=nfG/YIqDg61ZRWEZ3GTOGGxfvibvC7biV5aSUw67ImM=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=wZNJjRnqOfAIZOaeDi7qowz1xGHF+efBT49UcoQUyiIIZtQCqSJ4XU/85HrR1vlsm n4gwK2I6Iibtg8dYcZreVCV049Vltkbtwg3NsINs67gRMEwnN0kvy66wYKJShgLAw/ bsUvAPPfdwIhMbXtNRbdpx33AKgiVqy4nDLh/sFY=
From: Benjamin Saunders <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7Y3PPYEC6ZEVRIG2F3TFBMHEVBNHHB3N6DWQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3070@github.com>
Subject: [quicwg/base-drafts] Mysterious 1 vs 2 packet distinction in recovery pseudocode (#3070)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8c0233ee5a5_397f3fa8ee4cd96c78186"; 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/kA6GmwUPJ-P3Lx17HIgbD-XhMcc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 00:11:34 -0000

----==_mimepart_5d8c0233ee5a5_397f3fa8ee4cd96c78186
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

[The pseudocode](https://quicwg.org/base-drafts/draft-ietf-quic-recovery.html#rfc.appendix.A.9) only potentially sends 2 packets if the endpoint is a server or if 1-RTT keys are had. It's unclear why this distinction is made, as opposed to sending "one or two" packets in every case. The text says:
>  Sending two packets on PTO expiration increases resilience to packet drops, thus reducing the probability of consecutive PTO events.

which seems to apply universally.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3070
----==_mimepart_5d8c0233ee5a5_397f3fa8ee4cd96c78186
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://quicwg.org/base-drafts/draft-ietf-quic-recovery.html#rfc.appendix.A.9" rel="nofollow">The pseudocode</a> only potentially sends 2 packets if the endpoint is a server or if 1-RTT keys are had. It's unclear why this distinction is made, as opposed to sending "one or two" packets in every case. The text says:</p>
<blockquote>
<p>Sending two packets on PTO expiration increases resilience to packet drops, thus reducing the probability of consecutive PTO events.</p>
</blockquote>
<p>which seems to apply universally.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3070?email_source=notifications&amp;email_token=AFTOJK5JDTL77LUFKTOARWTQLP43HA5CNFSM4I2TLNMKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNXYO2A">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6HNO5M5GMBCIDZEITQLP43HANCNFSM4I2TLNMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYT7BDRLMGB4NSFZVLQLP43HA5CNFSM4I2TLNMKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNXYO2A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3070?email_source=notifications\u0026email_token=AFTOJK5JDTL77LUFKTOARWTQLP43HA5CNFSM4I2TLNMKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNXYO2A",
"url": "https://github.com/quicwg/base-drafts/issues/3070?email_source=notifications\u0026email_token=AFTOJK5JDTL77LUFKTOARWTQLP43HA5CNFSM4I2TLNMKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNXYO2A",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8c0233ee5a5_397f3fa8ee4cd96c78186--


From nobody Wed Sep 25 17:13: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 E32D11201C6 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 17:13: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 F5NPh1KpoE5G for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 17:13:18 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 64B2C12001A for <quic-issues@ietf.org>; Wed, 25 Sep 2019 17:13:18 -0700 (PDT)
Date: Wed, 25 Sep 2019 17:13:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569456797; bh=6fH8Si3yCX8yjnWsZ+zD7ATErkv2CA72gFK4dyoaUik=; h=Date:From:To:Subject:From; b=TyPDGM5lO6d+ObUFwTFpv9/YIL4mkiVhjg5/dhlqbDN3tw/SDVd4+CRVPo3n0NDgK uJ7I+cEl5fOjXSKsUdVEuN9o63VX6o04/yeXQdf16a11jOJgSPqoMPy0Fli1Er+KPe mnxgrnh/n3OfnFzvVN00HYu3x488I0rhOxef2Iqs=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-eliciting/7e738c-1aa9dc@github.com>
Subject: [quicwg/base-drafts] 1aa9dc: 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/jcCX6WgKbi4S8kEuZUMezaFGh0M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 00:13:20 -0000

  Branch: refs/heads/ianswett-ack-eliciting
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1aa9dc12ca874228614963de312b634c1e12c358
      https://github.com/quicwg/base-drafts/commit/1aa9dc12ca874228614963de312b634c1e12c358
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-25 (Wed, 25 Sep 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 Wed Sep 25 17:13: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 4FBED1201C6 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 17:13: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 dto1PSXjAMQG for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 17:13:27 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E84D212001A for <quic-issues@ietf.org>; Wed, 25 Sep 2019 17:13:26 -0700 (PDT)
Date: Wed, 25 Sep 2019 17:13:26 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569456806; bh=W+TfRfZG9f2f+Jz5o62jeBjxjsWueJALtTTonTmMLSg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=sXwEfwMEvi2Nap/PrxNzGHtWU/lENVxdKHvCGNw6xv84+VXtjpuy9PUARfFYs8oDd QHkcodQUFx+A698BxT4GlqlNETWpMmGPK4V3x4O1DaxQ/VwdGTbDrAc1ZerdSCGtmV ljGhdCBxUWBVEsSjqrjTgGk/VT5lCP3eoUBeGegI=
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/3069/push/4077833573@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3069@github.com>
References: <quicwg/base-drafts/pull/3069@github.com>
Subject: Re: [quicwg/base-drafts] ack-eliciting not ACK-eliciting (#3069)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8c02a63ab35_371b3f9ec66cd96080169"; 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/FONRxcqYlHp0sPCu7bc57OkSAp4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 00:13:28 -0000

----==_mimepart_5d8c02a63ab35_371b3f9ec66cd96080169
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

1aa9dc12ca874228614963de312b634c1e12c358  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/3069/files/7e738c6605dd9e5c5325b418955d8f167ff523af..1aa9dc12ca874228614963de312b634c1e12c358

----==_mimepart_5d8c02a63ab35_371b3f9ec66cd96080169
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/1aa9dc12ca874228614963de312b634c1e12c358">1aa9dc1</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/3069/files/7e738c6605dd9e5c5325b418955d8f167ff523af..1aa9dc12ca874228614963de312b634c1e12c358?email_source=notifications&amp;email_token=AFTOJKZLJJXPLFGB5XTQNF3QLP5CNA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOOBTGM2TOMY">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3PCXV6SD22B7PNR4DQLP5CNANCNFSM4I2OHT2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZZBOHADNNWSADZSJDQLP5CNA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOOBTGM2TOMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3069/files/7e738c6605dd9e5c5325b418955d8f167ff523af..1aa9dc12ca874228614963de312b634c1e12c358?email_source=notifications\u0026email_token=AFTOJKZLJJXPLFGB5XTQNF3QLP5CNA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOOBTGM2TOMY",
"url": "https://github.com/quicwg/base-drafts/pull/3069/files/7e738c6605dd9e5c5325b418955d8f167ff523af..1aa9dc12ca874228614963de312b634c1e12c358?email_source=notifications\u0026email_token=AFTOJKZLJJXPLFGB5XTQNF3QLP5CNA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOOBTGM2TOMY",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8c02a63ab35_371b3f9ec66cd96080169--


From nobody Wed Sep 25 17:20: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 A0D5512025D for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 17:20: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 JrIvcHahRucR for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 17:20:54 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0E031120020 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 17:20:54 -0700 (PDT)
Date: Wed, 25 Sep 2019 17:20:53 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569457253; bh=XfDzYrYlkk//Rf3YYQdYshcLGJ/2txUbtL54AXrQxtE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=PE3BRk88dRrEk0KuKFNFFgDqWklkb+PkLwMKSxATzohsyeK+L5FEdEvGvkGn5Nfq3 RM0sguo5+quTxpEOcUjvM7dnBLjp1Qn+q+CAlF+qhZ7J3Qgr4IomtUGMklDXFKdBO2 2OrB+TNH8W8Jg8bteLdZMvIRHe/8DbAy6Vdks+PQ=
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5KKYAHKOGYZQBBGON3TEUNLEVBNHHB3N6DWQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3070/535275358@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3070@github.com>
References: <quicwg/base-drafts/issues/3070@github.com>
Subject: Re: [quicwg/base-drafts] Mysterious 1 vs 2 packet distinction in recovery pseudocode (#3070)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8c04654a44e_61dd3ffb108cd96c1002e5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/J0l4Ro6gDl_GqJqbWLXbVWOJEKg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 00:20:56 -0000

----==_mimepart_5d8c04654a44e_61dd3ffb108cd96c1002e5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think that we probably need to start saying "send a probe" rather than "send one or two packets".  And to define a probe as being one or two packets that can exceed the congestion 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/3070#issuecomment-535275358
----==_mimepart_5d8c04654a44e_61dd3ffb108cd96c1002e5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I think that we probably need to start saying "send a probe" rather than "send one or two packets".  And to define a probe as being one or two packets that can exceed the congestion 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/3070?email_source=notifications&amp;email_token=AFTOJK2EABD47Q55WIP6IPTQLP56LA5CNFSM4I2TLNMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7T2OXQ#issuecomment-535275358">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK33Y3ZRTBOOVGNRCYLQLP56LANCNFSM4I2TLNMA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK472XXEZFAEDVMJGODQLP56LA5CNFSM4I2TLNMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7T2OXQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3070?email_source=notifications\u0026email_token=AFTOJK2EABD47Q55WIP6IPTQLP56LA5CNFSM4I2TLNMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7T2OXQ#issuecomment-535275358",
"url": "https://github.com/quicwg/base-drafts/issues/3070?email_source=notifications\u0026email_token=AFTOJK2EABD47Q55WIP6IPTQLP56LA5CNFSM4I2TLNMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7T2OXQ#issuecomment-535275358",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8c04654a44e_61dd3ffb108cd96c1002e5--


From nobody Wed Sep 25 18:14: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 C09811201C6 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 18:14:02 -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 B2ve3F6mv7tH for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 18:14: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 395FC120088 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 18:14: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 6CFC22C2EC2 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 18:14:00 -0700 (PDT)
Date: Wed, 25 Sep 2019 18:14:00 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-eliciting/1aa9dc-a6f95c@github.com>
Subject: [quicwg/base-drafts] a6f95c: dont repeat
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/WZesaYGmBwMUiieJdJ6Orl8Rr9E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 01:14:03 -0000

  Branch: refs/heads/ianswett-ack-eliciting
  Home:   https://github.com/quicwg/base-drafts
  Commit: a6f95c9f45e3db163668d23d3f93c6b938590b68
      https://github.com/quicwg/base-drafts/commit/a6f95c9f45e3db163668d23d3f93c6b938590b68
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-26 (Thu, 26 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  dont repeat

dont repeat



From nobody Wed Sep 25 18:14: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 3FB881201C6 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 18:14:12 -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 85bVVr-7SDFL for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 18:14: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 98AC8120088 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 18:14:10 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id E54388C11B6 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 18:14:09 -0700 (PDT)
Date: Wed, 25 Sep 2019 18:14:09 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3069/push/4077958010@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3069@github.com>
References: <quicwg/base-drafts/pull/3069@github.com>
Subject: Re: [quicwg/base-drafts] ack-eliciting not ACK-eliciting (#3069)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8c10e1d4f7e_7abe3fc34f8cd96027846"; 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/vzznvhqSjTv1RZt3h603EWAj-n4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 01:14:12 -0000

----==_mimepart_5d8c10e1d4f7e_7abe3fc34f8cd96027846
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

a6f95c9f45e3db163668d23d3f93c6b938590b68  dont repeat


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3069/files/1aa9dc12ca874228614963de312b634c1e12c358..a6f95c9f45e3db163668d23d3f93c6b938590b68

----==_mimepart_5d8c10e1d4f7e_7abe3fc34f8cd96027846
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/a6f95c9f45e3db163668d23d3f93c6b938590b68">a6f95c9</a>  dont repeat</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3069/files/1aa9dc12ca874228614963de312b634c1e12c358..a6f95c9f45e3db163668d23d3f93c6b938590b68?email_source=notifications&amp;email_token=AFTOJKYM5L2U5DAOV2FVK4LQLQEGDA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOOJVHAYDCMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2MUMLMCLU6BUVYEIDQLQEGDANCNFSM4I2OHT2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZMDEAJGTS7L5SKHKLQLQEGDA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOOJVHAYDCMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3069/files/1aa9dc12ca874228614963de312b634c1e12c358..a6f95c9f45e3db163668d23d3f93c6b938590b68?email_source=notifications\u0026email_token=AFTOJKYM5L2U5DAOV2FVK4LQLQEGDA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOOJVHAYDCMA",
"url": "https://github.com/quicwg/base-drafts/pull/3069/files/1aa9dc12ca874228614963de312b634c1e12c358..a6f95c9f45e3db163668d23d3f93c6b938590b68?email_source=notifications\u0026email_token=AFTOJKYM5L2U5DAOV2FVK4LQLQEGDA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOOJVHAYDCMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8c10e1d4f7e_7abe3fc34f8cd96027846--


From nobody Wed Sep 25 18: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 E269C12025D for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 18:17: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 G4ZTkqt3tfcV for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 18:17: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 6F3551201E0 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 18:17:44 -0700 (PDT)
Date: Wed, 25 Sep 2019 18:17:43 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569460663; bh=LoXZQCWjagabMGc/cl2hEL9umAdjVdUFcfz3dWxdOUI=; h=Date:From:To:Subject:From; b=Lm7xoOisnQ/T5R+9W+5s9f5aL5B4KeGCBBRYlkhear2hTbhWn71KRoHwOmt6OYf2e DAApvgNXdtoQlmawWbTPLpu+cxNAxb75nfGQ9GDEXchkYmytS01xORu85DOISquhYJ Pn3ZcD0Mw1DoAyyX2sghGHbZmVo2jaSr97V6eFUA=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-eliciting/a6f95c-ccd8b3@github.com>
Subject: [quicwg/base-drafts] ccd8b3: wrap
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ctWrhVmtTL0LGuCzhrMwLEkeSEs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 01:17:46 -0000

  Branch: refs/heads/ianswett-ack-eliciting
  Home:   https://github.com/quicwg/base-drafts
  Commit: ccd8b3fa264d1709d269f0d2190299b2b2309eb5
      https://github.com/quicwg/base-drafts/commit/ccd8b3fa264d1709d269f0d2190299b2b2309eb5
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2019-09-26 (Thu, 26 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  wrap

rap
ap
p



From nobody Wed Sep 25 18:18: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 F323E1201E0 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 18:17: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 73w4pM5n2Bxg for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 18:17: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 6B673120251 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 18:17:55 -0700 (PDT)
Date: Wed, 25 Sep 2019 18:17:54 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569460674; bh=tylYSzFgmmgSt/94XCH/opu5PKSbgtmVW11fEKUDSXs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TWOtjLyBgwHKliQifmVFtToMiSq69qfoQXuf08favcAtXgeEk7UoKNANYzF2fLoA9 Z9k+Tjuk051SWpB1v/xKwYi4v2dUCzMshZDKZSTCcmGOFeqNsPkMuXBYaHEzLeVebx UQ6giP0A2ZLjx7XfAkWBg7z8ezZB5DAiLPrpS3KU=
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/3069/push/4077965995@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3069@github.com>
References: <quicwg/base-drafts/pull/3069@github.com>
Subject: Re: [quicwg/base-drafts] ack-eliciting not ACK-eliciting (#3069)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8c11c293be5_6df23fbb85ccd960108087"; 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/DHTn0sqFVIelHhEGYTFwajX2tlE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 01:17:58 -0000

----==_mimepart_5d8c11c293be5_6df23fbb85ccd960108087
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

ccd8b3fa264d1709d269f0d2190299b2b2309eb5  wrap


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3069/files/a6f95c9f45e3db163668d23d3f93c6b938590b68..ccd8b3fa264d1709d269f0d2190299b2b2309eb5

----==_mimepart_5d8c11c293be5_6df23fbb85ccd960108087
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/ccd8b3fa264d1709d269f0d2190299b2b2309eb5">ccd8b3f</a>  wrap</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3069/files/a6f95c9f45e3db163668d23d3f93c6b938590b68..ccd8b3fa264d1709d269f0d2190299b2b2309eb5?email_source=notifications&amp;email_token=AFTOJK6PE5CZUSOCYLCMB23QLQEUFA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOOJWGU4TSNI">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5U7J4T2PNG5BNIG5LQLQEUFANCNFSM4I2OHT2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7ANNUBZILYRDNE54LQLQEUFA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOOJWGU4TSNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3069/files/a6f95c9f45e3db163668d23d3f93c6b938590b68..ccd8b3fa264d1709d269f0d2190299b2b2309eb5?email_source=notifications\u0026email_token=AFTOJK6PE5CZUSOCYLCMB23QLQEUFA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOOJWGU4TSNI",
"url": "https://github.com/quicwg/base-drafts/pull/3069/files/a6f95c9f45e3db163668d23d3f93c6b938590b68..ccd8b3fa264d1709d269f0d2190299b2b2309eb5?email_source=notifications\u0026email_token=AFTOJK6PE5CZUSOCYLCMB23QLQEUFA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA3TOOJWGU4TSNI",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8c11c293be5_6df23fbb85ccd960108087--


From nobody Wed Sep 25 18: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 28A95120251 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 18:18:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 8GIT18FCrGKx for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 18:18: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 9A9041201E0 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 18:18:14 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id CFBF7A0C50 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 18:18:13 -0700 (PDT)
Date: Wed, 25 Sep 2019 18:18:13 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d463fa-9f7c65@github.com>
Subject: [quicwg/base-drafts] 9f7c65: Script updating gh-pages from ccd8b3fa. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/0W_JLJjcV76VExFKtHQJh4pczA0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 01:18:16 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9f7c651325759bec5ddbef4caf6a30302e883c96
      https://github.com/quicwg/base-drafts/commit/9f7c651325759bec5ddbef4caf6a30302e883c96
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-26 (Thu, 26 Sep 2019)

  Changed paths:
    M ianswett-ack-eliciting/draft-ietf-quic-http.html
    M ianswett-ack-eliciting/draft-ietf-quic-http.txt
    M ianswett-ack-eliciting/draft-ietf-quic-invariants.html
    M ianswett-ack-eliciting/draft-ietf-quic-invariants.txt
    M ianswett-ack-eliciting/draft-ietf-quic-qpack.html
    M ianswett-ack-eliciting/draft-ietf-quic-qpack.txt
    M ianswett-ack-eliciting/draft-ietf-quic-recovery.html
    M ianswett-ack-eliciting/draft-ietf-quic-recovery.txt
    M ianswett-ack-eliciting/draft-ietf-quic-tls.html
    M ianswett-ack-eliciting/draft-ietf-quic-tls.txt
    M ianswett-ack-eliciting/draft-ietf-quic-transport.html
    M ianswett-ack-eliciting/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from ccd8b3fa. [ci skip]



From nobody Wed Sep 25 19:53: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 91ABB1200EF for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 19:53: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 4uh3064Glpsy for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 19:53:41 -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 46027120033 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 19:53:41 -0700 (PDT)
Date: Wed, 25 Sep 2019 19:53:40 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569466420; bh=4D3YDpN3ctDxtZI5gZK6N8LAp6/zyLtXHbA5oxeqvnk=; h=Date:From:To:Subject:From; b=IAKspoYqgtcqoOh/RHpvaA9WVCFe0Sh/DK68dniijjXLZj0/oMveEZxoAym/6clMO FcpSbmhlq38fig3TB/Xdnbl0Pe87C7uBn7VgPrzXf0eky/sVV6jjRp6ZpZDpti81JD M45Vii+fP+euMuPybZXxrfvyW3Wvo/lLauEvsGn8=
From: Mark Nottingham <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/c70f69-8afe7b@github.com>
Subject: [quicwg/base-drafts] 8afe7b: don't need spec_regex any 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/ebUXEfuBXLL8025pNOHZDhutIak>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 02:53:43 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8afe7b1dadedf5610db343fd590aeeafcbcb923c
      https://github.com/quicwg/base-drafts/commit/8afe7b1dadedf5610db343fd590aeeafcbcb923c
  Author: Mark Nottingham <mnot@mnot.net>
  Date:   2019-09-26 (Thu, 26 Sep 2019)

  Changed paths:
    M ietf.json

  Log Message:
  -----------
  don't need spec_regex any more



From nobody Wed Sep 25 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 D892C1200EF for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 19:54: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 rYMhKGA098tF for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 19:54: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 7645D120033 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 19:54:16 -0700 (PDT)
Date: Wed, 25 Sep 2019 19:54:15 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569466455; bh=pjNP5NpH0tGqBljwNls0Sfpk0vTob6OlXPlZ5dmYZoc=; h=Date:From:To:Subject:From; b=sapHMbw5QwC3rh6mneGaluu9I/heoqq64fRuezrzVzdyZ70AW2oKYXi2xmkwH+vRD 4qVqryUii/IBb53gPLpimUGKp5wHn707SYO6EXrW0DgazG4hfgiqy+lTP3UtNCiInB ivAj0JWeGCL3tXKCUcGbLkShBSsipeoXHrATSthw=
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/9f7c65-1ee34d@github.com>
Subject: [quicwg/base-drafts] 1ee34d: Script updating gh-pages from 8afe7b1d. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/DOT0HDEYSm4ZYH83xJt9T0LWRVk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 02:54:18 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1ee34d39eb4ef7ed4c3513a0c390a90a331dd10e
      https://github.com/quicwg/base-drafts/commit/1ee34d39eb4ef7ed4c3513a0c390a90a331dd10e
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-26 (Thu, 26 Sep 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 8afe7b1d. [ci skip]



From nobody Wed Sep 25 21: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 6B7DD120046 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 21:47:11 -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 x99NPnSOKzP4 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 21:47:09 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9CC9212003F for <quic-issues@ietf.org>; Wed, 25 Sep 2019 21:47:09 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id B2F782C2F7A for <quic-issues@ietf.org>; Wed, 25 Sep 2019 21:47:08 -0700 (PDT)
Date: Wed, 25 Sep 2019 21:47:08 -0700
From: Mark Nottingham <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/8afe7b-3418b2@github.com>
Subject: [quicwg/base-drafts] 3418b2: go primary for QUIC
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/MYcnAwVPCXAZfZ7cnRJwm7G5_mo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 04:47:12 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3418b2a841b9f2cb8d7b00daaa2718d0840fa802
      https://github.com/quicwg/base-drafts/commit/3418b2a841b9f2cb8d7b00daaa2718d0840fa802
  Author: Mark Nottingham <mnot@mnot.net>
  Date:   2019-09-26 (Thu, 26 Sep 2019)

  Changed paths:
    M ietf.json

  Log Message:
  -----------
  go primary for QUIC



From nobody Wed Sep 25 21: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 33D1B120046 for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 21:47:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 AVtonDckmzAH for <quic-issues@ietfa.amsl.com>; Wed, 25 Sep 2019 21:47: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 1A4EE12003F for <quic-issues@ietf.org>; Wed, 25 Sep 2019 21:47:43 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 859969602A7 for <quic-issues@ietf.org>; Wed, 25 Sep 2019 21:47:42 -0700 (PDT)
Date: Wed, 25 Sep 2019 21:47:42 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/1ee34d-ba89a2@github.com>
Subject: [quicwg/base-drafts] ba89a2: Script updating gh-pages from 3418b2a8. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ji5nakO1G6judaiULABRUSMgwLY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 04:47:44 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ba89a2c4a37cf97dd1e1525242de6b61f8460608
      https://github.com/quicwg/base-drafts/commit/ba89a2c4a37cf97dd1e1525242de6b61f8460608
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-26 (Thu, 26 Sep 2019)

  Changed paths:
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 3418b2a8. [ci skip]



From nobody Thu Sep 26 08:27: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 E9F121209AA for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 08:27: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 6jo9WS6tQmWW for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 08:27: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 E53A112088D for <quic-issues@ietf.org>; Thu, 26 Sep 2019 08:27:51 -0700 (PDT)
Date: Thu, 26 Sep 2019 08:27:50 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569511670; bh=hLBFj0y0vDf3BhdcepcIMamQTms7NmP9MWW+oNaPaCw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nwHYzRSQIOjuVaA76Fc+RKpvvOaMryovQRVtlrXzNQrfYI6muLHCAASAaBw5ICDOD s7JFkOF2I6tRLWsmYLBcFcM572W9RXLr0R5WP+I5ppv++9kT6LN/zspY/t+dY6N1os h20KT5XTh3HYHN2cTwxsnSEydb2UiKD87xUHIahE=
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3VX5HWSK6XLIGHDD53TIMYNEVBNHHBYDQKAQ@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/535557873@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_5d8cd8f6d93a4_4ad23f99f04cd96012759c"; 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/bgOVOUSNvFYjMm0YfgYzOZlenQ8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 15:27:54 -0000

----==_mimepart_5d8cd8f6d93a4_4ad23f99f04cd96012759c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DaanDeMeyer after the big error shuffle that landed in draft-23, how do feel about this issue now?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/2911#issuecomment-535557873
----==_mimepart_5d8cd8f6d93a4_4ad23f99f04cd96012759c
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> after the big error shuffle that landed in draft-23, how do feel about this issue now?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/2911?email_source=notifications&amp;email_token=AFTOJK2ETVYHUTXZUJSXEHDQLTIHNA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7V7N4I#issuecomment-535557873">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2UQZYS5V6QPOHTCWDQLTIHNANCNFSM4IFO2MZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK3BYNX55TU7R2JDLP3QLTIHNA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7V7N4I.gif" height="1" width="1" 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=AFTOJK2ETVYHUTXZUJSXEHDQLTIHNA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7V7N4I#issuecomment-535557873",
"url": "https://github.com/quicwg/base-drafts/issues/2911?email_source=notifications\u0026email_token=AFTOJK2ETVYHUTXZUJSXEHDQLTIHNA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7V7N4I#issuecomment-535557873",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8cd8f6d93a4_4ad23f99f04cd96012759c--


From nobody Thu Sep 26 09: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 D08D6120A7D for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 09:34:39 -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 HEbj0xTGNa0h for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 09:34: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 38066120809 for <quic-issues@ietf.org>; Thu, 26 Sep 2019 09:34:38 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 925D9661E70 for <quic-issues@ietf.org>; Thu, 26 Sep 2019 09:34:37 -0700 (PDT)
Date: Thu, 26 Sep 2019 09:34:37 -0700
From: Daan De Meyer <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZEF4WUOER62LKVFTN3TIUS3EVBNHHBYDQKAQ@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/535584983@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_5d8ce89d835ea_73d43f93f48cd96864839"; 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/F2CqVPttpsxX6L4YAwCg7V4aaN8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 16:34:40 -0000

----==_mimepart_5d8ce89d835ea_73d43f93f48cd96864839
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I took a quick look at the changes and I my main argument that stream level errors do not make sense as connection level errors still applies. Instead of using stream level errors as connection level errors, I would use a general connection level error and use the reason phrase to add more detail on why an endpoint chose to treat a stream level error as a connection level error (I also think that the cases where it makes sense to do this are rather limited).

On the other hand, this is a pretty insignificant issue so I understand if there's no major motivation to change this when we're this late in the standardization 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/2911#issuecomment-535584983
----==_mimepart_5d8ce89d835ea_73d43f93f48cd96864839
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I took a quick look at the changes and I my main argument that stream level errors do not make sense as connection level errors still applies. Instead of using stream level errors as connection level errors, I would use a general connection level error and use the reason phrase to add more detail on why an endpoint chose to treat a stream level error as a connection level error (I also think that the cases where it makes sense to do this are rather limited).</p>
<p>On the other hand, this is a pretty insignificant issue so I understand if there's no major motivation to change this when we're this late in the standardization 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/2911?email_source=notifications&amp;email_token=AFTOJK6LGE44T3T2RS62XVLQLTQB3A5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7WGBVY#issuecomment-535584983">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2PFYX36S56NSAHESLQLTQB3ANCNFSM4IFO2MZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKZTCUCSN7NYAY6ATHTQLTQB3A5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7WGBVY.gif" height="1" width="1" 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=AFTOJK6LGE44T3T2RS62XVLQLTQB3A5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7WGBVY#issuecomment-535584983",
"url": "https://github.com/quicwg/base-drafts/issues/2911?email_source=notifications\u0026email_token=AFTOJK6LGE44T3T2RS62XVLQLTQB3A5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7WGBVY#issuecomment-535584983",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8ce89d835ea_73d43f93f48cd96864839--


From nobody Thu Sep 26 12:08: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 86E551200EB for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 12:08: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 fgWwCFCWczpD for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 12:08:48 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B6D11120168 for <quic-issues@ietf.org>; Thu, 26 Sep 2019 12:08:48 -0700 (PDT)
Date: Thu, 26 Sep 2019 12:08:47 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569524927; bh=YZE1Hqji7awDc7CW+qjAXgFBW4YVHFGuZKBTJZExTiA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bqrGtFvMnXTbubBgkXQ3llmvXHAFLzMGgDf/QXY6iP8MyOEPOWYWf9Sc1xQLFY/QB jQ/dJbJV/XY387aWDdcYRG0nn5I1NnhfhpBn9E+RZxMCZaNp5pY1WzegB9+nclm7fv SVXPL9054/Kqquj0NlfvsOro63IArqHK+xFvq76c=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYUQHCKCOZXSJS4NJF3TJGU7EVBNHHBYDQKAQ@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/535644767@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_5d8d0cbfab928_3be03fe42accd9602793e1"; 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/qyofDeR1l2Xju7RudWbjr-rpNRM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 19:08:52 -0000

----==_mimepart_5d8d0cbfab928_3be03fe42accd9602793e1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think it makes sense to make them separate lists, but it is relatively insignificant.

-- 
You are receiving this 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-535644767
----==_mimepart_5d8d0cbfab928_3be03fe42accd9602793e1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I think it makes sense to make them separate lists, but it is relatively insignificant.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJK4DARH2X7XOV5IA34LQLUCD7A5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7WUUXY#issuecomment-535644767">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYEFVFVUUKG6WLS6UTQLUCD7ANCNFSM4IFO2MZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK26FO6Y3L56ALCBLELQLUCD7A5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7WUUXY.gif" height="1" width="1" 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=AFTOJK4DARH2X7XOV5IA34LQLUCD7A5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7WUUXY#issuecomment-535644767",
"url": "https://github.com/quicwg/base-drafts/issues/2911?email_source=notifications\u0026email_token=AFTOJK4DARH2X7XOV5IA34LQLUCD7A5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7WUUXY#issuecomment-535644767",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8d0cbfab928_3be03fe42accd9602793e1--


From nobody Thu Sep 26 12:18: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 C4CCB120AEE for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 12:18:18 -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 s9JZFs4JJJGd for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 12:18:15 -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 8A217120B0F for <quic-issues@ietf.org>; Thu, 26 Sep 2019 12:17:56 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id BB25F1C1D5A for <quic-issues@ietf.org>; Thu, 26 Sep 2019 12:17:55 -0700 (PDT)
Date: Thu, 26 Sep 2019 12:17:55 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6QHLU2N7KETLLZJ6V3TJHXHEVBNHHBYDQKAQ@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/535648028@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_5d8d0ee3ab20e_69073fec946cd96c12500"; 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/8vazADqO1Pqlkyt8kjehQJWAeRU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 19:18:19 -0000

----==_mimepart_5d8d0ee3ab20e_69073fec946cd96c12500
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

We have at least one implementer that has stated the use of a reason phrase is problematic for them.

I think what we have today is fairly consistent with how HTTP/2 works. 

I'd review a PR that addresses this issue in some way but I'm not motivated to write one myself.

-- 
You are receiving this 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-535648028
----==_mimepart_5d8d0ee3ab20e_69073fec946cd96c12500
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>We have at least one implementer that has stated the use of a reason phrase is problematic for them.</p>
<p>I think what we have today is fairly consistent with how HTTP/2 works.</p>
<p>I'd review a PR that addresses this issue in some way but I'm not motivated to write one myself.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are 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=AFTOJKYEX4YTTSUTOWA3LQTQLUDGHA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7WVOHA#issuecomment-535648028">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3GYWZBKTDJRAMJNDDQLUDGHANCNFSM4IFO2MZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK66SXYPVZM34QPHBKDQLUDGHA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7WVOHA.gif" height="1" width="1" 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=AFTOJKYEX4YTTSUTOWA3LQTQLUDGHA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7WVOHA#issuecomment-535648028",
"url": "https://github.com/quicwg/base-drafts/issues/2911?email_source=notifications\u0026email_token=AFTOJKYEX4YTTSUTOWA3LQTQLUDGHA5CNFSM4IFO2MZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7WVOHA#issuecomment-535648028",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8d0ee3ab20e_69073fec946cd96c12500--


From nobody Thu Sep 26 12:59: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 B252B120891 for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 12:59: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 Zup501KjS5qk for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 12:59: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 11E98120838 for <quic-issues@ietf.org>; Thu, 26 Sep 2019 12:59:56 -0700 (PDT)
Date: Thu, 26 Sep 2019 12:59:55 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569527995; bh=re64z2zBT1xxYacSoMvfZuvrRTCn/pEFDOtycPqWIIM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Y3SGlWvUY4ui1iQFRYI9rBkNcsvLTZeMVZO4885E11D8+5demZyglNJSI/Y/0ZQu/ aQADs7lqDkCHDv0Danv/+13fZU4F49FgIlQfrJgp0wACyvDQnF87/bK0oo/j/QwzwL M88Ok7aTIEFuDghXlbOsLq3BRHVao8YOOImUTfyU=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYICSPWBZJPNTTVPTV3TJMUXEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/535663360@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8d18bb27c8e_61b93fb1a98cd9681530d8"; 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/y_66MZzEgWUwH7HoJSKBQLhnEwk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 19:59:58 -0000

----==_mimepart_5d8d18bb27c8e_61b93fb1a98cd9681530d8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

If we want to give servers options, we could allow servers to send Initial packets with no payload and the client would treat those identically to a Retry.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-535663360
----==_mimepart_5d8d18bb27c8e_61b93fb1a98cd9681530d8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>If we want to give servers options, we could allow servers to send Initial packets with no payload and the client would treat those identically to a Retry.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJK4MDAQA56WRGG34W4DQLUIDXA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7WZGAA#issuecomment-535663360">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3B35CWBD5WDTNO5N3QLUIDXANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7XOAUTYUHCRGZG733QLUIDXA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7WZGAA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK4MDAQA56WRGG34W4DQLUIDXA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7WZGAA#issuecomment-535663360",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK4MDAQA56WRGG34W4DQLUIDXA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7WZGAA#issuecomment-535663360",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8d18bb27c8e_61b93fb1a98cd9681530d8--


From nobody Thu Sep 26 13:30: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 E24411200CD for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 13:30:51 -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 GP2PzEGJIB5l for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 13:30: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 097F41201EA for <quic-issues@ietf.org>; Thu, 26 Sep 2019 13:30:50 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 592B88C0551 for <quic-issues@ietf.org>; Thu, 26 Sep 2019 13:30:49 -0700 (PDT)
Date: Thu, 26 Sep 2019 13:30:49 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK776MRIODNSZLORTTN3TJJHTEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/535674137@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8d1ff94991c_64383fb9deacd960239699"; 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/er_p27yxA-CajOn7n8fxGHKszXE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 20:30:52 -0000

----==_mimepart_5d8d1ff94991c_64383fb9deacd960239699
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett The benefit of tokens are that the state can be offloaded. Is that possible with 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/3014#issuecomment-535674137
----==_mimepart_5d8d1ff94991c_64383fb9deacd960239699
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> The benefit of tokens are that the state can be offloaded. Is that possible with 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/3014?email_source=notifications&amp;email_token=AFTOJK2ONH3BWH4WXACIBQ3QLULXTA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7W32GI#issuecomment-535674137">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5STSE4GYFUQ6YC4FTQLULXTANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK77OOBWGU2ZIK7A5SLQLULXTA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7W32GI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK2ONH3BWH4WXACIBQ3QLULXTA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7W32GI#issuecomment-535674137",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK2ONH3BWH4WXACIBQ3QLULXTA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7W32GI#issuecomment-535674137",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8d1ff94991c_64383fb9deacd960239699--


From nobody Thu Sep 26 14: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 5B97E12022A for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 14:02:36 -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 lpXj0Z4XVN7I for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 14:02: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 5C4B91200EB for <quic-issues@ietf.org>; Thu, 26 Sep 2019 14:02:34 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 84E679607B4 for <quic-issues@ietf.org>; Thu, 26 Sep 2019 14:02:33 -0700 (PDT)
Date: Thu, 26 Sep 2019 14:02:33 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6RVBF3M6QBTW3EKZV3TJT7TEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/535684862@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8d276975f97_42133fd79eacd9641378f4"; 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/HKuMt6GdbQhUwpD7cm033DaXRFY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 21:02:37 -0000

----==_mimepart_5d8d276975f97_42133fd79eacd9641378f4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Functionally, a Retry or Initial with no payload should be identical, minus the packet format?
- Both have a Token
- Both have a way of validating the original CID
- Both have no other payload

I believe we considered using the Initial packet as a Retry packet in the Stream0 design team, but the reason we decided not to was some members thought the encryption cost was too high.  It looks like we're still in the same place in that regard?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-535684862
----==_mimepart_5d8d276975f97_42133fd79eacd9641378f4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Functionally, a Retry or Initial with no payload should be identical, minus the packet format?</p>
<ul>
<li>Both have a Token</li>
<li>Both have a way of validating the original CID</li>
<li>Both have no other payload</li>
</ul>
<p>I believe we considered using the Initial packet as a Retry packet in the Stream0 design team, but the reason we decided not to was some members thought the encryption cost was too high.  It looks like we're still in the same place in that regard?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJK36L2BFKGJHYES5XKDQLUPOTA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7W6N7Q#issuecomment-535684862">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYZBY3B7B5JSDCZJJLQLUPOTANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5GWHICNRJOAWPFUIDQLUPOTA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7W6N7Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK36L2BFKGJHYES5XKDQLUPOTA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7W6N7Q#issuecomment-535684862",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK36L2BFKGJHYES5XKDQLUPOTA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7W6N7Q#issuecomment-535684862",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8d276975f97_42133fd79eacd9641378f4--


From nobody Thu Sep 26 14:13: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 44880120178 for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 14:13: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 dsPBqgVwgYRA for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 14:13:42 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DF7F91200CD for <quic-issues@ietf.org>; Thu, 26 Sep 2019 14:13:41 -0700 (PDT)
Date: Thu, 26 Sep 2019 14:13:41 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569532421; bh=F6fPsT8zw/nY4551h5lQDylGcpkzdgVozM/EX7c5V0Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=W6BPNlzk76kUviZFIDA2X1n4KMEh4hG+AIjLBzS/lxSYE6fm/ospLukW9p62SKHG/ CYSpORmKI6x+Qe/PASvcijt2YM44aeuuvmkpT+MTaNVvmgf8Mkih6zVj8SY46eaPZQ WG3bl87iLTszeLRcm4UwPpixMMtAOewrOgZmRSV0=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYTJTPG2JUI7OPGYH53TJVJLEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/535688505@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8d2a05134d5_76ad3fc3b2ecd96077136a"; 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/1jcMXSH1XjvhwFbowjLmavUSwyw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 21:13:43 -0000

----==_mimepart_5d8d2a05134d5_76ad3fc3b2ecd96077136a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@nibanks Those numbers are very different from the ones I've seen.  In particular, I've never seen UDP send lower than encrypt that I can recall.

I will note that I'm typically looking at profiles of a full process(ie: a load balancer/cache/etc), not just the QUIC stack, but even so your crypto is much more expensive than I'd expect.

Are you using AES-NI and/or AVX instructions?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-535688505
----==_mimepart_5d8d2a05134d5_76ad3fc3b2ecd96077136a
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> Those numbers are very different from the ones I've seen.  In particular, I've never seen UDP send lower than encrypt that I can recall.</p>
<p>I will note that I'm typically looking at profiles of a full process(ie: a load balancer/cache/etc), not just the QUIC stack, but even so your crypto is much more expensive than I'd expect.</p>
<p>Are you using AES-NI and/or AVX instructions?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJK2DTRQHEIL7C6V4CGDQLUQYLA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7W7KOI#issuecomment-535688505">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7CRWM55APOSCIDU73QLUQYLANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK57OGZEH3JXECVSVTDQLUQYLA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7W7KOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK2DTRQHEIL7C6V4CGDQLUQYLA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7W7KOI#issuecomment-535688505",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK2DTRQHEIL7C6V4CGDQLUQYLA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7W7KOI#issuecomment-535688505",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8d2a05134d5_76ad3fc3b2ecd96077136a--


From nobody Thu Sep 26 14:24: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 96A131208D4 for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 14:24:27 -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 5Wi-URSHhlLk for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 14:24: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 1E604120999 for <quic-issues@ietf.org>; Thu, 26 Sep 2019 14:24:25 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 4F0338C0032 for <quic-issues@ietf.org>; Thu, 26 Sep 2019 14:24:24 -0700 (PDT)
Date: Thu, 26 Sep 2019 14:24:24 -0700
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYPBI3KHLY4ECLT25N3TJWRREVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/535691886@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8d2c88407e6_1e7f3fc9df6cd96c1364b"; 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/Pzhgi6GMUFKze6-IL4Cu145zuhY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 21:24:39 -0000

----==_mimepart_5d8d2c88407e6_1e7f3fc9df6cd96c1364b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Yes, Bcrypt APIs make full use of CPU instruction offload where available. As I indicated, these numbers are from a QUIC layer performance test (no HTTP involved) between two machines on a 40Gbps switch (i.e. unlimited bandwidth). The machines are CPU limited. UDP CPU costs are greatly reduced by batching many packets worth of data in a single send call. HW offloads improve this even more.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-535691886
----==_mimepart_5d8d2c88407e6_1e7f3fc9df6cd96c1364b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Yes, Bcrypt APIs make full use of CPU instruction offload where available. As I indicated, these numbers are from a QUIC layer performance test (no HTTP involved) between two machines on a 40Gbps switch (i.e. unlimited bandwidth). The machines are CPU limited. UDP CPU costs are greatly reduced by batching many packets worth of data in a single send call. HW offloads improve this even more.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJK6JGKQAS4BD6RQCEILQLUSARA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7XAE3Q#issuecomment-535691886">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYUDEIGMR3GXKKSRNDQLUSARANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK6G5QWPOTDJR4FB6W3QLUSARA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7XAE3Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK6JGKQAS4BD6RQCEILQLUSARA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7XAE3Q#issuecomment-535691886",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK6JGKQAS4BD6RQCEILQLUSARA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7XAE3Q#issuecomment-535691886",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8d2c88407e6_1e7f3fc9df6cd96c1364b--


From nobody Thu Sep 26 16: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 21AC21200B3 for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 16:44:09 -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 TAUf7cbBdfMQ for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 16:44:07 -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 54A6D12000F for <quic-issues@ietf.org>; Thu, 26 Sep 2019 16:44:07 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id DA7992615AC for <quic-issues@ietf.org>; Thu, 26 Sep 2019 16:44:06 -0700 (PDT)
Date: Thu, 26 Sep 2019 16:44:06 -0700
From: Cameron Bytheway <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6HMUM4ENWIG44HNJF3TKG5NEVBNHHB3NCBX4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3069/review/294057051@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3069@github.com>
References: <quicwg/base-drafts/pull/3069@github.com>
Subject: Re: [quicwg/base-drafts] ack-eliciting not ACK-eliciting (#3069)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8d4d46868dc_3dbd3fe2e1acd95c917b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: camshaft
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2YtpaRdrYCuQpZPVItjdgAzNu1A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 23:44:09 -0000

----==_mimepart_5d8d4d46868dc_3dbd3fe2e1acd95c917b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

camshaft commented on this pull request.



>  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
+packet containing only an ACK frame in response to a non-acl-eliciting packet

s/acl/ack

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3069#pullrequestreview-294057051
----==_mimepart_5d8d4d46868dc_3dbd3fe2e1acd95c917b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@camshaft</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3069#discussion_r328868072">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  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
+packet containing only an ACK frame in response to a non-acl-eliciting packet
</pre>
<p>s/acl/ack</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3069?email_source=notifications&amp;email_token=AFTOJK3R6QCBUV3GEEOAPGTQLVCMNA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGDPIWY#pullrequestreview-294057051">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2VPAMVGXJYSOFCLL3QLVCMNANCNFSM4I2OHT2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7HZW4RVJI2ABNAASLQLVCMNA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGDPIWY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3069?email_source=notifications\u0026email_token=AFTOJK3R6QCBUV3GEEOAPGTQLVCMNA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGDPIWY#pullrequestreview-294057051",
"url": "https://github.com/quicwg/base-drafts/pull/3069?email_source=notifications\u0026email_token=AFTOJK3R6QCBUV3GEEOAPGTQLVCMNA5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGDPIWY#pullrequestreview-294057051",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8d4d46868dc_3dbd3fe2e1acd95c917b--


From nobody Thu Sep 26 16: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 27D2F12008A for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 16:58:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.025
X-Spam-Level: 
X-Spam-Status: No, score=-7.025 tagged_above=-999 required=5 tests=[BAYES_00=-1.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.026, 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 FV4BENv1K3Yz for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 16:57: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 A6C8012000F for <quic-issues@ietf.org>; Thu, 26 Sep 2019 16:57:59 -0700 (PDT)
Date: Thu, 26 Sep 2019 16:57:58 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569542278; bh=sG2yl8hAN/yJfzjfaKjg0TGDgJMo1WcYmNEPhQllx4o=; h=Date:From:To:Subject:From; b=Gdnf47gAY/FNtDsNFsDtohd10ww6fwpXvb5xyCjlYncX7gIXqMIwvjOZZcAQ5UeQu c8gJtu4eaV4gsPoaUGjrIMtr7zNphSPhkhnillc9jm9MH0KOh2Fob3zPzj2Bo73qqe vB4E8z6/4Dz+e1l2MCln3xlyhaRltsHlxCxPLU1Q=
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-ack-eliciting/ccd8b3-030e4b@github.com>
Subject: [quicwg/base-drafts] 030e4b: 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/vhZ8a2TuW1UAt3CnleIZehMzBvk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 23:58:01 -0000

  Branch: refs/heads/ianswett-ack-eliciting
  Home:   https://github.com/quicwg/base-drafts
  Commit: 030e4b5584d2768c3dacc88bc286633437de1c46
      https://github.com/quicwg/base-drafts/commit/030e4b5584d2768c3dacc88bc286633437de1c46
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2019-09-26 (Thu, 26 Sep 2019)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md



From nobody Thu Sep 26 16:58: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 6DDC412008A for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 16:58:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.28
X-Spam-Level: 
X-Spam-Status: No, score=-6.28 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, 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 MlKnL2DDjo5j for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 16:58: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 A837112000F for <quic-issues@ietf.org>; Thu, 26 Sep 2019 16:58:07 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id D52F01C0B1F for <quic-issues@ietf.org>; Thu, 26 Sep 2019 16:58:06 -0700 (PDT)
Date: Thu, 26 Sep 2019 16:58:06 -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/3069/push/4082611290@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3069@github.com>
References: <quicwg/base-drafts/pull/3069@github.com>
Subject: Re: [quicwg/base-drafts] ack-eliciting not ACK-eliciting (#3069)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8d508ec6d6e_66bc3fcd0d2cd96c138760"; 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/-X5ZjmlfmQkD-rzYigFJ5rlFaCY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 23:58:10 -0000

----==_mimepart_5d8d508ec6d6e_66bc3fcd0d2cd96c138760
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

030e4b5584d2768c3dacc88bc286633437de1c46  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/3069/files/ccd8b3fa264d1709d269f0d2190299b2b2309eb5..030e4b5584d2768c3dacc88bc286633437de1c46

----==_mimepart_5d8d508ec6d6e_66bc3fcd0d2cd96c138760
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/030e4b5584d2768c3dacc88bc286633437de1c46">030e4b5</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/3069/files/ccd8b3fa264d1709d269f0d2190299b2b2309eb5..030e4b5584d2768c3dacc88bc286633437de1c46?email_source=notifications&amp;email_token=AFTOJKZZDOOGVVKPPWXUXRLQLVEA5A5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA4DENRRGEZDSMA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK736ZL5G25V3RVNI33QLVEA5ANCNFSM4I2OHT2Q">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK52UU6DTBJGZC3ROZLQLVEA5A5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA4DENRRGEZDSMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3069/files/ccd8b3fa264d1709d269f0d2190299b2b2309eb5..030e4b5584d2768c3dacc88bc286633437de1c46?email_source=notifications\u0026email_token=AFTOJKZZDOOGVVKPPWXUXRLQLVEA5A5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA4DENRRGEZDSMA",
"url": "https://github.com/quicwg/base-drafts/pull/3069/files/ccd8b3fa264d1709d269f0d2190299b2b2309eb5..030e4b5584d2768c3dacc88bc286633437de1c46?email_source=notifications\u0026email_token=AFTOJKZZDOOGVVKPPWXUXRLQLVEA5A5CNFSM4I2OHT22YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMZDCMZQGEYDIMCQOVZWQIZUGA4DENRRGEZDSMA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8d508ec6d6e_66bc3fcd0d2cd96c138760--


From nobody Thu Sep 26 16: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 2F35F12008A for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 16:58:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.9
X-Spam-Level: 
X-Spam-Status: No, score=-6.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 MvJjnEy2VxJJ for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 16:58:28 -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 9229D12000F for <quic-issues@ietf.org>; Thu, 26 Sep 2019 16:58:28 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 329B5261583 for <quic-issues@ietf.org>; Thu, 26 Sep 2019 16:58:28 -0700 (PDT)
Date: Thu, 26 Sep 2019 16:58:27 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ba89a2-ed05b2@github.com>
Subject: [quicwg/base-drafts] ed05b2: Script updating gh-pages from 030e4b55. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/W8bYi4yLMg1ybaA1Yu-sm5jEwnA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 26 Sep 2019 23:58:30 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ed05b2c19552c8d05c6308a572a0ff79f916ec0a
      https://github.com/quicwg/base-drafts/commit/ed05b2c19552c8d05c6308a572a0ff79f916ec0a
  Author: ID Bot <idbot@example.com>
  Date:   2019-09-26 (Thu, 26 Sep 2019)

  Changed paths:
    M ianswett-ack-eliciting/draft-ietf-quic-http.html
    M ianswett-ack-eliciting/draft-ietf-quic-invariants.html
    M ianswett-ack-eliciting/draft-ietf-quic-qpack.html
    M ianswett-ack-eliciting/draft-ietf-quic-recovery.html
    M ianswett-ack-eliciting/draft-ietf-quic-tls.html
    M ianswett-ack-eliciting/draft-ietf-quic-transport.html
    M ianswett-ack-eliciting/draft-ietf-quic-transport.txt
    M index.html
    R unclarity-short/draft-ietf-quic-http.html
    R unclarity-short/draft-ietf-quic-http.txt
    R unclarity-short/draft-ietf-quic-invariants.html
    R unclarity-short/draft-ietf-quic-invariants.txt
    R unclarity-short/draft-ietf-quic-qpack.html
    R unclarity-short/draft-ietf-quic-qpack.txt
    R unclarity-short/draft-ietf-quic-recovery.html
    R unclarity-short/draft-ietf-quic-recovery.txt
    R unclarity-short/draft-ietf-quic-tls.html
    R unclarity-short/draft-ietf-quic-tls.txt
    R unclarity-short/draft-ietf-quic-transport.html
    R unclarity-short/draft-ietf-quic-transport.txt
    R unclarity-short/index.html

  Log Message:
  -----------
  Script updating gh-pages from 030e4b55. [ci skip]



From nobody Thu Sep 26 18:36: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 0B7B012013C for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 18:36: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 Oh7FQAOiGdLS for <quic-issues@ietfa.amsl.com>; Thu, 26 Sep 2019 18:36:38 -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 8F81B120020 for <quic-issues@ietf.org>; Thu, 26 Sep 2019 18:36:38 -0700 (PDT)
Date: Thu, 26 Sep 2019 18:36:37 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569548197; bh=raxio6SYqe2Mwm2Y9OypdqCqhI5IvOQA52DjdFfVoa4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=S+tcFP/DX8sRZkrYTMJXU6pFZM7JbFxqV6MWfG90VxxDuzK/1JFFxpSKizftLKxkh 1I0hDVJ62JSAPqoWDjJFPUtY3z1vaeGGrffhWMocKdt50aQl7w9XBJOJWLglpSjy5J /8sPmLX3x9nMPU9yYw0SzqbFsbmIhhYhakHSXEoI=
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK55B2V5GFVEU2WFN2F3TKNCLEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/535746870@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8d67a5cc2b4_29e53fd2364cd96457897"; 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/iBqnU9DghiTEY7SEdrmtcG5dvhM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 27 Sep 2019 01:36:40 -0000

----==_mimepart_5d8d67a5cc2b4_29e53fd2364cd96457897
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett 
> Functionally, a Retry or Initial with no payload should be identical, minus the packet format?
>
> * Both have a Token
> * Both have a way of validating the original CID
> * Both have no other payload

Ah thank you for the clarification. So the idea here is to allow the servers to send tokens in Initial packets (which is currently prohibited), when the payload length is zero.

I agree that that's a possibility, and that we could have taken that path.

OTOH, I am not sure if we should consider that at this late stage, even if we are to authenticate and encrypt the Retry packet. The reasons are:
* Use of the Initial packet does reduce the complexity. It just changes how the clients make the distinction between Initial vs. Retry.
* The existence of PN field is concerning, as the client cannot ACK a Retry.

>From the server's point of view, Retry is an action that happens before a connection is established, and I like the fact that it is given a distinct packet type rather than being defined as a subtype of a packet that could be part of a connection (i.e. carrying PN). And we have enough bits to express the four long header packet types.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-535746870
----==_mimepart_5d8d67a5cc2b4_29e53fd2364cd96457897
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></p>
<blockquote>
<p>Functionally, a Retry or Initial with no payload should be identical, minus the packet format?</p>
<ul>
<li>Both have a Token</li>
<li>Both have a way of validating the original CID</li>
<li>Both have no other payload</li>
</ul>
</blockquote>
<p>Ah thank you for the clarification. So the idea here is to allow the servers to send tokens in Initial packets (which is currently prohibited), when the payload length is zero.</p>
<p>I agree that that's a possibility, and that we could have taken that path.</p>
<p>OTOH, I am not sure if we should consider that at this late stage, even if we are to authenticate and encrypt the Retry packet. The reasons are:</p>
<ul>
<li>Use of the Initial packet does reduce the complexity. It just changes how the clients make the distinction between Initial vs. Retry.</li>
<li>The existence of PN field is concerning, as the client cannot ACK a Retry.</li>
</ul>
<p>From the server's point of view, Retry is an action that happens before a connection is established, and I like the fact that it is given a distinct packet type rather than being defined as a subtype of a packet that could be part of a connection (i.e. carrying PN). And we have enough bits to express the four long header packet types.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJK2SDKPP736CS7PKYMTQLVPSLA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7XNSNQ#issuecomment-535746870">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7KFC4WYXD7BJ2GUPLQLVPSLANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5LZ77L6T5AB2U5WPDQLVPSLA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7XNSNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK2SDKPP736CS7PKYMTQLVPSLA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7XNSNQ#issuecomment-535746870",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJK2SDKPP736CS7PKYMTQLVPSLA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7XNSNQ#issuecomment-535746870",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8d67a5cc2b4_29e53fd2364cd96457897--


From nobody Fri Sep 27 07:38: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 2C1DE1200F5 for <quic-issues@ietfa.amsl.com>; Fri, 27 Sep 2019 07:38: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 b7NN9VEjTOzH for <quic-issues@ietfa.amsl.com>; Fri, 27 Sep 2019 07:38: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 A3BAC12010C for <quic-issues@ietf.org>; Fri, 27 Sep 2019 07:38:25 -0700 (PDT)
Date: Fri, 27 Sep 2019 07:38:24 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569595104; bh=X36svculBabI1ozpEjQch684LqXGaAtrjHHKWX4cXgs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nCWl8+r/fr5ZF9L+rhk6iSuQceevpVaijQhSzOAHx5WWjlsVA1DC7/KbPLZmKe8sl NTRWLaLa1y1T5/g5LxWCnrN1mOgwD8lyiAOSYv9+oYhlo+HuQTZllZtY0oYx4DRYL1 S/DT5IfD+yEfn/BwGNeRkh0LXb053lugNxrs4j6U=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4P7OGOZLYQQFOYRPN3TNPXBEVBNHHB2TYBKQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3014/535967378@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3014@github.com>
References: <quicwg/base-drafts/issues/3014@github.com>
Subject: Re: [quicwg/base-drafts] Handling of corrupt Retry packets (#3014)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8e1ee0cf4eb_68473faa5a0cd96c2104fa"; 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/HDuY4kBQLfRBnlG-YYhqsZnH7yg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 27 Sep 2019 14:38:27 -0000

----==_mimepart_5d8e1ee0cf4eb_68473faa5a0cd96c2104fa
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thanks @kazuho I forgot Retry didn't have a PN.  That is a bit concerning.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3014#issuecomment-535967378
----==_mimepart_5d8e1ee0cf4eb_68473faa5a0cd96c2104fa
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=41567" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a> I forgot Retry didn't have a PN.  That is a bit concerning.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications&amp;email_token=AFTOJKY23GUDYA2EV7NRXIDQLYLGBA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7ZDNEQ#issuecomment-535967378">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZH3W6FDFW2RW56VLDQLYLGBANCNFSM4IVITWZA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK72PLGOQ355R3UGO5TQLYLGBA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7ZDNEQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJKY23GUDYA2EV7NRXIDQLYLGBA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7ZDNEQ#issuecomment-535967378",
"url": "https://github.com/quicwg/base-drafts/issues/3014?email_source=notifications\u0026email_token=AFTOJKY23GUDYA2EV7NRXIDQLYLGBA5CNFSM4IVITWZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7ZDNEQ#issuecomment-535967378",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8e1ee0cf4eb_68473faa5a0cd96c2104fa--


From nobody Fri Sep 27 10:26: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 DCF68120A79 for <quic-issues@ietfa.amsl.com>; Fri, 27 Sep 2019 10:26:09 -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 k3FLitCjskww for <quic-issues@ietfa.amsl.com>; Fri, 27 Sep 2019 10:26: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 23B9C120A76 for <quic-issues@ietf.org>; Fri, 27 Sep 2019 10:26:06 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 76390A1E72 for <quic-issues@ietf.org>; Fri, 27 Sep 2019 10:26:05 -0700 (PDT)
Date: Fri, 27 Sep 2019 10:26:05 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYYUSA3CCE4WJZWKJF3TODL3EVBNHHB3CL6HQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3050/review/294411517@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3050@github.com>
References: <quicwg/base-drafts/pull/3050@github.com>
Subject: Re: [quicwg/base-drafts] Rewrite key update section (#3050)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8e462d67354_13833faf9cecd96c2460db"; 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/gGU1YbApj1lAJdZPS0ZHghFrH1k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 27 Sep 2019 17:26:10 -0000

----==_mimepart_5d8e462d67354_13833faf9cecd96c2460db
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett commented on this pull request.

This generally looks like an improvement, some suggestions.

> +: Keys of packets other than the 1-RTT packets are never updated; their keys are
+  derived solely from the TLS handshake state.
+
+The endpoint that initiates a key update also updates the keys that it uses for
+receiving packets.  These keys will be needed to process packets the peer sends
+after updating.
+
+An endpoint SHOULD retain old keys so that packets sent by its peer prior to
+receiving the key update can be processed.  Discarding old keys too early can
+cause delayed packets to be discarded.  Discarding packets will be interpreted
+as packet loss by the peer and could adversely affect performance.
+
+
+## Responding to a Key Update
+
+Once an endpoint has acknowledged a packet in the current key phase, a peer is

I misread this a few times at first, so how about "A peer is permitted to initiate a key update after receiving an acknowledgement of a packet in the current key phase."  Or you could remove this sentence entirely given there's a MUST NOT above.

> +keys for receiving.
+
+If a packet is successfully processed using the next key and IV, then the peer
+has initiated a key update.  The endpoint MUST update its send keys to the
+corresponding key phase in response, as described in {{key-update-initiate}}.
+Sending keys MUST be updated before sending an acknowledgement for the packet
+that was received with updated keys.  By acknowledging the packet that triggered
+the key update in a packet protected with the updated keys, the endpoint signals
+that the key update is complete.
+
+An endpoint can defer sending the packet or acknowledgement according to its
+normal packet sending behaviour; it is not necessary to immediately generate a
+packet in response to a key update.  The next packet sent by the endpoint will
+use the updated keys.  The next packet that contains an acknowledgement will
+cause the key update to be completed.  If an endpoint detects a second update
+before it has sent any packets with updated keys or an acknowledgement for the

It has to send an acknowledgement, so I think this can be more restrictive?
```suggestion
before it has sent any packets with updated keys containing an acknowledgement for the
```

> +keys twice without awaiting confirmation.  An endpoint MAY treat consecutive key
+updates as a connection error of type KEY_UPDATE_ERROR.
+
+An endpoint that receives an acknowledgement that is carried in a packet
+protected with old keys where any acknowledged packet was protected with newer
+keys MAY treat that as a connection error of type KEY_UPDATE_ERROR.  This
+indicates that a peer has received and acknowledged a packet that initiates a
+key update, but has not updated keys in response.
+
+
+## Timing of Receive Key Generation {#receive-key-generation}
+
+Endpoints responding to an apparent key update MUST NOT generate a timing
+side-channel signal that might indicate that the Key Phase bit was invalid (see
+{{header-protect-analysis}}).  Endpoints can use dummy packet protection keys in
+place of discarded keys when key updates are not permitted; using dummy keys

There's no way to indicate key updates are not permitted at all, correct?  Maybe say "not yet permitted" to be slightly clearer that it's too early/fast, and key updates are not an optional feature.

> +has initiated a key update.  The endpoint MUST update its send keys to the
+corresponding key phase in response, as described in {{key-update-initiate}}.
+Sending keys MUST be updated before sending an acknowledgement for the packet
+that was received with updated keys.  By acknowledging the packet that triggered
+the key update in a packet protected with the updated keys, the endpoint signals
+that the key update is complete.
+
+An endpoint can defer sending the packet or acknowledgement according to its
+normal packet sending behaviour; it is not necessary to immediately generate a
+packet in response to a key update.  The next packet sent by the endpoint will
+use the updated keys.  The next packet that contains an acknowledgement will
+cause the key update to be completed.  If an endpoint detects a second update
+before it has sent any packets with updated keys or an acknowledgement for the
+packet that initiated the key update, it indicates that its peer has updated
+keys twice without awaiting confirmation.  An endpoint MAY treat consecutive key
+updates as a connection error of type KEY_UPDATE_ERROR.

I'll note that this means every time there is a key update, there is a small window of time where a peer can reset the connection unless the receiver successfully decrypts the incoming packet before sending the connection close.  Maybe what you're intending is that the receiver detects a second update and is processed, but I wasn't sure.

> +keys.
+
+Packets with higher packet numbers MUST be protected with either the same or
+newer packet protection keys than packets with lower packet numbers.  An
+endpoint that successfully removes protection with old keys when newer keys were
+used for packets with lower packet numbers MUST treat this as a connection error
+of type KEY_UPDATE_ERROR.
+
+
+## Receiving with Different Keys {#old-keys-recv}
+
+For receiving packets during a key update, packets protected with older keys
+might arrive if they were delayed by the network.  Retaining old packet
+protection keys allows these packets to be successfully processed.
+
+As packet protected with keys from the next key phase use the same Key Phase

```suggestion
As packets protected with keys from the next key phase use the same Key Phase
```

> +channel that might reveal which keys were used to remove packet protection.
+
+Alternatively, endpoints can retain only two sets of packet protection keys,
+swapping previous for next after enough time has passed to allow for reordering
+in the network.  In this case, the Key Phase bit alone can be used to select
+keys.
+
+An endpoint SHOULD allow a period between one and two times the Probe Timeout
+(PTO; see {{QUIC-RECOVERY}}) after a key update before it creates the next set
+of packet protection keys.  These MAY replace the previous keys at that time.
+With the caveat that PTO is a subjective measure - that is, a peer could have a
+different view of the RTT - this time is expected to be long enough that any
+reordered packets would be declared lost by a peer even if they were
+acknowledged and short enough to allow for subsequent key updates.
+
+Endpoints SHOULD allow for the possibility that a peer is not able to handle a

I'm confused by the one to two times PTO vs three times PTO here.  I prefer this second paragraph that states you need to way 3*PTO after key update is complete, minus the fact I'm unclear what "a peer is not able to handle a key update during this period" means?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3050#pullrequestreview-294411517
----==_mimepart_5d8e462d67354_13833faf9cecd96c2460db
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 generally looks like an improvement, some suggestions.</p><hr>=0D=

=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3050#discussi=
on_r329136800">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +: Keys of packets other than the 1-RTT pa=
ckets are never updated; their keys are=0D
+  derived solely from the TLS handshake state.=0D
+=0D
+The endpoint that initiates a key update also updates the keys that it u=
ses for=0D
+receiving packets.  These keys will be needed to process packets the pee=
r sends=0D
+after updating.=0D
+=0D
+An endpoint SHOULD retain old keys so that packets sent by its peer prio=
r to=0D
+receiving the key update can be processed.  Discarding old keys too earl=
y can=0D
+cause delayed packets to be discarded.  Discarding packets will be inter=
preted=0D
+as packet loss by the peer and could adversely affect performance.=0D
+=0D
+=0D
+## Responding to a Key Update=0D
+=0D
+Once an endpoint has acknowledged a packet in the current key phase, a p=
eer is=0D
</pre>=0D
<p>I misread this a few times at first, so how about "A peer is permitted=
 to initiate a key update after receiving an acknowledgement of a packet =
in the current key phase."  Or you could remove this sentence entirely gi=
ven there's a MUST NOT above.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3050#discussi=
on_r329138705">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +keys for receiving.=0D
+=0D
+If a packet is successfully processed using the next key and IV, then th=
e peer=0D
+has initiated a key update.  The endpoint MUST update its send keys to t=
he=0D
+corresponding key phase in response, as described in {{key-update-initia=
te}}.=0D
+Sending keys MUST be updated before sending an acknowledgement for the p=
acket=0D
+that was received with updated keys.  By acknowledging the packet that t=
riggered=0D
+the key update in a packet protected with the updated keys, the endpoint=
 signals=0D
+that the key update is complete.=0D
+=0D
+An endpoint can defer sending the packet or acknowledgement according to=
 its=0D
+normal packet sending behaviour; it is not necessary to immediately gene=
rate a=0D
+packet in response to a key update.  The next packet sent by the endpoin=
t will=0D
+use the updated keys.  The next packet that contains an acknowledgement =
will=0D
+cause the key update to be completed.  If an endpoint detects a second u=
pdate=0D
+before it has sent any packets with updated keys or an acknowledgement f=
or the=0D
</pre>=0D
<p>It has to send an acknowledgement, so I think this can be more restric=
tive?</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-before it has sent any packets with updated k=
eys or an acknowledgement for the=0D
+before it has sent any packets with updated keys containing an acknowled=
gement for the=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3050#discussi=
on_r329140295">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +keys twice without awaiting confirmation.=
  An endpoint MAY treat consecutive key=0D
+updates as a connection error of type KEY_UPDATE_ERROR.=0D
+=0D
+An endpoint that receives an acknowledgement that is carried in a packet=
=0D
+protected with old keys where any acknowledged packet was protected with=
 newer=0D
+keys MAY treat that as a connection error of type KEY_UPDATE_ERROR.  Thi=
s=0D
+indicates that a peer has received and acknowledged a packet that initia=
tes a=0D
+key update, but has not updated keys in response.=0D
+=0D
+=0D
+## Timing of Receive Key Generation {#receive-key-generation}=0D
+=0D
+Endpoints responding to an apparent key update MUST NOT generate a timin=
g=0D
+side-channel signal that might indicate that the Key Phase bit was inval=
id (see=0D
+{{header-protect-analysis}}).  Endpoints can use dummy packet protection=
 keys in=0D
+place of discarded keys when key updates are not permitted; using dummy =
keys=0D
</pre>=0D
<p>There's no way to indicate key updates are not permitted at all, corre=
ct?  Maybe say "not yet permitted" to be slightly clearer that it's too e=
arly/fast, and key updates are not an optional feature.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3050#discussi=
on_r329171673">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +has initiated a key update.  The endpoint=
 MUST update its send keys to the=0D
+corresponding key phase in response, as described in {{key-update-initia=
te}}.=0D
+Sending keys MUST be updated before sending an acknowledgement for the p=
acket=0D
+that was received with updated keys.  By acknowledging the packet that t=
riggered=0D
+the key update in a packet protected with the updated keys, the endpoint=
 signals=0D
+that the key update is complete.=0D
+=0D
+An endpoint can defer sending the packet or acknowledgement according to=
 its=0D
+normal packet sending behaviour; it is not necessary to immediately gene=
rate a=0D
+packet in response to a key update.  The next packet sent by the endpoin=
t will=0D
+use the updated keys.  The next packet that contains an acknowledgement =
will=0D
+cause the key update to be completed.  If an endpoint detects a second u=
pdate=0D
+before it has sent any packets with updated keys or an acknowledgement f=
or the=0D
+packet that initiated the key update, it indicates that its peer has upd=
ated=0D
+keys twice without awaiting confirmation.  An endpoint MAY treat consecu=
tive key=0D
+updates as a connection error of type KEY_UPDATE_ERROR.=0D
</pre>=0D
<p>I'll note that this means every time there is a key update, there is a=
 small window of time where a peer can reset the connection unless the re=
ceiver successfully decrypts the incoming packet before sending the conne=
ction close.  Maybe what you're intending is that the receiver detects a =
second update and is processed, but I wasn't sure.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3050#discussi=
on_r329173228">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +keys.=0D
+=0D
+Packets with higher packet numbers MUST be protected with either the sam=
e or=0D
+newer packet protection keys than packets with lower packet numbers.  An=
=0D
+endpoint that successfully removes protection with old keys when newer k=
eys were=0D
+used for packets with lower packet numbers MUST treat this as a connecti=
on error=0D
+of type KEY_UPDATE_ERROR.=0D
+=0D
+=0D
+## Receiving with Different Keys {#old-keys-recv}=0D
+=0D
+For receiving packets during a key update, packets protected with older =
keys=0D
+might arrive if they were delayed by the network.  Retaining old packet=0D=

+protection keys allows these packets to be successfully processed.=0D
+=0D
+As packet protected with keys from the next key phase use the same Key P=
hase=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-As packet protected with keys from the next k=
ey phase use the same Key Phase=0D
+As packets protected with keys from the next key phase use the same Key =
Phase=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3050#discussi=
on_r329174823">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +channel that might reveal which keys were=
 used to remove packet protection.=0D
+=0D
+Alternatively, endpoints can retain only two sets of packet protection k=
eys,=0D
+swapping previous for next after enough time has passed to allow for reo=
rdering=0D
+in the network.  In this case, the Key Phase bit alone can be used to se=
lect=0D
+keys.=0D
+=0D
+An endpoint SHOULD allow a period between one and two times the Probe Ti=
meout=0D
+(PTO; see {{QUIC-RECOVERY}}) after a key update before it creates the ne=
xt set=0D
+of packet protection keys.  These MAY replace the previous keys at that =
time.=0D
+With the caveat that PTO is a subjective measure - that is, a peer could=
 have a=0D
+different view of the RTT - this time is expected to be long enough that=
 any=0D
+reordered packets would be declared lost by a peer even if they were=0D
+acknowledged and short enough to allow for subsequent key updates.=0D
+=0D
+Endpoints SHOULD allow for the possibility that a peer is not able to ha=
ndle a=0D
</pre>=0D
<p>I'm confused by the one to two times PTO vs three times PTO here.  I p=
refer this second paragraph that states you need to way 3*PTO after key u=
pdate is complete, minus the fact I'm unclear what "a peer is not able to=
 handle a key update during this period" means?</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/3050?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK66V3UJ7S7DFUATOHDQLY623A5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGGFZ7I#pullrequestreview-294411517=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJK6P2ET6TMVJYFE4B2DQLY623ANCNFSM4IYF37JQ">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJKZJHQN7=
X7K2FLHD44DQLY623A5CNFSM4IYF37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCGGFZ7I.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/3050?email_source=3D=
notifications\u0026email_token=3DAFTOJK66V3UJ7S7DFUATOHDQLY623A5CNFSM4IYF=
37J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
GGFZ7I#pullrequestreview-294411517",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3050?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK66V3UJ7S7DFUATOHDQLY623A5CNFSM4IYF37=
J2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGG=
FZ7I#pullrequestreview-294411517",=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_5d8e462d67354_13833faf9cecd96c2460db--


From nobody Fri Sep 27 12:19: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 07FA11200E6 for <quic-issues@ietfa.amsl.com>; Fri, 27 Sep 2019 12:19:51 -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 FZm6Zx-39Egz for <quic-issues@ietfa.amsl.com>; Fri, 27 Sep 2019 12:19: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 3CDEE1200E3 for <quic-issues@ietf.org>; Fri, 27 Sep 2019 12:19:49 -0700 (PDT)
Date: Fri, 27 Sep 2019 12:19:48 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569611988; bh=CSWUSVaG2t5YgI/7bb2Jm7eeEMM7ZhPyrfiTGMNfYz8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0uRD0qnJC7P6vN5/L91y8hqm3F3/cuJYRB+urX8C7DJqccmvic7f/B+2VFdYFSIAa uJQ5cEb8AXhj2IQKgDFoomKr0DKEfmKxB7LefPYWVEntWINFZukJMxLBScef50M/9f OEw9xEZaeGuhfn0Kp/IX4k+jI+yEv1SY+VWkeh+o=
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK36ZSR7AI2OTWVOYYF3TOQWJEVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/review/294515748@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8e60d469e60_41843fe6444cd96040122"; 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/OAwrRsrIvLYCVmlWbQK4w7u59mc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 27 Sep 2019 19:19:51 -0000

----==_mimepart_5d8e60d469e60_41843fe6444cd96040122
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

ianswett approved this pull request.

Some minor nits, but the core content looks good.

> @@ -570,11 +570,16 @@ older than 1.3 is negotiated.
 
 ## ClientHello Size {#clienthello-size}
 
-QUIC requires that the first Initial packet from a client contain an entire
-cryptographic handshake message, which for TLS is the ClientHello.  Though a
-packet larger than 1200 bytes might be supported by the path, a client improves
-the likelihood that a packet is accepted if it ensures that the first
-ClientHello message is small enough to stay within this limit.
+The first Initial packet from a client starts with its first cryptographic

```suggestion
The first Initial packet from a client contains the start or all of its first cryptographic
```

> @@ -589,12 +594,9 @@ QUIC transport parameters, and other negotiable parameters and extensions could
 cause this message to grow.
 
 For servers, in addition to connection IDs and tokens, the size of TLS session
-tickets can have an effect on a client's ability to connect.  Minimizing the
-size of these values increases the probability that they can be successfully
-used by a client.
-
-A client is not required to fit the ClientHello that it sends in response to a
-HelloRetryRequest message into a single UDP datagram.
+tickets can have an effect on a client's ability to connect efficiently.
+Minimizing the size of these values increases the probability that they can be
+successfully used by a client.

This second sentence now seems out of place, since it's unclear why clients wouldn't be able to use them?

> @@ -3959,16 +3950,15 @@ Initial packet containing other frames can either discard the packet as spurious
 or treat it as a connection error.
 
 The first packet sent by a client always includes a CRYPTO frame that contains
-the entirety of the first cryptographic handshake message.  This packet, and the
-cryptographic handshake message, MUST fit in a single UDP datagram (see
-{{handshake}}).  The first CRYPTO frame sent always begins at an offset of 0
-(see {{handshake}}).
-
-Note that if the server sends a HelloRetryRequest, the client will send a second
-Initial packet.  This Initial packet will continue the cryptographic handshake
-and will contain a CRYPTO frame with an offset matching the size of the CRYPTO
-frame sent in the first Initial packet.  Cryptographic handshake messages
-subsequent to the first do not need to fit within a single UDP datagram.
+the start of the first cryptographic handshake message.  The first CRYPTO frame

```suggestion
the start or all of the first cryptographic handshake message.  The first CRYPTO 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/pull/3045#pullrequestreview-294515748
----==_mimepart_5d8e60d469e60_41843fe6444cd96040122
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><b>@ianswett</b> approved this pull request.</p>=0D
=0D
<p>Some minor nits, but the core content looks good.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3045#discussi=
on_r329215330">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -570,11 +570,16 @@ older than 1.3 is ne=
gotiated.=0D
 =0D
 ## ClientHello Size {#clienthello-size}=0D
 =0D
-QUIC requires that the first Initial packet from a client contain an ent=
ire=0D
-cryptographic handshake message, which for TLS is the ClientHello.  Thou=
gh a=0D
-packet larger than 1200 bytes might be supported by the path, a client i=
mproves=0D
-the likelihood that a packet is accepted if it ensures that the first=0D=

-ClientHello message is small enough to stay within this limit.=0D
+The first Initial packet from a client starts with its first cryptograph=
ic=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-The first Initial packet from a client starts=
 with its first cryptographic=0D
+The first Initial packet from a client contains the start or all of its =
first cryptographic=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3045#discussi=
on_r329216200">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -589,12 +594,9 @@ QUIC transport parame=
ters, and other negotiable parameters and extensions could=0D
 cause this message to grow.=0D
 =0D
 For servers, in addition to connection IDs and tokens, the size of TLS s=
ession=0D
-tickets can have an effect on a client&#39;s ability to connect.  Minimi=
zing the=0D
-size of these values increases the probability that they can be successf=
ully=0D
-used by a client.=0D
-=0D
-A client is not required to fit the ClientHello that it sends in respons=
e to a=0D
-HelloRetryRequest message into a single UDP datagram.=0D
+tickets can have an effect on a client&#39;s ability to connect efficien=
tly.=0D
+Minimizing the size of these values increases the probability that they =
can be=0D
+successfully used by a client.=0D
</pre>=0D
<p>This second sentence now seems out of place, since it's unclear why cl=
ients wouldn't be able to use them?</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3045#discussi=
on_r329216631">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3959,16 +3950,15 @@ Initial packet con=
taining other frames can either discard the packet as spurious=0D
 or treat it as a connection error.=0D
 =0D
 The first packet sent by a client always includes a CRYPTO frame that co=
ntains=0D
-the entirety of the first cryptographic handshake message.  This packet,=
 and the=0D
-cryptographic handshake message, MUST fit in a single UDP datagram (see=0D=

-{{handshake}}).  The first CRYPTO frame sent always begins at an offset =
of 0=0D
-(see {{handshake}}).=0D
-=0D
-Note that if the server sends a HelloRetryRequest, the client will send =
a second=0D
-Initial packet.  This Initial packet will continue the cryptographic han=
dshake=0D
-and will contain a CRYPTO frame with an offset matching the size of the =
CRYPTO=0D
-frame sent in the first Initial packet.  Cryptographic handshake message=
s=0D
-subsequent to the first do not need to fit within a single UDP datagram.=
=0D
+the start of the first cryptographic handshake message.  The first CRYPT=
O frame=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-the start of the first cryptographic handshak=
e message.  The first CRYPTO frame=0D
+the start or all of the first cryptographic handshake message.  The firs=
t CRYPTO frame=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/3045?email_source=3Dnotifications&amp;email_token=3DA=
FTOJK5WJ5HKKQBQ3GFBYSDQLZMFJA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJ=
SXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGG7IJA#pullrequestreview-294515748=
">view it on GitHub</a>, or <a href=3D"https://github.com/notifications/u=
nsubscribe-auth/AFTOJKZEGIWG4ST4ED7MPS3QLZMFJANCNFSM4IXMS4DA">mute the th=
read</a>.<img src=3D"https://github.com/notifications/beacon/AFTOJKYLZPB6=
ZYP2R6L7IZTQLZMFJA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FE=
ZLWNFSXPKTDN5WW2ZLOORPWSZGOCGG7IJA.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/3045?email_source=3D=
notifications\u0026email_token=3DAFTOJK5WJ5HKKQBQ3GFBYSDQLZMFJA5CNFSM4IXM=
S4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC=
GG7IJA#pullrequestreview-294515748",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=3Dno=
tifications\u0026email_token=3DAFTOJK5WJ5HKKQBQ3GFBYSDQLZMFJA5CNFSM4IXMS4=
DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGG=
7IJA#pullrequestreview-294515748",=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_5d8e60d469e60_41843fe6444cd96040122--


From nobody Fri Sep 27 16:15: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 D3A0212021C for <quic-issues@ietfa.amsl.com>; Fri, 27 Sep 2019 16:15:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.495
X-Spam-Level: 
X-Spam-Status: No, score=-6.495 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, 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 boc-jDd4yOIb for <quic-issues@ietfa.amsl.com>; Fri, 27 Sep 2019 16:15: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 4E3CE120071 for <quic-issues@ietf.org>; Fri, 27 Sep 2019 16:15:38 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 811466A10D9 for <quic-issues@ietf.org>; Fri, 27 Sep 2019 16:15:37 -0700 (PDT)
Date: Fri, 27 Sep 2019 16:15:37 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/push/4086854838@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8e981972079_16dc3ffb9fecd96810965e"; 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/nCWuRw1mlojUaNUAP9G3afv6ZRg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 27 Sep 2019 23:15:40 -0000

----==_mimepart_5d8e981972079_16dc3ffb9fecd96810965e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi pushed 2 commits.

9951381007ee865c62fe411de213ad0162648f7d  Merge branch 'master' into multi_packet_client_hello
55695427d3604f12b8c92144c9f1fceb2b770d22  Review comments from Ian


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3045/files/da7b436e37cc2a23712c6c0ae40488592e7e33c2..55695427d3604f12b8c92144c9f1fceb2b770d22

----==_mimepart_5d8e981972079_16dc3ffb9fecd96810965e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/DavidSchinazi" class="user-mention">@DavidSchinazi</a> pushed 2 commits.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/9951381007ee865c62fe411de213ad0162648f7d">9951381</a>  Merge branch &#39;master&#39; into multi_packet_client_hello</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/55695427d3604f12b8c92144c9f1fceb2b770d22">5569542</a>  Review comments from Ian</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3045/files/da7b436e37cc2a23712c6c0ae40488592e7e33c2..55695427d3604f12b8c92144c9f1fceb2b770d22?email_source=notifications&amp;email_token=AFTOJKY7MOJ2ZM6OWY2WIBLQL2HZTA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA4DMOBVGQ4DGOA">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6W4OKVO7BEK3VF4CLQL2HZTANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK5XXI2BK74JN3PMWVDQL2HZTA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA4DMOBVGQ4DGOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045/files/da7b436e37cc2a23712c6c0ae40488592e7e33c2..55695427d3604f12b8c92144c9f1fceb2b770d22?email_source=notifications\u0026email_token=AFTOJKY7MOJ2ZM6OWY2WIBLQL2HZTA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA4DMOBVGQ4DGOA",
"url": "https://github.com/quicwg/base-drafts/pull/3045/files/da7b436e37cc2a23712c6c0ae40488592e7e33c2..55695427d3604f12b8c92144c9f1fceb2b770d22?email_source=notifications\u0026email_token=AFTOJKY7MOJ2ZM6OWY2WIBLQL2HZTA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGMYTQMRSGM2TENCQOVZWQIZUGA4DMOBVGQ4DGOA",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5d8e981972079_16dc3ffb9fecd96810965e--


From nobody Fri Sep 27 16: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 3C354120071 for <quic-issues@ietfa.amsl.com>; Fri, 27 Sep 2019 16:15:48 -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 uzgfD776hoe3 for <quic-issues@ietfa.amsl.com>; Fri, 27 Sep 2019 16:15: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 E4F9912021C for <quic-issues@ietf.org>; Fri, 27 Sep 2019 16:15:45 -0700 (PDT)
Date: Fri, 27 Sep 2019 16:15:45 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569626145; bh=2TGrwC3B3sxUkYuIWAAWTlRAloNawxm8hEj1d5icqZI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rqaK8JcEH9XTzvek40elF5vdJZuNDBhm5BDX0tCrL6+SR4HIy6UeOfO6vKy/lx4OV ToCN1bgHe7g/VVMbdesUMep+lNyALIJhyBjd3rdjKeFmh3pASy1MTlrdYxT6x/ejlk dF3xPk9GlhqkmqYeiq7AwIv8RfDtaYE97udG8fhU=
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK23UINUGCGMBZ3IMLF3TPMLDEVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/review/294599640@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8e98215a3d_761b3f80a44cd95c65815"; 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/TaNIPlcc1QI4NKjGUdn-lYvrGcw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 27 Sep 2019 23:15:48 -0000

----==_mimepart_5d8e98215a3d_761b3f80a44cd95c65815
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

DavidSchinazi commented on this pull request.



> @@ -3959,16 +3950,15 @@ Initial packet containing other frames can either discard the packet as spurious
 or treat it as a connection error.
 
 The first packet sent by a client always includes a CRYPTO frame that contains
-the entirety of the first cryptographic handshake message.  This packet, and the
-cryptographic handshake message, MUST fit in a single UDP datagram (see
-{{handshake}}).  The first CRYPTO frame sent always begins at an offset of 0
-(see {{handshake}}).
-
-Note that if the server sends a HelloRetryRequest, the client will send a second
-Initial packet.  This Initial packet will continue the cryptographic handshake
-and will contain a CRYPTO frame with an offset matching the size of the CRYPTO
-frame sent in the first Initial packet.  Cryptographic handshake messages
-subsequent to the first do not need to fit within a single UDP datagram.
+the start of the first cryptographic handshake message.  The first CRYPTO frame

Fixed

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3045#discussion_r329279353
----==_mimepart_5d8e98215a3d_761b3f80a44cd95c65815
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/3045#discussion_r329279353">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3959,16 +3950,15 @@ Initial packet containing other frames can either discard the packet as spurious
 or treat it as a connection error.
 
 The first packet sent by a client always includes a CRYPTO frame that contains
-the entirety of the first cryptographic handshake message.  This packet, and the
-cryptographic handshake message, MUST fit in a single UDP datagram (see
-{{handshake}}).  The first CRYPTO frame sent always begins at an offset of 0
-(see {{handshake}}).
-
-Note that if the server sends a HelloRetryRequest, the client will send a second
-Initial packet.  This Initial packet will continue the cryptographic handshake
-and will contain a CRYPTO frame with an offset matching the size of the CRYPTO
-frame sent in the first Initial packet.  Cryptographic handshake messages
-subsequent to the first do not need to fit within a single UDP datagram.
+the start of the first cryptographic handshake message.  The first CRYPTO frame
</pre>
<p>Fixed</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications&amp;email_token=AFTOJKZ3CYGSNIV34FIW72DQL2H2DA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGHTXWA#discussion_r329279353">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6AUVH3DOAWFLHNKJTQL2H2DANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYXMBVATGZ35HJCOWTQL2H2DA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGHTXWA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJKZ3CYGSNIV34FIW72DQL2H2DA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGHTXWA#discussion_r329279353",
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJKZ3CYGSNIV34FIW72DQL2H2DA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGHTXWA#discussion_r329279353",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8e98215a3d_761b3f80a44cd95c65815--


From nobody Fri Sep 27 16:15: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 17FF61207FF for <quic-issues@ietfa.amsl.com>; Fri, 27 Sep 2019 16:15:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.521
X-Spam-Level: 
X-Spam-Status: No, score=-6.521 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.026, 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 iAVPBS3FsMa5 for <quic-issues@ietfa.amsl.com>; Fri, 27 Sep 2019 16:15: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 4BA4512021C for <quic-issues@ietf.org>; Fri, 27 Sep 2019 16:15:54 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 546F4C607BF for <quic-issues@ietf.org>; Fri, 27 Sep 2019 16:15:53 -0700 (PDT)
Date: Fri, 27 Sep 2019 16:15:53 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZTDGHQ67CE7YPRIN53TPMLTEVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/review/294599658@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8e982943e86_4333fc113ccd9686149a"; 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/qlZh1LfFrwrYCFZ7w3DkML99gNk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 27 Sep 2019 23:15:56 -0000

----==_mimepart_5d8e982943e86_4333fc113ccd9686149a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

DavidSchinazi commented on this pull request.



> @@ -589,12 +594,9 @@ QUIC transport parameters, and other negotiable parameters and extensions could
 cause this message to grow.
 
 For servers, in addition to connection IDs and tokens, the size of TLS session
-tickets can have an effect on a client's ability to connect.  Minimizing the
-size of these values increases the probability that they can be successfully
-used by a client.
-
-A client is not required to fit the ClientHello that it sends in response to a
-HelloRetryRequest message into a single UDP datagram.
+tickets can have an effect on a client's ability to connect efficiently.
+Minimizing the size of these values increases the probability that they can be
+successfully used by a client.

Fixed

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3045#discussion_r329279370
----==_mimepart_5d8e982943e86_4333fc113ccd9686149a
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/3045#discussion_r329279370">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -589,12 +594,9 @@ QUIC transport parameters, and other negotiable parameters and extensions could
 cause this message to grow.
 
 For servers, in addition to connection IDs and tokens, the size of TLS session
-tickets can have an effect on a client&#39;s ability to connect.  Minimizing the
-size of these values increases the probability that they can be successfully
-used by a client.
-
-A client is not required to fit the ClientHello that it sends in response to a
-HelloRetryRequest message into a single UDP datagram.
+tickets can have an effect on a client&#39;s ability to connect efficiently.
+Minimizing the size of these values increases the probability that they can be
+successfully used by a client.
</pre>
<p>Fixed</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications&amp;email_token=AFTOJK67LMGBSLD6FTHKMBTQL2H2TA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGHTX2Q#discussion_r329279370">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZVN56B776CKWCLXX3QL2H2TANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK76A2AFA3PZXP7LPVLQL2H2TA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGHTX2Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK67LMGBSLD6FTHKMBTQL2H2TA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGHTX2Q#discussion_r329279370",
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK67LMGBSLD6FTHKMBTQL2H2TA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGHTX2Q#discussion_r329279370",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8e982943e86_4333fc113ccd9686149a--


From nobody Fri Sep 27 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 DA454120071 for <quic-issues@ietfa.amsl.com>; Fri, 27 Sep 2019 16:16:02 -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 mKXYE4rQvG-a for <quic-issues@ietfa.amsl.com>; Fri, 27 Sep 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 E5B6C12021C for <quic-issues@ietf.org>; Fri, 27 Sep 2019 16:16:00 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 11807660774 for <quic-issues@ietf.org>; Fri, 27 Sep 2019 16:16:00 -0700 (PDT)
Date: Fri, 27 Sep 2019 16:16:00 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYZZKKUTC5X7JVUBVV3TPMMBEVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/review/294599688@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8e98301bd5_6a173fdaef8cd96c30597"; 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/Xo0UvzuvCnvV62di4u_LRpLGILw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 27 Sep 2019 23:16:03 -0000

----==_mimepart_5d8e98301bd5_6a173fdaef8cd96c30597
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

DavidSchinazi commented on this pull request.



> @@ -570,11 +570,16 @@ older than 1.3 is negotiated.
 
 ## ClientHello Size {#clienthello-size}
 
-QUIC requires that the first Initial packet from a client contain an entire
-cryptographic handshake message, which for TLS is the ClientHello.  Though a
-packet larger than 1200 bytes might be supported by the path, a client improves
-the likelihood that a packet is accepted if it ensures that the first
-ClientHello message is small enough to stay within this limit.
+The first Initial packet from a client starts with its first cryptographic

Fixed

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3045#discussion_r329279384
----==_mimepart_5d8e98301bd5_6a173fdaef8cd96c30597
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/3045#discussion_r329279384">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -570,11 +570,16 @@ older than 1.3 is negotiated.
 
 ## ClientHello Size {#clienthello-size}
 
-QUIC requires that the first Initial packet from a client contain an entire
-cryptographic handshake message, which for TLS is the ClientHello.  Though a
-packet larger than 1200 bytes might be supported by the path, a client improves
-the likelihood that a packet is accepted if it ensures that the first
-ClientHello message is small enough to stay within this limit.
+The first Initial packet from a client starts with its first cryptographic
</pre>
<p>Fixed</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications&amp;email_token=AFTOJKZR6PK5NLZNK7YW6E3QL2H3BA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGHTYCA#discussion_r329279384">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4D4KTHZTNH2CFWX3TQL2H3BANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK2UP6LCMKHT2A2TWR3QL2H3BA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGHTYCA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJKZR6PK5NLZNK7YW6E3QL2H3BA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGHTYCA#discussion_r329279384",
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJKZR6PK5NLZNK7YW6E3QL2H3BA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGHTYCA#discussion_r329279384",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8e98301bd5_6a173fdaef8cd96c30597--


From nobody Fri Sep 27 19: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 4C48C12006B for <quic-issues@ietfa.amsl.com>; Fri, 27 Sep 2019 19:27:37 -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 XILBS65Il8Sd for <quic-issues@ietfa.amsl.com>; Fri, 27 Sep 2019 19:27: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 8163512004D for <quic-issues@ietf.org>; Fri, 27 Sep 2019 19:27:35 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id D63C99602AC for <quic-issues@ietf.org>; Fri, 27 Sep 2019 19:27:34 -0700 (PDT)
Date: Fri, 27 Sep 2019 19:27:34 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4JAOA6QHTP7YDCKRF3TQC2NEVBNHHB26JPGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3045/review/294616800@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3045@github.com>
References: <quicwg/base-drafts/pull/3045@github.com>
Subject: Re: [quicwg/base-drafts] Allow ClientHello to span multiple QUIC packets (#3045)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d8ec516c723e_6b853f874facd968111532"; 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/roV5NtTddJlVVoCUMt82sDmWTPU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 28 Sep 2019 02:27:37 -0000

----==_mimepart_5d8ec516c723e_6b853f874facd968111532
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/3045#pullrequestreview-294616800
----==_mimepart_5d8ec516c723e_6b853f874facd968111532
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/3045?email_source=notifications&amp;email_token=AFTOJK3TGDOV7UBFD6QGUSTQL26JNA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGHX5YA#pullrequestreview-294616800">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3QRY4TSRFPG56TDY3QL26JNANCNFSM4IXMS4DA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK247ZJEJNHMGRXMRO3QL26JNA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGHX5YA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK3TGDOV7UBFD6QGUSTQL26JNA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGHX5YA#pullrequestreview-294616800",
"url": "https://github.com/quicwg/base-drafts/pull/3045?email_source=notifications\u0026email_token=AFTOJK3TGDOV7UBFD6QGUSTQL26JNA5CNFSM4IXMS4DKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCGHX5YA#pullrequestreview-294616800",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d8ec516c723e_6b853f874facd968111532--


From nobody Sat Sep 28 00: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 DA74F12003F for <quic-issues@ietfa.amsl.com>; Sat, 28 Sep 2019 00:11:57 -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 d4H48_KC_oDH for <quic-issues@ietfa.amsl.com>; Sat, 28 Sep 2019 00:11: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 ED681120018 for <quic-issues@ietf.org>; Sat, 28 Sep 2019 00:11:55 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 0C360C60689 for <quic-issues@ietf.org>; Sat, 28 Sep 2019 00:11:55 -0700 (PDT)
Date: Sat, 28 Sep 2019 00:11:54 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZFHPJEROC2TLURC6N3TQ5DVEVBNHHBWWQD7M@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/536161181@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_5d8f07baf1c2e_5dc23fd6baacd96c11907b"; 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/eRq8jHE3wPUBGUj3MJ4L5z4dSg4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?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, 28 Sep 2019 07:11:58 -0000

----==_mimepart_5d8f07baf1c2e_5dc23fd6baacd96c11907b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Reading @martinthomson's comment on https://github.com/quicwg/base-drafts/issues/3014#issuecomment-535016758, I think that the computation cost of mounting a DoS attack would change if we are to retain the original Initial secrets after Retry, as proposed in #2878.

In the current design, a server can use Retry packets to enforce clients to do equal amount of HKDF extractions, as the CIDs found in Retry packets update the Initial secrets. However, if we adopt #2878, the clients will given the freedom to choose the Initial key regardless of if Retry is used.

That might open new attack vectors.

For example, a DDoS attacker might send Initial packets that carry the same DCID (or a small set of DCIDs) from multiple addresses, receive Retry tokens, then send back Initial packets carrying the correct tokens and CIDs. The clients can use the precomputed Initial secrets when sending back the Initial packets, the client.

I am not sure how important this kind of attack is, but I think we need to make sure that the change of computation cost is 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/issues/2823#issuecomment-536161181
----==_mimepart_5d8f07baf1c2e_5dc23fd6baacd96c11907b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>Reading <a class=3D"user-mention" data-hovercard-type=3D"user" data-ho=
vercard-url=3D"/hovercards?user_id=3D67641" data-octo-click=3D"hovercard-=
link-click" data-octo-dimensions=3D"link_type:self" href=3D"https://githu=
b.com/martinthomson">@martinthomson</a>'s comment on <a class=3D"issue-li=
nk js-issue-link" data-error-text=3D"Failed to load issue title" data-id=3D=
"491716948" data-permission-text=3D"Issue title is private" data-url=3D"h=
ttps://github.com/quicwg/base-drafts/issues/3014" data-hovercard-type=3D"=
issue" data-hovercard-url=3D"/quicwg/base-drafts/issues/3014/hovercard?co=
mment_id=3D535016758&amp;comment_type=3Dissue_comment" href=3D"https://gi=
thub.com/quicwg/base-drafts/issues/3014#issuecomment-535016758">#3014 (co=
mment)</a>, I think that the computation cost of mounting a DoS attack wo=
uld change if we are to retain the original Initial secrets after Retry, =
as proposed in <a class=3D"issue-link js-issue-link" data-error-text=3D"F=
ailed to load issue title" data-id=3D"465552398" data-permission-text=3D"=
Issue title is private" data-url=3D"https://github.com/quicwg/base-drafts=
/issues/2878" data-hovercard-type=3D"pull_request" data-hovercard-url=3D"=
/quicwg/base-drafts/pull/2878/hovercard" href=3D"https://github.com/quicw=
g/base-drafts/pull/2878">#2878</a>.</p>
<p>In the current design, a server can use Retry packets to enforce clien=
ts to do equal amount of HKDF extractions, as the CIDs found in Retry pac=
kets update the Initial secrets. However, if we adopt <a class=3D"issue-l=
ink js-issue-link" data-error-text=3D"Failed to load issue title" data-id=
=3D"465552398" data-permission-text=3D"Issue title is private" data-url=3D=
"https://github.com/quicwg/base-drafts/issues/2878" data-hovercard-type=3D=
"pull_request" data-hovercard-url=3D"/quicwg/base-drafts/pull/2878/hoverc=
ard" href=3D"https://github.com/quicwg/base-drafts/pull/2878">#2878</a>, =
the clients will given the freedom to choose the Initial key regardless o=
f if Retry is used.</p>
<p>That might open new attack vectors.</p>
<p>For example, a DDoS attacker might send Initial packets that carry the=
 same DCID (or a small set of DCIDs) from multiple addresses, receive Ret=
ry tokens, then send back Initial packets carrying the correct tokens and=
 CIDs. The clients can use the precomputed Initial secrets when sending b=
ack the Initial packets, the client.</p>
<p>I am not sure how important this kind of attack is, but I think we nee=
d to make sure that the change of computation cost is OK.</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/2823?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK263XTL3RVMYTWQTJTQL37TVA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD72SXHI#issuecomment-536161181">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJK52Y4GCCMA4LZDDGC3QL37TVANCNFSM4HZ6U5CQ">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJKZCNC3WWUCQVI4BR2TQ=
L37TVA5CNFSM4HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD72SXHI.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/2823?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK263XTL3RVMYTWQTJTQL37TVA5CNFSM4=
HZ6U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD72SXH=
I#issuecomment-536161181",
"url": "https://github.com/quicwg/base-drafts/issues/2823?email_source=3D=
notifications\u0026email_token=3DAFTOJK263XTL3RVMYTWQTJTQL37TVA5CNFSM4HZ6=
U5C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD72SXHI#i=
ssuecomment-536161181",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>=

----==_mimepart_5d8f07baf1c2e_5dc23fd6baacd96c11907b--


From nobody Sun Sep 29 08: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 3DE171200DE for <quic-issues@ietfa.amsl.com>; Sun, 29 Sep 2019 08:47:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.499
X-Spam-Level: 
X-Spam-Status: No, score=-6.499 tagged_above=-999 required=5 tests=[BAYES_05=-0.5, HTML_MESSAGE=0.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 jTSNfs83OvwK for <quic-issues@ietfa.amsl.com>; Sun, 29 Sep 2019 08:47: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 1E75C1200D8 for <quic-issues@ietf.org>; Sun, 29 Sep 2019 08:47:33 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 3A564A0441 for <quic-issues@ietf.org>; Sun, 29 Sep 2019 08:47:32 -0700 (PDT)
Date: Sun, 29 Sep 2019 08:47:32 -0700
From: Peter Wu <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK36XY45P6X3YDMHSK53TYJKJEVBNHHB3JNFTE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3063/536314485@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3063@github.com>
References: <quicwg/base-drafts/issues/3063@github.com>
Subject: Re: [quicwg/base-drafts] http: Allow unquoted tokens in Alt-Svc quic parameter (#3063)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d90d2142ab25_238f3fc0948cd96481989f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: Lekensteyn
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SZ7v6ztHxt0ZiSzRIk7XkHfO5wQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 29 Sep 2019 15:47:35 -0000

----==_mimepart_5d90d2142ab25_238f3fc0948cd96481989f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think that the problem here is independent from whether structured headers should be applied or not.

- `Alt-Svc: h3=":443"; quic=1; quic=1abadaba` - Structured header issue: duplicate keys.
- `Alt-Svc: h3=":443"; quic=1,1abadaba` - Invalid grammar according to RFC 7838 since "token" does not include commas.
- `Alt-Svc: h3=":443"; quic="1,1abadaba"` - valid grammar according to both RFC 7838 and the QUIC description.

However, if only a single version has to be advertised, then the quoting is not necessary:
- `Alt-Svc: h3=":443"; quic="1"` - valid grammar according to both RFC 7838 and the QUIC description.
- `Alt-Svc: h3=":443"; quic=1` - valid grammar according to both RFC 7838, but QUIC currently forbids it.

In #3059 I proposed to fix the grammar (editorial issue). However, at the same time I could also make the grammar match RFC 7838 (the last bullet point above).

@DavidSchinazi I would mind not making the semantics more restrictive (e.g. restricting the values of the QUIC parameter to hexadecimal only), but restricting the parser grammar would impose extra restrictions on those who have to generate the header. It is conceivable that implementations will continue accepting the RFC 7838 grammar, and end up accepting `quic=1` while others would reject it and accept `quic="1"` only. By making sure that the grammars align, I hope that this becomes a non-issue.

So far @mikkelfj, @tatsuhiro-t and @bagder seems to support this proposal and @DavidSchinazi is not sure. Can this be considered consensus? :smiley:

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3063#issuecomment-536314485
----==_mimepart_5d90d2142ab25_238f3fc0948cd96481989f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>I think that the problem here is independent from whether structured h=
eaders should be applied or not.</p>=0D
<ul>=0D
<li><code>Alt-Svc: h3=3D":443"; quic=3D1; quic=3D1abadaba</code> - Struct=
ured header issue: duplicate keys.</li>=0D
<li><code>Alt-Svc: h3=3D":443"; quic=3D1,1abadaba</code> - Invalid gramma=
r according to RFC 7838 since "token" does not include commas.</li>=0D
<li><code>Alt-Svc: h3=3D":443"; quic=3D"1,1abadaba"</code> - valid gramma=
r according to both RFC 7838 and the QUIC description.</li>=0D
</ul>=0D
<p>However, if only a single version has to be advertised, then the quoti=
ng is not necessary:</p>=0D
<ul>=0D
<li><code>Alt-Svc: h3=3D":443"; quic=3D"1"</code> - valid grammar accordi=
ng to both RFC 7838 and the QUIC description.</li>=0D
<li><code>Alt-Svc: h3=3D":443"; quic=3D1</code> - valid grammar according=
 to both RFC 7838, but QUIC currently forbids it.</li>=0D
</ul>=0D
<p>In <a class=3D"issue-link js-issue-link" data-error-text=3D"Failed to =
load issue title" data-id=3D"497360831" data-permission-text=3D"Issue tit=
le is private" data-url=3D"https://github.com/quicwg/base-drafts/issues/3=
059" data-hovercard-type=3D"pull_request" data-hovercard-url=3D"/quicwg/b=
ase-drafts/pull/3059/hovercard" href=3D"https://github.com/quicwg/base-dr=
afts/pull/3059">#3059</a> I proposed to fix the grammar (editorial issue)=
. However, at the same time I could also make the grammar match RFC 7838 =
(the last bullet point above).</p>=0D
<p><a class=3D"user-mention" data-hovercard-type=3D"user" data-hovercard-=
url=3D"/hovercards?user_id=3D5599133" data-octo-click=3D"hovercard-link-c=
lick" data-octo-dimensions=3D"link_type:self" href=3D"https://github.com/=
DavidSchinazi">@DavidSchinazi</a> I would mind not making the semantics m=
ore restrictive (e.g. restricting the values of the QUIC parameter to hex=
adecimal only), but restricting the parser grammar would impose extra res=
trictions on those who have to generate the header. It is conceivable tha=
t implementations will continue accepting the RFC 7838 grammar, and end u=
p accepting <code>quic=3D1</code> while others would reject it and accept=
 <code>quic=3D"1"</code> only. By making sure that the grammars align, I =
hope that this becomes a non-issue.</p>=0D
<p>So far <a class=3D"user-mention" data-hovercard-type=3D"user" data-hov=
ercard-url=3D"/hovercards?user_id=3D193335" data-octo-click=3D"hovercard-=
link-click" data-octo-dimensions=3D"link_type:self" href=3D"https://githu=
b.com/mikkelfj">@mikkelfj</a>, <a class=3D"user-mention" data-hovercard-t=
ype=3D"user" data-hovercard-url=3D"/hovercards?user_id=3D404610" data-oct=
o-click=3D"hovercard-link-click" data-octo-dimensions=3D"link_type:self" =
href=3D"https://github.com/tatsuhiro-t">@tatsuhiro-t</a> and <a class=3D"=
user-mention" data-hovercard-type=3D"user" data-hovercard-url=3D"/hoverca=
rds?user_id=3D177011" data-octo-click=3D"hovercard-link-click" data-octo-=
dimensions=3D"link_type:self" href=3D"https://github.com/bagder">@bagder<=
/a> seems to support this proposal and <a class=3D"user-mention" data-hov=
ercard-type=3D"user" data-hovercard-url=3D"/hovercards?user_id=3D5599133"=
 data-octo-click=3D"hovercard-link-click" data-octo-dimensions=3D"link_ty=
pe:self" href=3D"https://github.com/DavidSchinazi">@DavidSchinazi</a> is =
not sure. Can this be considered consensus? <g-emoji class=3D"g-emoji" al=
ias=3D"smiley" fallback-src=3D"https://github.githubassets.com/images/ico=
ns/emoji/unicode/1f603.png">=F0=9F=98=83</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/3063?email_source=3Dnotifications&amp;email_token=3D=
AFTOJK4YSESYOR7XCCHEJN3QMDEZJA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VM=
VBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD73YE5I#issuecomment-536314485">view it on=
 GitHub</a>, or <a href=3D"https://github.com/notifications/unsubscribe-a=
uth/AFTOJK64BRJSS2GWEKVEZPTQMDEZJANCNFSM4IZWYYMQ">mute the thread</a>.<im=
g src=3D"https://github.com/notifications/beacon/AFTOJK6GOEJIYLI4IMVTYPLQ=
MDEZJA5CNFSM4IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOO=
RPWSZGOD73YE5I.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/3063?email_source=
=3Dnotifications\u0026email_token=3DAFTOJK4YSESYOR7XCCHEJN3QMDEZJA5CNFSM4=
IZWYYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD73YE5=
I#issuecomment-536314485",=0D
"url": "https://github.com/quicwg/base-drafts/issues/3063?email_source=3D=
notifications\u0026email_token=3DAFTOJK4YSESYOR7XCCHEJN3QMDEZJA5CNFSM4IZW=
YYM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD73YE5I#i=
ssuecomment-536314485",=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_5d90d2142ab25_238f3fc0948cd96481989f--


From nobody Sun Sep 29 08: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 952B31200F4 for <quic-issues@ietfa.amsl.com>; Sun, 29 Sep 2019 08:59: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, HTML_IMAGE_ONLY_24=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 9FDmTWuNlMGE for <quic-issues@ietfa.amsl.com>; Sun, 29 Sep 2019 08:59: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 115B41200F1 for <quic-issues@ietf.org>; Sun, 29 Sep 2019 08:59:11 -0700 (PDT)
Date: Sun, 29 Sep 2019 08:59:10 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569772750; bh=Ofo8pjruQUv1F5SLduJgjd2w2QBjDz/EaGSAIs6bZ/I=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=c/AofoihKB/hROoiuXRs5wGWqPZ847B8vl/a/b4FgM881tm2DKuDCdIJccHB8CSZW 7alCiBMTocXF/DKKVZC8yznUI1LTJ3+M+Kvpi79u+1+TmPBWQdbtQEYSpGWRSb3sbl tjsrxL+bcLKqiifsU/af6/MptCkcz27d6P1XXJsI=
From: Peter Wu <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK54ZZALK2TEWP7HTJV3TYKV5EVBNHHB3TDKFM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3071@github.com>
Subject: [quicwg/base-drafts] Mention unidirectional Stream Types 2 and 3 (QPACK) in -http (#3071)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d90d4ce2b68f_20873f9b020cd960679935"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: Lekensteyn
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HJsKVMUC9ZS-RwLlN41T98OKbtY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 29 Sep 2019 15:59:13 -0000

----==_mimepart_5d90d4ce2b68f_20873f9b020cd960679935
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The Stream Types registry (https://tools.ietf.org/html/draft-ietf-quic-http-23#section-11.6) currently lists two types only (0 - control, 1 - push).

While working on a dissector for the base HTTP/3 protocol, I ran across 2 and 3. It turns out these are defined in the QPACK document (https://tools.ietf.org/html/draft-ietf-quic-qpack-10#section-8.2) with 2 - QPACK Encoder Stream, 3 - QPACK Decoder Stream.

Since QPACK has already been referenced multiple times from the -http document, what about mentioning (or registering) the two codepoints in the -http document and reference to the -qpack document for the definition?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3071
----==_mimepart_5d90d4ce2b68f_20873f9b020cd960679935
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The Stream Types registry (<a href="https://tools.ietf.org/html/draft-ietf-quic-http-23#section-11.6" rel="nofollow">https://tools.ietf.org/html/draft-ietf-quic-http-23#section-11.6</a>) currently lists two types only (0 - control, 1 - push).</p>
<p>While working on a dissector for the base HTTP/3 protocol, I ran across 2 and 3. It turns out these are defined in the QPACK document (<a href="https://tools.ietf.org/html/draft-ietf-quic-qpack-10#section-8.2" rel="nofollow">https://tools.ietf.org/html/draft-ietf-quic-qpack-10#section-8.2</a>) with 2 - QPACK Encoder Stream, 3 - QPACK Decoder Stream.</p>
<p>Since QPACK has already been referenced multiple times from the -http document, what about mentioning (or registering) the two codepoints in the -http document and reference to the -qpack document for the definition?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3071?email_source=notifications&amp;email_token=AFTOJKYB4VQPZXSC6M4SZXTQMDGE5A5CNFSM4I3S7JI2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HOMNIVQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7VWW2TMUP7S6ZDM6DQMDGE5ANCNFSM4I3S7JIQ">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7UOIITVZIJYUVVG4LQMDGE5A5CNFSM4I3S7JI2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HOMNIVQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3071?email_source=notifications\u0026email_token=AFTOJKYB4VQPZXSC6M4SZXTQMDGE5A5CNFSM4I3S7JI2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HOMNIVQ",
"url": "https://github.com/quicwg/base-drafts/issues/3071?email_source=notifications\u0026email_token=AFTOJKYB4VQPZXSC6M4SZXTQMDGE5A5CNFSM4I3S7JI2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HOMNIVQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d90d4ce2b68f_20873f9b020cd960679935--


From nobody Sun Sep 29 17:17: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 AA6B41200A3 for <quic-issues@ietfa.amsl.com>; Sun, 29 Sep 2019 17:17: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 c2hLwWFE46fL for <quic-issues@ietfa.amsl.com>; Sun, 29 Sep 2019 17:17: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 CD73212006D for <quic-issues@ietf.org>; Sun, 29 Sep 2019 17:17:24 -0700 (PDT)
Date: Sun, 29 Sep 2019 17:17:23 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1569802643; bh=9Kn8uxL1iGS+R7/kKUrqgrcO7H1aYeP1INyJ6xJKLOk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FHkgFz2MhSs1MJlCcr/a2gmVXHN6GvU/XQu/P6aetWncXEBEXQBAI3GUOH0hpcZZ/ THf/n8fC2a8ItoVjbFzAYHi9BzZwT9Lp4TUFvlh58Lt+5C90NGJnLLLDI38Jl9oC8i SXlBVQiF9tB03clTHhrVqyYAuZQkbRPgDNb+AWnk=
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5ZRUJJOSJCXYPNX4F3T2FCHEVBNHHBOS4WPU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/2152/536356155@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2152@github.com>
References: <quicwg/base-drafts/issues/2152@github.com>
Subject: Re: [quicwg/base-drafts] Why does stateless reset have to be checked after MAC failure (#2152)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d914993e0283_3ff73f8e1a0cd96410887d"; 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/XKISgtgPR4zLkRwbhdKLElQUMNQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 30 Sep 2019 00:17:27 -0000

----==_mimepart_5d914993e0283_3ff73f8e1a0cd96410887d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I don't think that the text here resolves the issue. I agree that you need to have a constant time comparison, but I don't believe it needs to post-date the MAC check, because the attacker knows that there is an invalid MAC. I don't object to landing the PR, but it doesn't 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/2152#issuecomment-536356155
----==_mimepart_5d914993e0283_3ff73f8e1a0cd96410887d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I don't think that the text here resolves the issue. I agree that you need to have a constant time comparison, but I don't believe it needs to post-date the MAC check, because the attacker knows that there is an invalid MAC. I don't object to landing the PR, but it doesn't 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/2152?email_source=notifications&amp;email_token=AFTOJK4SYNOCL3IU7I5WRKLQMFARHA5CNFSM4GKJFOLKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD74CKOY#issuecomment-536356155">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7XLI2NQ3QHLSRPM7DQMFARHANCNFSM4GKJFOLA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK4DERB7FSJ6G2VEYBLQMFARHA5CNFSM4GKJFOLKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD74CKOY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/2152?email_source=notifications\u0026email_token=AFTOJK4SYNOCL3IU7I5WRKLQMFARHA5CNFSM4GKJFOLKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD74CKOY#issuecomment-536356155",
"url": "https://github.com/quicwg/base-drafts/issues/2152?email_source=notifications\u0026email_token=AFTOJK4SYNOCL3IU7I5WRKLQMFARHA5CNFSM4GKJFOLKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD74CKOY#issuecomment-536356155",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d914993e0283_3ff73f8e1a0cd96410887d--


From nobody Sun Sep 29 17:20: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 8CDE912006D for <quic-issues@ietfa.amsl.com>; Sun, 29 Sep 2019 17:20:06 -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 AA8XBjPGiocn for <quic-issues@ietfa.amsl.com>; Sun, 29 Sep 2019 17:20:05 -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 40F691200A3 for <quic-issues@ietf.org>; Sun, 29 Sep 2019 17:20:05 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id E181F12105E for <quic-issues@ietf.org>; Sun, 29 Sep 2019 17:20:04 -0700 (PDT)
Date: Sun, 29 Sep 2019 17:20:04 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3CWBQLXHXQJQMNRMV3T2FMJEVBNHHB3EM4KU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3053/536356446@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3053@github.com>
References: <quicwg/base-drafts/issues/3053@github.com>
Subject: Re: [quicwg/base-drafts] Padding requirement seems to be incorrect. (#3053)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d914a349a79c_2db43fe51eecd96410823c"; 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/0802Fx6HyQA3PzY78b_h-3DKWd0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 30 Sep 2019 00:20:07 -0000

----==_mimepart_5d914a349a79c_2db43fe51eecd96410823c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I do not believe that this is necessarily correct. The reason is that we have not yet nailed down Initial key discard and in at least one version, an Initial ACK would appear in the client's second flight, but that need not be padded.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3053#issuecomment-536356446
----==_mimepart_5d914a349a79c_2db43fe51eecd96410823c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I do not believe that this is necessarily correct. The reason is that we have not yet nailed down Initial key discard and in at least one version, an Initial ACK would appear in the client's second flight, but that need not be padded.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications&amp;email_token=AFTOJK2EAENMZOP7XT6L63DQMFA3JA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD74CMXQ#issuecomment-536356446">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6Q2SE52JXLADCHZKDQMFA3JANCNFSM4IYRI3TA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJKYZTXVLVGKRCKHHSLDQMFA3JA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD74CMXQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJK2EAENMZOP7XT6L63DQMFA3JA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD74CMXQ#issuecomment-536356446",
"url": "https://github.com/quicwg/base-drafts/issues/3053?email_source=notifications\u0026email_token=AFTOJK2EAENMZOP7XT6L63DQMFA3JA5CNFSM4IYRI3TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD74CMXQ#issuecomment-536356446",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d914a349a79c_2db43fe51eecd96410823c--


From nobody Mon Sep 30 10:59: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 8F7EC12002F for <quic-issues@ietfa.amsl.com>; Mon, 30 Sep 2019 10:59:34 -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 yWxqEL2TsPLA for <quic-issues@ietfa.amsl.com>; Mon, 30 Sep 2019 10:59: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 383C212001E for <quic-issues@ietf.org>; Mon, 30 Sep 2019 10:59:32 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id 0E6CE9605E2 for <quic-issues@ietf.org>; Mon, 30 Sep 2019 10:59:31 -0700 (PDT)
Date: Mon, 30 Sep 2019 10:59:30 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYUXKKB2CF5NWPDE7V3T6BRFEVBNHHB27HBVI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3046/536677973@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3046@github.com>
References: <quicwg/base-drafts/issues/3046@github.com>
Subject: Re: [quicwg/base-drafts] Handling of Retire Prior To field (#3046)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5d924282f312e_37b3fa0a46cd96c715e1"; 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/a4-NyOFdeXxj4FPgQNLyUvuSOe0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 30 Sep 2019 17:59:35 -0000

----==_mimepart_5d924282f312e_37b3fa0a46cd96c715e1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

IIRC, the base of the SHOULD was that we didn't have a specific timeout anyone felt comfortable enforcing in the absence of shared timers between peers.  We've had a general principle that requirements you can't tell whether the peer violated are probably SHOULDs instead of MUSTs.  As Nick says, the SHOULD is intended to refer to doing so promptly, not to doing so at all.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3046#issuecomment-536677973
----==_mimepart_5d924282f312e_37b3fa0a46cd96c715e1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>IIRC, the base of the SHOULD was that we didn't have a specific timeout anyone felt comfortable enforcing in the absence of shared timers between peers.  We've had a general principle that requirements you can't tell whether the peer violated are probably SHOULDs instead of MUSTs.  As Nick says, the SHOULD is intended to refer to doing so promptly, not to doing so 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/issues/3046?email_source=notifications&amp;email_token=AFTOJK65S2AAXSDORDY65T3QMI5AFA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD76Q4VI#issuecomment-536677973">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4O354QR7T75QKFABTQMI5AFANCNFSM4IXSLCQA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AFTOJK7JRQSMJT4RTAHSFV3QMI5AFA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD76Q4VI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJK65S2AAXSDORDY65T3QMI5AFA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD76Q4VI#issuecomment-536677973",
"url": "https://github.com/quicwg/base-drafts/issues/3046?email_source=notifications\u0026email_token=AFTOJK65S2AAXSDORDY65T3QMI5AFA5CNFSM4IXSLCQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD76Q4VI#issuecomment-536677973",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5d924282f312e_37b3fa0a46cd96c715e1--

