[quicwg/base-drafts] b61358: Exception for Retire Prior To

Martin Thomson <noreply@github.com> Sun, 17 May 2020 23:57 UTC

Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 30EDC3A08F3 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level:
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ucyEbhgla4yt for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:47 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C1BB63A091E for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:47 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 1F8D61C0BE2 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759867; bh=hRTGwGqCdH3UssYOwtOPkra3UgARu+emWIERI3R1/9o=; h=Date:From:To:Subject:From; b=ce1DGUw6OS49Y75lEcs0pCxR0nvpEZATjE4J7RNv45vx7S26Jngfo9KRWB8Ml+t3B ucp6gbQWFd8ezJsCYrIfiiKvMr/vVvRBjCiJIeUfeeSX7v7A5gjnQHudFlDag8BKgN vofEArB81I/AerARikXzh0Pecb0bbdltvjFOhmkk=
Date: Sun, 17 May 2020 16:57:47 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/13a75f-9b80e9@github.com>
Subject: [quicwg/base-drafts] b61358: Exception for Retire Prior To
Mime-Version: 1.0
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/0btWXUJHtAD9TO3iuv0Jo48UvDA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 17 May 2020 23:57:49 -0000

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

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

  Log Message:
  -----------
  Exception for Retire Prior To

The rules for the active connection ID limit were such that the brief
bump that NEW_CONNECTION_ID + Retire Prior To could add was not
permitted.  Strictly speaking, if you requested retirement, the
connection IDs that you requested be retired are still active until you
receive a RETIRE_CONNECTION_ID frame.  That means that you were
technically violating this MUST in the spec.  Adding an exception for
this case was the best way I could see to fix this.

The other was to change the definition of "active connection ID".  I
tried that and, while it was a smaller change, it made the definition
less crisp.  This approach seems best.


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

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

  Log Message:
  -----------
  Attempt at rewording the NEW_CONNECITON_ID/Retire Prior To validation rule


  Commit: 67dc30dd88c4ceb82fc12343f122e91c17d8b61f
      https://github.com/quicwg/base-drafts/commit/67dc30dd88c4ceb82fc12343f122e91c17d8b61f
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

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

  Log Message:
  -----------
  Attempt at making smaller sentences


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

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

  Log Message:
  -----------
  Merge pull request #3643 from quicwg/active-cid-limit-rpt

Exception for Retire Prior To


Compare: https://github.com/quicwg/base-drafts/compare/13a75fbf5076...9b80e966caf6