<?xml version='1.0' encoding='utf-8'?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.2.13 -->
<!DOCTYPE rfc SYSTEM "rfc2629-xhtml.ent">
<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc docmapping="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-quic-transport-26" category="std" obsoletes="" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 2.37.3 -->
  <front>
    <title abbrev="QUIC Transport Protocol">QUIC: A UDP-Based Multiplexed and Secure Transport</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-quic-transport-26"/>
    <author initials="J." surname="Iyengar" fullname="Jana Iyengar" role="editor">
      <organization>Fastly</organization>
      <address>
        <email>jri.ietf@gmail.com</email>
      </address>
    </author>
    <author initials="M." surname="Thomson" fullname="Martin Thomson" role="editor">
      <organization>Mozilla</organization>
      <address>
        <email>mt@lowentropy.net</email>
      </address>
    </author>
    <date year="2020" month="February" day="21"/>
    <area>Transport</area>
    <workgroup>QUIC</workgroup>
    <abstract>
      <t>This document defines the core of the QUIC transport protocol.  Accompanying
documents describe QUIC's loss detection and congestion control and the use of
TLS for key negotiation.</t>
    </abstract>
    <note>
      <name>Note to Readers</name>
      <t>Discussion of this draft takes place on the QUIC working group mailing list
(quic@ietf.org), which is archived at
&lt;https://mailarchive.ietf.org/arch/search/?email_list=quic&gt;.</t>
      <t>Working Group information can be found at &lt;https://github.com/quicwg&gt;; source
code and issues list for this draft can be found at
&lt;https://github.com/quicwg/base-drafts/labels/-transport&gt;.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>QUIC is a multiplexed and secure general-purpose transport protocol that
provides:</t>
      <ul spacing="normal">
        <li>Stream multiplexing</li>
        <li>Stream and connection-level flow control</li>
        <li>Low-latency connection establishment</li>
        <li>Connection migration and resilience to NAT rebinding</li>
        <li>Authenticated and encrypted header and payload</li>
      </ul>
      <t>QUIC uses UDP as a substrate to avoid requiring changes to legacy client
operating systems and middleboxes.  QUIC authenticates all of its headers and
encrypts most of the data it exchanges, including its signaling, to avoid
incurring a dependency on middleboxes.</t>
      <section anchor="document-structure" numbered="true" toc="default">
        <name>Document Structure</name>
        <t>This document describes the core QUIC protocol and is structured as follows:</t>
        <ul spacing="normal">
          <li>
            <t>Streams are the basic service abstraction that QUIC provides.
            </t>
            <ul spacing="normal">
              <li>
                <xref target="streams" format="default"/> describes core concepts related to streams,</li>
              <li>
                <xref target="stream-states" format="default"/> provides a reference model for stream states, and</li>
              <li>
                <xref target="flow-control" format="default"/> outlines the operation of flow control.</li>
            </ul>
          </li>
          <li>
            <t>Connections are the context in which QUIC endpoints communicate.
            </t>
            <ul spacing="normal">
              <li>
                <xref target="connections" format="default"/> describes core concepts related to connections,</li>
              <li>
                <xref target="version-negotiation" format="default"/> describes version negotiation,</li>
              <li>
                <xref target="handshake" format="default"/> details the process for establishing connections,</li>
              <li>
                <xref target="address-validation" format="default"/> specifies critical denial of service mitigation
mechanisms,</li>
              <li>
                <xref target="migration" format="default"/> describes how endpoints migrate a connection to a new
network path,</li>
              <li>
                <xref target="termination" format="default"/> lists the options for terminating an open connection, and</li>
              <li>
                <xref target="error-handling" format="default"/> provides general guidance for error handling.</li>
            </ul>
          </li>
          <li>
            <t>Packets and frames are the basic unit used by QUIC to communicate.
            </t>
            <ul spacing="normal">
              <li>
                <xref target="packets-frames" format="default"/> describes concepts related to packets and frames,</li>
              <li>
                <xref target="packetization" format="default"/> defines models for the transmission, retransmission, and
acknowledgement of data, and</li>
              <li>
                <xref target="packet-size" format="default"/> specifies rules for managing the size of packets.</li>
            </ul>
          </li>
          <li>
            <t>Finally, encoding details of QUIC protocol elements are described in:
            </t>
            <ul spacing="normal">
              <li>
                <xref target="versions" format="default"/> (Versions),</li>
              <li>
                <xref target="integer-encoding" format="default"/> (Integer Encoding),</li>
              <li>
                <xref target="packet-formats" format="default"/> (Packet Headers),</li>
              <li>
                <xref target="transport-parameter-encoding" format="default"/> (Transport Parameters),</li>
              <li>
                <xref target="frame-formats" format="default"/> (Frames), and</li>
              <li>
                <xref target="error-codes" format="default"/> (Errors).</li>
            </ul>
          </li>
        </ul>
        <t>Accompanying documents describe QUIC's loss detection and congestion control
<xref target="QUIC-RECOVERY" format="default"/>, and the use of TLS for key negotiation <xref target="QUIC-TLS" format="default"/>.</t>
        <t>This document defines QUIC version 1, which conforms to the protocol invariants
in <xref target="QUIC-INVARIANTS" format="default"/>.</t>
      </section>
      <section anchor="terms-and-definitions" numbered="true" toc="default">
        <name>Terms and Definitions</name>
        <t>The keywords "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in BCP 14 <xref target="RFC2119" format="default"/> <xref target="RFC8174" format="default"/>
when, and only when, they appear in all capitals, as shown here.</t>
        <t>Commonly used terms in the document are described below.</t>
        <dl newline="false" spacing="normal">
          <dt>QUIC:</dt>
          <dd>
  The transport protocol described by this document. QUIC is a name, not an
acronym.</dd>
          <dt>QUIC packet:</dt>
          <dd>
  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.</dd>
          <dt>Ack-eliciting Packet:</dt>
          <dd>
  A QUIC packet that contains frames other than ACK, PADDING, and
CONNECTION_CLOSE. These cause a recipient to send an acknowledgment (see
<xref target="sending-acknowledgements" format="default"/>).</dd>
          <dt>Out-of-order packet:</dt>
          <dd>
  A packet that does not increase the largest received packet number for its
packet number space (<xref target="packet-numbers" format="default"/>) by exactly one. A packet can arrive
out of order if it is delayed or if earlier packets are lost or delayed.</dd>
          <dt>Endpoint:</dt>
          <dd>
  An entity that can participate in a QUIC connection by generating,
receiving, and processing QUIC packets. There are only two types of endpoint
in QUIC: client and server.</dd>
          <dt>Client:</dt>
          <dd>
  The endpoint initiating a QUIC connection.</dd>
          <dt>Server:</dt>
          <dd>
  The endpoint accepting incoming QUIC connections.</dd>
          <dt>Address:</dt>
          <dd>
  When used without qualification, the tuple of IP version, IP address, UDP
protocol, and UDP port number that represents one end of a network path.</dd>
          <dt>Connection ID:</dt>
          <dd>
  An opaque identifier that is used to identify a QUIC connection at an
endpoint.  Each endpoint sets a value for its peer to include in packets sent
towards the endpoint.</dd>
          <dt>Stream:</dt>
          <dd>
  A unidirectional or bidirectional channel of ordered bytes within a QUIC
connection. A QUIC connection can carry multiple simultaneous streams.</dd>
          <dt>Application:</dt>
          <dd>
  An entity that uses QUIC to send and receive data.</dd>
        </dl>
      </section>
      <section anchor="notational-conventions" numbered="true" toc="default">
        <name>Notational Conventions</name>
        <t>Packet and frame diagrams in this document use the format described in Section
3.1 of <xref target="RFC2360" format="default"/>, with the following additional conventions:</t>
        <dl newline="false" spacing="normal">
          <dt>[x]:</dt>
          <dd>
  Indicates that x is optional</dd>
          <dt>x (A):</dt>
          <dd>
  Indicates that x is A bits long</dd>
          <dt>x (A/B/C) ...:</dt>
          <dd>
  Indicates that x is one of A, B, or C bits long</dd>
          <dt>x (i) ...:</dt>
          <dd>
  Indicates that x uses the variable-length encoding in <xref target="integer-encoding" format="default"/></dd>
          <dt>x (*) ...:</dt>
          <dd>
  Indicates that x is variable-length</dd>
        </dl>
      </section>
    </section>
    <section anchor="streams" numbered="true" toc="default">
      <name>Streams</name>
      <t>Streams in QUIC provide a lightweight, ordered byte-stream abstraction to an
application. Streams can be unidirectional or bidirectional.  An alternative
view of QUIC unidirectional streams is a "message" abstraction of practically
unlimited length.</t>
      <t>Streams can be created by sending data. Other processes associated with stream
management - ending, cancelling, and managing flow control - are all designed to
impose minimal overheads. For instance, a single STREAM frame (<xref target="frame-stream" format="default"/>)
can open, carry data for, and close a stream. Streams can also be long-lived and
can last the entire duration of a connection.</t>
      <t>Streams can be created by either endpoint, can concurrently send data
interleaved with other streams, and can be cancelled. QUIC does not provide any
means of ensuring ordering between bytes on different streams.</t>
      <t>QUIC allows for an arbitrary number of streams to operate concurrently and for
an arbitrary amount of data to be sent on any stream, subject to flow control
constraints (see <xref target="flow-control" format="default"/>) and stream limits.</t>
      <section anchor="stream-id" numbered="true" toc="default">
        <name>Stream Types and Identifiers</name>
        <t>Streams can be unidirectional or bidirectional.  Unidirectional streams carry
data in one direction: from the initiator of the stream to its peer.
Bidirectional streams allow for data to be sent in both directions.</t>
        <t>Streams are identified within a connection by a numeric value, referred to as
the stream ID.  A stream ID is a 62-bit integer (0 to 2^62-1) that is unique for
all streams on a connection.  Stream IDs are encoded as variable-length integers
(see <xref target="integer-encoding" format="default"/>).  A QUIC endpoint MUST NOT reuse a stream ID within a
connection.</t>
        <t>The least significant bit (0x1) of the stream ID identifies the initiator of the
stream.  Client-initiated streams have even-numbered stream IDs (with the bit
set to 0), and server-initiated streams have odd-numbered stream IDs (with the
bit set to 1).</t>
        <t>The second least significant bit (0x2) of the stream ID distinguishes between
bidirectional streams (with the bit set to 0) and unidirectional streams (with
the bit set to 1).</t>
        <t>The least significant two bits from a stream ID therefore identify a stream as
one of four types, as summarized in <xref target="stream-id-types" format="default"/>.</t>
        <table anchor="stream-id-types" align="center">
          <name>Stream ID Types</name>
          <thead>
            <tr>
              <th align="left">Bits</th>
              <th align="left">Stream Type</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0x0</td>
              <td align="left">Client-Initiated, Bidirectional</td>
            </tr>
            <tr>
              <td align="left">0x1</td>
              <td align="left">Server-Initiated, Bidirectional</td>
            </tr>
            <tr>
              <td align="left">0x2</td>
              <td align="left">Client-Initiated, Unidirectional</td>
            </tr>
            <tr>
              <td align="left">0x3</td>
              <td align="left">Server-Initiated, Unidirectional</td>
            </tr>
          </tbody>
        </table>
        <t>Within each type, streams are created with numerically increasing stream IDs.  A
stream ID that is used out of order results in all streams of that type with
lower-numbered stream IDs also being opened.</t>
        <t>The first bidirectional stream opened by the client has a stream ID of 0.</t>
      </section>
      <section anchor="sending-and-receiving-data" numbered="true" toc="default">
        <name>Sending and Receiving Data</name>
        <t>STREAM frames (<xref target="frame-stream" format="default"/>) encapsulate data sent by an application. An
endpoint uses the Stream ID and Offset fields in STREAM frames to place data in
order.</t>
        <t>Endpoints MUST be able to deliver stream data to an application as an ordered
byte-stream.  Delivering an ordered byte-stream requires that an endpoint buffer
any data that is received out of order, up to the advertised flow control limit.</t>
        <t>QUIC makes no specific allowances for delivery of stream data out of
order. However, implementations MAY choose to offer the ability to deliver data
out of order to a receiving application.</t>
        <t>An endpoint could receive data for a stream at the same stream offset multiple
times.  Data that has already been received can be discarded.  The data at a
given offset MUST NOT change if it is sent multiple times; an endpoint MAY treat
receipt of different data at the same offset within a stream as a connection
error of type PROTOCOL_VIOLATION.</t>
        <t>Streams are an ordered byte-stream abstraction with no other structure visible
to QUIC.  STREAM frame boundaries are not expected to be preserved when
data is transmitted, retransmitted after packet loss, or delivered to the
application at a receiver.</t>
        <t>An endpoint MUST NOT send data on any stream without ensuring that it is within
the flow control limits set by its peer.  Flow control is described in detail in
<xref target="flow-control" format="default"/>.</t>
      </section>
      <section anchor="stream-prioritization" numbered="true" toc="default">
        <name>Stream Prioritization</name>
        <t>Stream multiplexing can have a significant effect on application performance if
resources allocated to streams are correctly prioritized.</t>
        <t>QUIC does not provide a mechanism for exchanging prioritization information.
Instead, it relies on receiving priority information from the application that
uses QUIC.</t>
        <t>A QUIC implementation SHOULD provide ways in which an application can indicate
the relative priority of streams.  When deciding which streams to dedicate
resources to, the implementation SHOULD use the information provided by the
application.</t>
      </section>
      <section anchor="stream-operations" numbered="true" toc="default">
        <name>Required Operations on Streams</name>
        <t>There are certain operations which an application MUST be able to perform when
interacting with QUIC streams.  This document does not specify an API, but
any implementation of this version of QUIC MUST expose the ability to perform
the operations described in this section on a QUIC stream.</t>
        <t>On the sending part of a stream, application protocols need to be able to:</t>
        <ul spacing="normal">
          <li>write data, understanding when stream flow control credit
(<xref target="data-flow-control" format="default"/>) has successfully been reserved to send the written
data;</li>
          <li>end the stream (clean termination), resulting in a STREAM frame
(<xref target="frame-stream" format="default"/>) with the FIN bit set; and</li>
          <li>reset the stream (abrupt termination), resulting in a RESET_STREAM frame
(<xref target="frame-reset-stream" format="default"/>), if the stream was not already in a terminal state.</li>
        </ul>
        <t>On the receiving part of a stream, application protocols need to be able to:</t>
        <ul spacing="normal">
          <li>read data; and</li>
          <li>abort reading of the stream and request closure, possibly resulting in a
STOP_SENDING frame (<xref target="frame-stop-sending" format="default"/>).</li>
        </ul>
        <t>Applications also need to be informed of state changes on streams, including
when the peer has opened or reset a stream, when a peer aborts reading on a
stream, when new data is available, and when data can or cannot be written to
the stream due to flow control.</t>
      </section>
    </section>
    <section anchor="stream-states" numbered="true" toc="default">
      <name>Stream States</name>
      <t>This section describes streams in terms of their send or receive components.
Two state machines are described: one for the streams on which an endpoint
transmits data (<xref target="stream-send-states" format="default"/>), and another for streams on which an
endpoint receives data (<xref target="stream-recv-states" format="default"/>).</t>
      <t>Unidirectional streams use the applicable state machine directly.  Bidirectional
streams use both state machines.  For the most part, the use of these state
machines is the same whether the stream is unidirectional or bidirectional.  The
conditions for opening a stream are slightly more complex for a bidirectional
stream because the opening of either send or receive sides causes the stream
to open in both directions.</t>
      <t>An endpoint MUST open streams of the same type in increasing order of stream ID.</t>
      <dl newline="false" spacing="normal">
        <dt>Note:</dt>
        <dd>
  These states are largely informative.  This document uses stream states to
describe rules for when and how different types of frames can be sent and the
reactions that are expected when different types of frames are received.
Though these state machines are intended to be useful in implementing QUIC,
these states aren't intended to constrain implementations.  An implementation
can define a different state machine as long as its behavior is consistent
with an implementation that implements these states.</dd>
      </dl>
      <section anchor="stream-send-states" numbered="true" toc="default">
        <name>Sending Stream States</name>
        <t><xref target="fig-stream-send-states" format="default"/> shows the states for the part of a stream that sends
data to a peer.</t>
        <figure anchor="fig-stream-send-states">
          <name>States for Sending Parts of Streams</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
       o
       | Create Stream (Sending)
       | Peer Creates Bidirectional Stream
       v
   +-------+
   | Ready | Send RESET_STREAM
   |       |-----------------------.
   +-------+                       |
       |                           |
       | Send STREAM /             |
       |      STREAM_DATA_BLOCKED  |
       |                           |
       | Peer Creates              |
       |      Bidirectional Stream |
       v                           |
   +-------+                       |
   | Send  | Send RESET_STREAM     |
   |       |---------------------->|
   +-------+                       |
       |                           |
       | Send STREAM + FIN         |
       v                           v
   +-------+                   +-------+
   | Data  | Send RESET_STREAM | Reset |
   | Sent  |------------------>| Sent  |
   +-------+                   +-------+
       |                           |
       | Recv All ACKs             | Recv ACK
       v                           v
   +-------+                   +-------+
   | Data  |                   | Reset |
   | Recvd |                   | Recvd |
   +-------+                   +-------+
]]></artwork>
        </figure>
        <t>The sending part of stream that the endpoint initiates (types 0
and 2 for clients, 1 and 3 for servers) is opened by the application.  The
"Ready" state represents a newly created stream that is able to accept data from
the application.  Stream data might be buffered in this state in preparation for
sending.</t>
        <t>Sending the first STREAM or STREAM_DATA_BLOCKED frame causes a sending part of a
stream to enter the "Send" state.  An implementation might choose to defer
allocating a stream ID to a stream until it sends the first STREAM frame and
enters this state, which can allow for better stream prioritization.</t>
        <t>The sending part of a bidirectional stream initiated by a peer (type 0 for a
server, type 1 for a client) starts in the "Ready" state when the receiving part
is created.</t>
        <t>In the "Send" state, an endpoint transmits - and retransmits as necessary -
stream data in STREAM frames.  The endpoint respects the flow control limits set
by its peer, and continues to accept and process MAX_STREAM_DATA frames.  An
endpoint in the "Send" state generates STREAM_DATA_BLOCKED frames if it is
blocked from sending by stream or connection flow control limits
<xref target="data-flow-control" format="default"/>.</t>
        <t>After the application indicates that all stream data has been sent and a STREAM
frame containing the FIN bit is sent, the sending part of the stream enters the
"Data Sent" state.  From this state, the endpoint only retransmits stream data
as necessary.  The endpoint does not need to check flow control limits or send
STREAM_DATA_BLOCKED frames for a stream in this state.  MAX_STREAM_DATA frames
might be received until the peer receives the final stream offset. The endpoint
can safely ignore any MAX_STREAM_DATA frames it receives from its peer for a
stream in this state.</t>
        <t>Once all stream data has been successfully acknowledged, the sending part of the
stream enters the "Data Recvd" state, which is a terminal state.</t>
        <t>From any of the "Ready", "Send", or "Data Sent" states, an application can
signal that it wishes to abandon transmission of stream data. Alternatively, an
endpoint might receive a STOP_SENDING frame from its peer.  In either case, the
endpoint sends a RESET_STREAM frame, which causes the stream to enter the "Reset
Sent" state.</t>
        <t>An endpoint MAY send a RESET_STREAM as the first frame that mentions a stream;
this causes the sending part of that stream to open and then immediately
transition to the "Reset Sent" state.</t>
        <t>Once a packet containing a RESET_STREAM has been acknowledged, the sending part
of the stream enters the "Reset Recvd" state, which is a terminal state.</t>
      </section>
      <section anchor="stream-recv-states" numbered="true" toc="default">
        <name>Receiving Stream States</name>
        <t><xref target="fig-stream-recv-states" format="default"/> shows the states for the part of a stream that
receives data from a peer.  The states for a receiving part of a stream mirror
only some of the states of the sending part of the stream at the peer.  The
receiving part of a stream does not track states on the sending part that cannot
be observed, such as the "Ready" state.  Instead, the receiving part of a stream
tracks the delivery of data to the application, some of which cannot be observed
by the sender.</t>
        <figure anchor="fig-stream-recv-states">
          <name>States for Receiving Parts of Streams</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
       o
       | Recv STREAM / STREAM_DATA_BLOCKED / RESET_STREAM
       | Create Bidirectional Stream (Sending)
       | Recv MAX_STREAM_DATA / STOP_SENDING (Bidirectional)
       | Create Higher-Numbered Stream
       v
   +-------+
   | Recv  | Recv RESET_STREAM
   |       |-----------------------.
   +-------+                       |
       |                           |
       | Recv STREAM + FIN         |
       v                           |
   +-------+                       |
   | Size  | Recv RESET_STREAM     |
   | Known |---------------------->|
   +-------+                       |
       |                           |
       | Recv All Data             |
       v                           v
   +-------+ Recv RESET_STREAM +-------+
   | Data  |--- (optional) --->| Reset |
   | Recvd |  Recv All Data    | Recvd |
   +-------+<-- (optional) ----+-------+
       |                           |
       | App Read All Data         | App Read RST
       v                           v
   +-------+                   +-------+
   | Data  |                   | Reset |
   | Read  |                   | Read  |
   +-------+                   +-------+
]]></artwork>
        </figure>
        <t>The receiving part of a stream initiated by a peer (types 1 and 3 for a client,
or 0 and 2 for a server) is created when the first STREAM, STREAM_DATA_BLOCKED,
or RESET_STREAM is received for that stream.  For bidirectional streams
initiated by a peer, receipt of a MAX_STREAM_DATA or STOP_SENDING frame for the
sending part of the stream also creates the receiving part.  The initial state
for the receiving part of stream is "Recv".</t>
        <t>The receiving part of a stream enters the "Recv" state when the sending part of
a bidirectional stream initiated by the endpoint (type 0 for a client, type 1
for a server) enters the "Ready" state.</t>
        <t>An endpoint opens a bidirectional stream when a MAX_STREAM_DATA or STOP_SENDING
frame is received from the peer for that stream.  Receiving a MAX_STREAM_DATA
frame for an unopened stream indicates that the remote peer has opened the
stream and is providing flow control credit.  Receiving a STOP_SENDING frame for
an unopened stream indicates that the remote peer no longer wishes to receive
data on this stream.  Either frame might arrive before a STREAM or
STREAM_DATA_BLOCKED frame if packets are lost or reordered.</t>
        <t>Before a stream is created, all streams of the same type with lower-numbered
stream IDs MUST be created.  This ensures that the creation order for streams is
consistent on both endpoints.</t>
        <t>In the "Recv" state, the endpoint receives STREAM and STREAM_DATA_BLOCKED
frames.  Incoming data is buffered and can be reassembled into the correct order
for delivery to the application.  As data is consumed by the application and
buffer space becomes available, the endpoint sends MAX_STREAM_DATA frames to
allow the peer to send more data.</t>
        <t>When a STREAM frame with a FIN bit is received, the final size of the stream is
known (see <xref target="final-size" format="default"/>).  The receiving part of the stream then enters the
"Size Known" state.  In this state, the endpoint no longer needs to send
MAX_STREAM_DATA frames, it only receives any retransmissions of stream data.</t>
        <t>Once all data for the stream has been received, the receiving part enters the
"Data Recvd" state.  This might happen as a result of receiving the same STREAM
frame that causes the transition to "Size Known".  After all data has been
received, any STREAM or STREAM_DATA_BLOCKED frames for the stream can be
discarded.</t>
        <t>The "Data Recvd" state persists until stream data has been delivered to the
application.  Once stream data has been delivered, the stream enters the "Data
Read" state, which is a terminal state.</t>
        <t>Receiving a RESET_STREAM frame in the "Recv" or "Size Known" states causes the
stream to enter the "Reset Recvd" state.  This might cause the delivery of
stream data to the application to be interrupted.</t>
        <t>It is possible that all stream data is received when a RESET_STREAM is received
(that is, from the "Data Recvd" state).  Similarly, it is possible for remaining
stream data to arrive after receiving a RESET_STREAM frame (the "Reset Recvd"
state).  An implementation is free to manage this situation as it chooses.</t>
        <t>Sending RESET_STREAM means that an endpoint cannot guarantee delivery of stream
data; however there is no requirement that stream data not be delivered if a
RESET_STREAM is received.  An implementation MAY interrupt delivery of stream
data, discard any data that was not consumed, and signal the receipt of the
RESET_STREAM.  A RESET_STREAM signal might be suppressed or withheld if stream
data is completely received and is buffered to be read by the application.  If
the RESET_STREAM is suppressed, the receiving part of the stream remains in
"Data Recvd".</t>
        <t>Once the application receives the signal indicating that the stream
was reset, the receiving part of the stream transitions to the "Reset Read"
state, which is a terminal state.</t>
      </section>
      <section anchor="permitted-frame-types" numbered="true" toc="default">
        <name>Permitted Frame Types</name>
        <t>The sender of a stream sends just three frame types that affect the state of a
stream at either sender or receiver: STREAM (<xref target="frame-stream" format="default"/>),
STREAM_DATA_BLOCKED (<xref target="frame-stream-data-blocked" format="default"/>), and RESET_STREAM
(<xref target="frame-reset-stream" format="default"/>).</t>
        <t>A sender MUST NOT send any of these frames from a terminal state ("Data Recvd"
or "Reset Recvd").  A sender MUST NOT send STREAM or STREAM_DATA_BLOCKED after
sending a RESET_STREAM; that is, in the terminal states and in the "Reset Sent"
state.  A receiver could receive any of these three frames in any state, due to
the possibility of delayed delivery of packets carrying them.</t>
        <t>The receiver of a stream sends MAX_STREAM_DATA (<xref target="frame-max-stream-data" format="default"/>) and
STOP_SENDING frames (<xref target="frame-stop-sending" format="default"/>).</t>
        <t>The receiver only sends MAX_STREAM_DATA in the "Recv" state.  A receiver can
send STOP_SENDING in any state where it has not received a RESET_STREAM frame;
that is states other than "Reset Recvd" or "Reset Read".  However there is
little value in sending a STOP_SENDING frame in the "Data Recvd" state, since
all stream data has been received.  A sender could receive either of these two
frames in any state as a result of delayed delivery of packets.</t>
      </section>
      <section anchor="stream-bidi-states" numbered="true" toc="default">
        <name>Bidirectional Stream States</name>
        <t>A bidirectional stream is composed of sending and receiving parts.
Implementations may represent states of the bidirectional stream as composites
of sending and receiving stream states.  The simplest model presents the stream
as "open" when either sending or receiving parts are in a non-terminal state and
"closed" when both sending and receiving streams are in terminal states.</t>
        <t><xref target="stream-bidi-mapping" format="default"/> shows a more complex mapping of bidirectional stream
states that loosely correspond to the stream states in HTTP/2
<xref target="HTTP2" format="default"/>.  This shows that multiple states on sending or receiving
parts of streams are mapped to the same composite state.  Note that this is just
one possibility for such a mapping; this mapping requires that data is
acknowledged before the transition to a "closed" or "half-closed" state.</t>
        <table anchor="stream-bidi-mapping" align="center">
          <name>Possible Mapping of Stream States to HTTP/2</name>
          <thead>
            <tr>
              <th align="left">Sending Part</th>
              <th align="left">Receiving Part</th>
              <th align="left">Composite State</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">No Stream/Ready</td>
              <td align="left">No Stream/Recv *1</td>
              <td align="left">idle</td>
            </tr>
            <tr>
              <td align="left">Ready/Send/Data Sent</td>
              <td align="left">Recv/Size Known</td>
              <td align="left">open</td>
            </tr>
            <tr>
              <td align="left">Ready/Send/Data Sent</td>
              <td align="left">Data Recvd/Data Read</td>
              <td align="left">half-closed (remote)</td>
            </tr>
            <tr>
              <td align="left">Ready/Send/Data Sent</td>
              <td align="left">Reset Recvd/Reset Read</td>
              <td align="left">half-closed (remote)</td>
            </tr>
            <tr>
              <td align="left">Data Recvd</td>
              <td align="left">Recv/Size Known</td>
              <td align="left">half-closed (local)</td>
            </tr>
            <tr>
              <td align="left">Reset Sent/Reset Recvd</td>
              <td align="left">Recv/Size Known</td>
              <td align="left">half-closed (local)</td>
            </tr>
            <tr>
              <td align="left">Reset Sent/Reset Recvd</td>
              <td align="left">Data Recvd/Data Read</td>
              <td align="left">closed</td>
            </tr>
            <tr>
              <td align="left">Reset Sent/Reset Recvd</td>
              <td align="left">Reset Recvd/Reset Read</td>
              <td align="left">closed</td>
            </tr>
            <tr>
              <td align="left">Data Recvd</td>
              <td align="left">Data Recvd/Data Read</td>
              <td align="left">closed</td>
            </tr>
            <tr>
              <td align="left">Data Recvd</td>
              <td align="left">Reset Recvd/Reset Read</td>
              <td align="left">closed</td>
            </tr>
          </tbody>
        </table>
        <dl newline="false" spacing="normal">
          <dt>Note (*1):</dt>
          <dd>
  A stream is considered "idle" if it has not yet been created, or if the
receiving part of the stream is in the "Recv" state without yet having
received any frames.</dd>
        </dl>
      </section>
      <section anchor="solicited-state-transitions" numbered="true" toc="default">
        <name>Solicited State Transitions</name>
        <t>If an application is no longer interested in the data it is receiving on a
stream, it can abort reading the stream and specify an application error code.</t>
        <t>If the stream is in the "Recv" or "Size Known" states, the transport SHOULD
signal this by sending a STOP_SENDING frame to prompt closure of the stream in
the opposite direction.  This typically indicates that the receiving application
is no longer reading data it receives from the stream, but it is not a guarantee
that incoming data will be ignored.</t>
        <t>STREAM frames received after sending STOP_SENDING are still counted toward
connection and stream flow control, even though these frames can be discarded
upon receipt.</t>
        <t>A STOP_SENDING frame requests that the receiving endpoint send a RESET_STREAM
frame.  An endpoint that receives a STOP_SENDING frame MUST send a RESET_STREAM
frame if the stream is in the Ready or Send state.  If the stream is in the Data
Sent state and any outstanding data is declared lost, an endpoint SHOULD send a
RESET_STREAM frame in lieu of a retransmission.</t>
        <t>An endpoint SHOULD copy the error code from the STOP_SENDING frame to the
RESET_STREAM frame it sends, but MAY use any application error code.  The
endpoint that sends a STOP_SENDING frame MAY ignore the error code carried in
any RESET_STREAM frame it receives.</t>
        <t>If the STOP_SENDING frame is received on a stream that is already in the
"Data Sent" state, an endpoint that wishes to cease retransmission of
previously-sent STREAM frames on that stream MUST first send a RESET_STREAM
frame.</t>
        <t>STOP_SENDING SHOULD only be sent for a stream that has not been reset by the
peer. STOP_SENDING is most useful for streams in the "Recv" or "Size Known"
states.</t>
        <t>An endpoint is expected to send another STOP_SENDING frame if a packet
containing a previous STOP_SENDING is lost.  However, once either all stream
data or a RESET_STREAM frame has been received for the stream - that is, the
stream is in any state other than "Recv" or "Size Known" - sending a
STOP_SENDING frame is unnecessary.</t>
        <t>An endpoint that wishes to terminate both directions of a bidirectional stream
can terminate one direction by sending a RESET_STREAM, and it can encourage
prompt termination in the opposite direction by sending a STOP_SENDING frame.</t>
      </section>
    </section>
    <section anchor="flow-control" numbered="true" toc="default">
      <name>Flow Control</name>
      <t>It is necessary to limit the amount of data that a receiver could buffer, to
prevent a fast sender from overwhelming a slow receiver, or to prevent a
malicious sender from consuming a large amount of memory at a receiver.  To
enable a receiver to limit memory commitment to a connection and to apply back
pressure on the sender, streams are flow controlled both individually and as an
aggregate.  A QUIC receiver controls the maximum amount of data the sender can
send on a stream at any time, as described in <xref target="data-flow-control" format="default"/> and
<xref target="fc-credit" format="default"/></t>
      <t>Similarly, to limit concurrency within a connection, a QUIC endpoint controls
the maximum cumulative number of streams that its peer can initiate, as
described in <xref target="controlling-concurrency" format="default"/>.</t>
      <t>Data sent in CRYPTO frames is not flow controlled in the same way as stream
data.  QUIC relies on the cryptographic protocol implementation to avoid
excessive buffering of data; see <xref target="QUIC-TLS" format="default"/>.  The implementation SHOULD
provide an interface to QUIC to tell it about its buffering limits so that there
is not excessive buffering at multiple layers.</t>
      <section anchor="data-flow-control" numbered="true" toc="default">
        <name>Data Flow Control</name>
        <t>QUIC employs a credit-based flow-control scheme similar to that in HTTP/2
<xref target="HTTP2" format="default"/>, where a receiver advertises the number of bytes it is prepared to
receive on a given stream and for the entire connection.  This leads to two
levels of data flow control in QUIC:</t>
        <ul spacing="normal">
          <li>Stream flow control, which prevents a single stream from consuming the entire
receive buffer for a connection by limiting the amount of data that can be
sent on any stream.</li>
          <li>Connection flow control, which prevents senders from exceeding a receiver's
buffer capacity for the connection, by limiting the total bytes of stream data
sent in STREAM frames on all streams.</li>
        </ul>
        <t>A receiver sets initial credits for all streams by sending transport parameters
during the handshake (<xref target="transport-parameters" format="default"/>).  A receiver sends
MAX_STREAM_DATA (<xref target="frame-max-stream-data" format="default"/>) or MAX_DATA (<xref target="frame-max-data" format="default"/>)
frames to the sender to advertise additional credit.</t>
        <t>A receiver advertises credit for a stream by sending a MAX_STREAM_DATA frame
with the Stream ID field set appropriately.  A MAX_STREAM_DATA frame indicates
the maximum absolute byte offset of a stream.  A receiver could use the current
offset of data consumed to determine the flow control offset to be advertised.
A receiver MAY send MAX_STREAM_DATA frames in multiple packets in order to make
sure that the sender receives an update before running out of flow control
credit, even if one of the packets is lost.</t>
        <t>A receiver advertises credit for a connection by sending a MAX_DATA frame, which
indicates the maximum of the sum of the absolute byte offsets of all streams.  A
receiver maintains a cumulative sum of bytes received on all streams, which is
used to check for flow control violations. A receiver might use a sum of bytes
consumed on all streams to determine the maximum data limit to be advertised.</t>
        <t>A receiver can advertise a larger offset by sending MAX_STREAM_DATA or MAX_DATA
frames.  Once a receiver advertises an offset, it MAY advertise a smaller
offset, but this has no effect.</t>
        <t>A receiver MUST close the connection with a FLOW_CONTROL_ERROR error
(<xref target="error-handling" format="default"/>) if the sender violates the advertised connection or stream
data limits.</t>
        <t>A sender MUST ignore any MAX_STREAM_DATA or MAX_DATA frames that do not increase
flow control limits.</t>
        <t>If a sender runs out of flow control credit, it will be unable to send new data
and is considered blocked.  A sender SHOULD send a STREAM_DATA_BLOCKED or
DATA_BLOCKED frame to indicate it has data to write but is blocked by flow
control limits.  If a sender is blocked for a period longer than the idle
timeout (<xref target="idle-timeout" format="default"/>), the connection might be closed even when data is
available for transmission.  To keep the connection from closing, a sender that
is flow control limited SHOULD periodically send a STREAM_DATA_BLOCKED or
DATA_BLOCKED frame when it has no ack-eliciting packets in flight.</t>
      </section>
      <section anchor="fc-credit" numbered="true" toc="default">
        <name>Flow Credit Increments</name>
        <t>Implementations decide when and how much credit to advertise in MAX_STREAM_DATA
and MAX_DATA frames, but this section offers a few considerations.</t>
        <t>To avoid blocking a sender, a receiver can send a MAX_STREAM_DATA or MAX_DATA
frame multiple times within a round trip or send it early enough to allow for
recovery from loss of the frame.</t>
        <t>Control frames contribute to connection overhead. Therefore, frequently sending
MAX_STREAM_DATA and MAX_DATA frames with small changes is undesirable.  On the
other hand, if updates are less frequent, larger increments to limits are
necessary to avoid blocking a sender, requiring larger resource commitments at
the receiver.  There is a trade-off between resource commitment and overhead
when determining how large a limit is advertised.</t>
        <t>A receiver can use an autotuning mechanism to tune the frequency and amount of
advertised additional credit based on a round-trip time estimate and the rate at
which the receiving application consumes data, similar to common TCP
implementations.  As an optimization, an endpoint could send frames related to
flow control only when there are other frames to send or when a peer is blocked,
ensuring that flow control does not cause extra packets to be sent.</t>
        <t>A blocked sender is not required to send STREAM_DATA_BLOCKED or DATA_BLOCKED
frames. Therefore, a receiver MUST NOT wait for a STREAM_DATA_BLOCKED or
DATA_BLOCKED frame before sending a MAX_STREAM_DATA or MAX_DATA frame; doing so
could result in the sender being blocked for the rest of the connection. Even if
the sender sends these frames, waiting for them will result in the sender being
blocked for at least an entire round trip.</t>
        <t>When a sender receives credit after being blocked, it might be able to send a
large amount of data in response, resulting in short-term congestion; see
Section 6.9 in <xref target="QUIC-RECOVERY" format="default"/> for a discussion of how a sender can avoid this
congestion.</t>
      </section>
      <section anchor="stream-cancellation" numbered="true" toc="default">
        <name>Handling Stream Cancellation</name>
        <t>Endpoints need to eventually agree on the amount of flow control credit that has
been consumed, to avoid either exceeding flow control limits or deadlocking.</t>
        <t>On receipt of a RESET_STREAM frame, an endpoint will tear down state for the
matching stream and ignore further data arriving on that stream.  Without the
offset included in RESET_STREAM, the two endpoints could disagree on
the number of bytes that count towards connection flow control.</t>
        <t>To remedy this issue, a RESET_STREAM frame (<xref target="frame-reset-stream" format="default"/>) includes the
final size of data sent on the stream.  On receiving a RESET_STREAM frame, a
receiver definitively knows how many bytes were sent on that stream before the
RESET_STREAM frame, and the receiver MUST use the final size of the stream to
account for all bytes sent on the stream in its connection level flow
controller.</t>
        <t>RESET_STREAM terminates one direction of a stream abruptly.  For a bidirectional
stream, RESET_STREAM has no effect on data flow in the opposite direction.  Both
endpoints MUST maintain flow control state for the stream in the unterminated
direction until that direction enters a terminal state, or until one of the
endpoints sends CONNECTION_CLOSE.</t>
      </section>
      <section anchor="final-size" numbered="true" toc="default">
        <name>Stream Final Size</name>
        <t>The final size is the amount of flow control credit that is consumed by a
stream.  Assuming that every contiguous byte on the stream was sent once, the
final size is the number of bytes sent.  More generally, this is one higher
than the offset of the byte with the largest offset sent on the stream, or zero
if no bytes were sent.</t>
        <t>For a stream that is reset, the final size is carried explicitly in a
RESET_STREAM frame.  Otherwise, the final size is the offset plus the length of
a STREAM frame marked with a FIN flag, or 0 in the case of incoming
unidirectional streams.</t>
        <t>An endpoint will know the final size for a stream when the receiving part of the
stream enters the "Size Known" or "Reset Recvd" state (<xref target="stream-states" format="default"/>).</t>
        <t>An endpoint MUST NOT send data on a stream at or beyond the final size.</t>
        <t>Once a final size for a stream is known, it cannot change.  If a RESET_STREAM or
STREAM frame is received indicating a change in the final size for the stream,
an endpoint SHOULD respond with a FINAL_SIZE_ERROR error (see
<xref target="error-handling" format="default"/>).  A receiver SHOULD treat receipt of data at or beyond the
final size as a FINAL_SIZE_ERROR error, even after a stream is closed.
Generating these errors is not mandatory, but only because requiring that an
endpoint generate these errors also means that the endpoint needs to maintain
the final size state for closed streams, which could mean a significant state
commitment.</t>
      </section>
      <section anchor="controlling-concurrency" numbered="true" toc="default">
        <name>Controlling Concurrency</name>
        <t>An endpoint limits the cumulative number of incoming streams a peer can open.
Only streams with a stream ID less than (max_stream * 4 +
initial_stream_id_for_type) can be opened (see <xref target="long-packet-types" format="default"/>).  Initial
limits are set in the transport parameters (see
<xref target="transport-parameter-definitions" format="default"/>) and subsequently limits are advertised
using MAX_STREAMS frames (<xref target="frame-max-streams" format="default"/>). Separate limits apply to
unidirectional and bidirectional streams.</t>
        <t>If a max_streams transport parameter or MAX_STREAMS frame is received with a
value greater than 2^60, this would allow a maximum stream ID that cannot be
expressed as a variable-length integer (see <xref target="integer-encoding" format="default"/>).
If either is received, the connection MUST be closed immediately with a
connection error of type STREAM_LIMIT_ERROR (see <xref target="immediate-close" format="default"/>).</t>
        <t>Endpoints MUST NOT exceed the limit set by their peer.  An endpoint that
receives a frame with a stream ID exceeding the limit it has sent MUST treat
this as a connection error of type STREAM_LIMIT_ERROR (<xref target="error-handling" format="default"/>).</t>
        <t>Once a receiver advertises a stream limit using the MAX_STREAMS frame,
advertising a smaller limit has no effect.  A receiver MUST ignore any
MAX_STREAMS frame that does not increase the stream limit.</t>
        <t>As with stream and connection flow control, this document leaves when and how
many streams to advertise to a peer via MAX_STREAMS to implementations.
Implementations might choose to increase limits as streams close to keep the
number of streams available to peers roughly consistent.</t>
        <t>An endpoint that is unable to open a new stream due to the peer's limits SHOULD
send a STREAMS_BLOCKED frame (<xref target="frame-streams-blocked" format="default"/>).  This signal is
considered useful for debugging. An endpoint MUST NOT wait to receive this
signal before advertising additional credit, since doing so will mean that the
peer will be blocked for at least an entire round trip, and potentially for
longer if the peer chooses to not send STREAMS_BLOCKED frames.</t>
      </section>
    </section>
    <section anchor="connections" numbered="true" toc="default">
      <name>Connections</name>
      <t>QUIC's connection establishment combines version negotiation with the
cryptographic and transport handshakes to reduce connection establishment
latency, as described in <xref target="handshake" format="default"/>.  Once established, a connection
may migrate to a different IP or port at either endpoint as
described in <xref target="migration" format="default"/>.  Finally, a connection may be terminated by either
endpoint, as described in <xref target="termination" format="default"/>.</t>
      <section anchor="connection-id" numbered="true" toc="default">
        <name>Connection ID</name>
        <t>Each connection possesses a set of connection identifiers, or connection IDs,
each of which can identify the connection.  Connection IDs are independently
selected by endpoints; each endpoint selects the connection IDs that its peer
uses.</t>
        <t>The primary function of a connection ID is to ensure that changes in addressing
at lower protocol layers (UDP, IP) don't cause packets for a QUIC
connection to be delivered to the wrong endpoint.  Each endpoint selects
connection IDs using an implementation-specific (and perhaps
deployment-specific) method which will allow packets with that connection ID to
be routed back to the endpoint and identified by the endpoint upon receipt.</t>
        <t>Connection IDs MUST NOT contain any information that can be used by an external
observer (that is, one that does not cooperate with the issuer) to correlate
them with other connection IDs for the same connection.  As a trivial example,
this means the same connection ID MUST NOT be issued more than once on the same
connection.</t>
        <t>Packets with long headers include Source Connection ID and Destination
Connection ID fields.  These fields are used to set the connection IDs for new
connections; see <xref target="negotiating-connection-ids" format="default"/> for details.</t>
        <t>Packets with short headers (<xref target="short-header" format="default"/>) only include the Destination
Connection ID and omit the explicit length.  The length of the Destination
Connection ID field is expected to be known to endpoints.  Endpoints using a
load balancer that routes based on connection ID could agree with the load
balancer on a fixed length for connection IDs, or agree on an encoding scheme.
A fixed portion could encode an explicit length, which allows the entire
connection ID to vary in length and still be used by the load balancer.</t>
        <t>A Version Negotiation (<xref target="packet-version" format="default"/>) packet echoes the connection IDs
selected by the client, both to ensure correct routing toward the client and to
allow the client to validate that the packet is in response to an Initial
packet.</t>
        <t>A zero-length connection ID can be used when a connection ID is not needed to
route to the correct endpoint. However, multiplexing connections on the same
local IP address and port while using zero-length connection IDs will cause
failures in the presence of peer connection migration, NAT rebinding, and client
port reuse; and therefore MUST NOT be done unless an endpoint is certain that
those protocol features are not in use.</t>
        <t>When an endpoint uses a non-zero-length connection ID, it needs to ensure that
the peer has a supply of connection IDs from which to choose for packets sent to
the endpoint.  These connection IDs are supplied by the endpoint using the
NEW_CONNECTION_ID frame (<xref target="frame-new-connection-id" format="default"/>).</t>
        <section anchor="issue-cid" numbered="true" toc="default">
          <name>Issuing Connection IDs</name>
          <t>Each Connection ID has an associated sequence number to assist in deduplicating
messages.  The initial connection ID issued by an endpoint is sent in the Source
Connection ID field of the long packet header (<xref target="long-header" format="default"/>) during the
handshake.  The sequence number of the initial connection ID is 0.  If the
preferred_address transport parameter is sent, the sequence number of the
supplied connection ID is 1.</t>
          <t>Additional connection IDs are communicated to the peer using NEW_CONNECTION_ID
frames (<xref target="frame-new-connection-id" format="default"/>).  The sequence number on each newly-issued
connection ID MUST increase by 1.  The connection ID randomly selected by the
client in the Initial packet and any connection ID provided by a Retry packet
are not assigned sequence numbers unless a server opts to retain them as its
initial connection ID.</t>
          <t>When an endpoint issues a connection ID, it MUST accept packets that carry this
connection ID for the duration of the connection or until its peer invalidates
the connection ID via a RETIRE_CONNECTION_ID frame
(<xref target="frame-retire-connection-id" format="default"/>).  Connection IDs that are issued and not
retired are considered active; any active connection ID is valid for use at any
time, in any packet type.  This includes the connection ID issued by the server
via the preferred_address transport parameter.</t>
          <t>An endpoint SHOULD ensure that its peer has a sufficient number of available and
unused connection IDs.  Endpoints store received connection IDs for future use
and advertise the number of connection IDs they are willing to store with the
active_connection_id_limit transport parameter.  An endpoint MUST NOT provide
more connection IDs than the peer's limit.  An endpoint that receives more
connection IDs than its advertised active_connection_id_limit MUST close the
connection with an error of type CONNECTION_ID_LIMIT_ERROR.</t>
          <t>An endpoint SHOULD supply a new connection ID when the peer retires a connection
ID. If an endpoint provided fewer connection IDs than the peer's
active_connection_id_limit, it MAY supply a new connection ID when it receives
a packet with a previously unused connection ID.  An endpoint MAY limit the
frequency or the total number of connection IDs issued for each connection to
avoid the risk of running out of connection IDs; see <xref target="reset-token" format="default"/>.</t>
          <t>An endpoint that initiates migration and requires non-zero-length connection IDs
SHOULD ensure that the pool of connection IDs available to its peer allows the
peer to use a new connection ID on migration, as the peer will close the
connection if the pool is exhausted.</t>
        </section>
        <section anchor="retiring-cids" numbered="true" toc="default">
          <name>Consuming and Retiring Connection IDs</name>
          <t>An endpoint can change the connection ID it uses for a peer to another available
one at any time during the connection.  An endpoint consumes connection IDs in
response to a migrating peer; see <xref target="migration-linkability" format="default"/> for more.</t>
          <t>An endpoint maintains a set of connection IDs received from its peer, any of
which it can use when sending packets.  When the endpoint wishes to remove a
connection ID from use, it sends a RETIRE_CONNECTION_ID frame to its peer.
Sending a RETIRE_CONNECTION_ID frame indicates that the connection ID will not
be used again and requests that the peer replace it with a new connection ID
using a NEW_CONNECTION_ID frame.</t>
          <t>As discussed in <xref target="migration-linkability" format="default"/>, each connection ID MUST be used on
packets sent from only one local address.  An endpoint that migrates away from a
local address SHOULD retire all connection IDs used on that address once it no
longer plans to use that address.</t>
          <t>An endpoint can cause its peer to retire connection IDs by sending a
NEW_CONNECTION_ID frame with an increased Retire Prior To field.  Upon receipt,
the peer MUST first retire the corresponding connection IDs using
RETIRE_CONNECTION_ID frames and then add the newly provided connection ID to the
set of active connection IDs.  Failure to retire the connection IDs within
approximately one PTO 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.</t>
          <t>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.  Until
then, the endpoint SHOULD be prepared to receive packets that contain the
connection ID that it has requested be retired.  Subsequent incoming packets
using that connection ID could elicit a response with the corresponding
stateless reset token.</t>
        </section>
      </section>
      <section anchor="packet-handling" numbered="true" toc="default">
        <name>Matching Packets to Connections</name>
        <t>Incoming packets are classified on receipt.  Packets can either be associated
with an existing connection, or - for servers - potentially create a new
connection.</t>
        <t>Endpoints try to associate a packet with an existing connection. If the packet
has a non-zero-length Destination Connection ID corresponding to an existing
connection, QUIC processes that packet accordingly. Note that more than one
connection ID can be associated with a connection; see <xref target="connection-id" format="default"/>.</t>
        <t>If the Destination Connection ID is zero length and the addressing information
in the packet matches the addressing information the endpoint uses to identify a
connection with a zero-length connection ID, QUIC processes the packet as part
of that connection.  An endpoint can use just destination IP and port or both
source and destination addresses for identification, though this makes
connections fragile as described in <xref target="connection-id" format="default"/>.</t>
        <t>Endpoints can send a Stateless Reset (<xref target="stateless-reset" format="default"/>) for any packets that
cannot be attributed to an existing connection. A stateless reset allows a peer
to more quickly identify when a connection becomes unusable.</t>
        <t>Packets that are matched to an existing connection are discarded if the packets
are inconsistent with the state of that connection.  For example, packets are
discarded if they indicate a different protocol version than that of the
connection, or if the removal of packet protection is unsuccessful once the
expected keys are available.</t>
        <t>Invalid packets without packet protection, such as Initial, Retry, or Version
Negotiation, MAY be discarded.  An endpoint MUST generate a connection error if
it commits changes to state before discovering an error.</t>
        <section anchor="client-pkt-handling" numbered="true" toc="default">
          <name>Client Packet Handling</name>
          <t>Valid packets sent to clients always include a Destination Connection ID that
matches a value the client selects.  Clients that choose to receive
zero-length connection IDs can use the local address and port to identify a
connection.  Packets that don't match an existing connection are discarded.</t>
          <t>Due to packet reordering or loss, a client might receive packets for a
connection that are encrypted with a key it has not yet computed. The client MAY
drop these packets, or MAY buffer them in anticipation of later packets that
allow it to compute the key.</t>
          <t>If a client receives a packet that has an unsupported version, it MUST discard
that packet.</t>
        </section>
        <section anchor="server-pkt-handling" numbered="true" toc="default">
          <name>Server Packet Handling</name>
          <t>If a server receives a packet that has an unsupported version, but the packet is
sufficiently large to initiate a new connection for any version supported by the
server, it SHOULD send a Version Negotiation packet as described in
<xref target="send-vn" format="default"/>. Servers MAY rate control these packets to avoid storms of Version
Negotiation packets.  Otherwise, servers MUST drop packets that specify
unsupported versions.</t>
          <t>The first packet for an unsupported version can use different semantics and
encodings for any version-specific field.  In particular, different packet
protection keys might be used for different versions.  Servers that do not
support a particular version are unlikely to be able to decrypt the payload of
the packet.  Servers SHOULD NOT attempt to decode or decrypt a packet from an
unknown version, but instead send a Version Negotiation packet, provided that
the packet is sufficiently long.</t>
          <t>Packets with a supported version, or no version field, are matched to a
connection using the connection ID or - for packets with zero-length connection
IDs - the local address and port.  If the packet doesn't match an existing
connection, the server continues below.</t>
          <t>If the packet is an Initial packet fully conforming with the specification, the
server proceeds with the handshake (<xref target="handshake" format="default"/>). This commits the server to
the version that the client selected.</t>
          <t>If a server isn't currently accepting any new connections, it SHOULD send an
Initial packet containing a CONNECTION_CLOSE frame with error code
SERVER_BUSY.</t>
          <t>If the packet is a 0-RTT packet, the server MAY buffer a limited number of these
packets in anticipation of a late-arriving Initial packet. Clients are not able
to send Handshake packets prior to receiving a server response, so servers
SHOULD ignore any such packets.</t>
          <t>Servers MUST drop incoming packets under all other circumstances.</t>
        </section>
      </section>
      <section anchor="connection-lifecycle" numbered="true" toc="default">
        <name>Life of a QUIC Connection</name>
        <t>A QUIC connection is a stateful interaction between a client and server, the
primary purpose of which is to support the exchange of data by an application
protocol.  Streams (<xref target="streams" format="default"/>) are the primary means by which an application
protocol exchanges information.</t>
        <t>Each connection starts with a handshake phase, during which client and server
establish a shared secret using the cryptographic handshake protocol
<xref target="QUIC-TLS" format="default"/> and negotiate the application protocol.  The handshake
(<xref target="handshake" format="default"/>) confirms that both endpoints are willing to communicate
(<xref target="validate-handshake" format="default"/>) and establishes parameters for the connection
(<xref target="transport-parameters" format="default"/>).</t>
        <t>An application protocol can also operate in a limited fashion during the
handshake phase.  0-RTT allows application messages to be sent by a client
before receiving any messages from the server.  However, 0-RTT lacks certain key
security guarantees. In particular, there is no protection against replay
attacks in 0-RTT; see <xref target="QUIC-TLS" format="default"/>.  Separately, a server can also send
application data to a client before it receives the final cryptographic
handshake messages that allow it to confirm the identity and liveness of the
client.  These capabilities allow an application protocol to offer the option to
trade some security guarantees for reduced latency.</t>
        <t>The use of connection IDs (<xref target="connection-id" format="default"/>) allows connections to migrate to a
new network path, both as a direct choice of an endpoint and when forced by a
change in a middlebox.  <xref target="migration" format="default"/> describes mitigations for the security and
privacy issues associated with migration.</t>
        <t>For connections that are no longer needed or desired, there are several ways for
a client and server to terminate a connection (<xref target="termination" format="default"/>).</t>
      </section>
      <section anchor="required-operations-on-connections" numbered="true" toc="default">
        <name>Required Operations on Connections</name>
        <t>There are certain operations which an application MUST be able to perform when
interacting with the QUIC transport.  This document does not specify an API, but
any implementation of this version of QUIC MUST expose the ability to perform
the operations described in this section on a QUIC connection.</t>
        <t>When implementing the client role, applications need to be able to:</t>
        <ul spacing="normal">
          <li>open a connection, which begins the exchange described in <xref target="handshake" format="default"/>;</li>
          <li>enable 0-RTT when available; and</li>
          <li>be informed when 0-RTT has been accepted or rejected by a server.</li>
        </ul>
        <t>When implementing the server role, applications need to be able to:</t>
        <ul spacing="normal">
          <li>listen for incoming connections, which prepares for the exchange described in
<xref target="handshake" format="default"/>;</li>
          <li>if Early Data is supported, embed application-controlled data in the TLS
resumption ticket sent to the client; and</li>
          <li>if Early Data is supported, retrieve application-controlled data from the
client's resumption ticket and enable rejecting Early Data based on that
information.</li>
        </ul>
        <t>In either role, applications need to be able to:</t>
        <ul spacing="normal">
          <li>configure minimum values for the initial number of permitted streams of each
type, as communicated in the transport parameters (<xref target="transport-parameters" format="default"/>);</li>
          <li>control resource allocation of various types, including flow control and the
number of permitted streams of each type;</li>
          <li>identify whether the handshake has completed successfully or is still ongoing</li>
          <li>keep a connection from silently closing, either by generating PING frames
(<xref target="frame-ping" format="default"/>) or by requesting that the transport send additional frames
before the idle timeout expires (<xref target="idle-timeout" format="default"/>); and</li>
          <li>immediately close (<xref target="immediate-close" format="default"/>) the connection.</li>
        </ul>
      </section>
    </section>
    <section anchor="version-negotiation" numbered="true" toc="default">
      <name>Version Negotiation</name>
      <t>Version negotiation ensures that client and server agree to a QUIC version
that is mutually supported. A server sends a Version Negotiation packet in
response to each packet that might initiate a new connection; see
<xref target="packet-handling" format="default"/> for details.</t>
      <t>The size of the first packet sent by a client will determine whether a server
sends a Version Negotiation packet. Clients that support multiple QUIC versions
SHOULD pad the first packet they send to the largest of the minimum packet sizes
across all versions they support. This ensures that the server responds if there
is a mutually supported version.</t>
      <section anchor="send-vn" numbered="true" toc="default">
        <name>Sending Version Negotiation Packets</name>
        <t>If the version selected by the client is not acceptable to the server, the
server responds with a Version Negotiation packet (see <xref target="packet-version" format="default"/>).
This includes a list of versions that the server will accept.  An endpoint MUST
NOT send a Version Negotiation packet in response to receiving a Version
Negotiation packet.</t>
        <t>This system allows a server to process packets with unsupported versions without
retaining state.  Though either the Initial packet or the Version Negotiation
packet that is sent in response could be lost, the client will send new packets
until it successfully receives a response or it abandons the connection attempt.
As a result, the client discards all state for the connection and does not send
any more packets on the connection.</t>
        <t>A server MAY limit the number of Version Negotiation packets it sends.  For
instance, a server that is able to recognize packets as 0-RTT might choose not
to send Version Negotiation packets in response to 0-RTT packets with the
expectation that it will eventually receive an Initial packet.</t>
      </section>
      <section anchor="handle-vn" numbered="true" toc="default">
        <name>Handling Version Negotiation Packets</name>
        <t>When a client receives a Version Negotiation packet, it MUST abandon the
current connection attempt.  Version Negotiation packets are designed to allow
future versions of QUIC to negotiate the version in use between endpoints.
Future versions of QUIC might change how implementations that support multiple
versions of QUIC react to Version Negotiation packets when attempting to
establish a connection using this version.  How to perform version negotiation
is left as future work defined by future versions of QUIC.  In particular,
that future work will need to ensure robustness against version downgrade
attacks; see <xref target="version-downgrade" format="default"/>.</t>
        <section anchor="version-negotiation-between-draft-versions" numbered="true" toc="default">
          <name>Version Negotiation Between Draft Versions</name>
          <t>[[RFC editor: please remove this section before publication.]]</t>
          <t>When a draft implementation receives a Version Negotiation packet, it MAY use
it to attempt a new connection with one of the versions listed in the packet,
instead of abandoning the current connection attempt; see <xref target="handle-vn" format="default"/>.</t>
          <t>The client MUST check that the Destination and Source Connection ID fields
match the Source and Destination Connection ID fields in a packet that the
client sent.  If this check fails, the packet MUST be discarded.</t>
          <t>Once the Version Negotiation packet is determined to be valid, the client then
selects an acceptable protocol version from the list provided by the server.
The client then attempts to create a new connection using that version. The new
connection MUST use a new random Destination Connection ID different from the
one it had previously sent.</t>
          <t>Note that this mechanism does not protect against downgrade attacks and
MUST NOT be used outside of draft implementations.</t>
        </section>
      </section>
      <section anchor="using-reserved-versions" numbered="true" toc="default">
        <name>Using Reserved Versions</name>
        <t>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 <xref target="versions" format="default"/>) when generating a Version Negotiation packet.</t>
        <t>The design of version negotiation permits a server to avoid maintaining state
for packets that it rejects in this fashion.</t>
        <t>A client MAY send a packet using a version that is reserved for forcing version
negotiation.  This can be used to solicit a list of supported versions from a
server.</t>
      </section>
    </section>
    <section anchor="handshake" numbered="true" toc="default">
      <name>Cryptographic and Transport Handshake</name>
      <t>QUIC relies on a combined cryptographic and transport handshake to minimize
connection establishment latency.  QUIC uses the CRYPTO frame <xref target="frame-crypto" format="default"/>
to transmit the cryptographic handshake.  Version 0x00000001 of QUIC uses TLS as
described in <xref target="QUIC-TLS" format="default"/>; a different QUIC version number could indicate that a
different cryptographic handshake protocol is in use.</t>
      <t>QUIC provides reliable, ordered delivery of the cryptographic handshake
data. QUIC packet protection is used to encrypt as much of the handshake
protocol as possible. The cryptographic handshake MUST provide the following
properties:</t>
      <ul spacing="normal">
        <li>
          <t>authenticated key exchange, where  </t>
          <ul spacing="normal">
            <li>a server is always authenticated,</li>
            <li>a client is optionally authenticated,</li>
            <li>every connection produces distinct and unrelated keys,</li>
            <li>keying material is usable for packet protection for both 0-RTT and 1-RTT
packets, and</li>
            <li>1-RTT keys have forward secrecy</li>
          </ul>
        </li>
        <li>authenticated values for transport parameters of both endpoints, and
confidentiality protection for server transport parameters (see
<xref target="transport-parameters" format="default"/>)</li>
        <li>authenticated negotiation of an application protocol (TLS uses ALPN
<xref target="RFC7301" format="default"/> for this purpose)</li>
      </ul>
      <t>An endpoint can verify support for Explicit Congestion Notification (ECN) in the
first packets it sends, as described in <xref target="ecn-validation" format="default"/>.</t>
      <t>The CRYPTO frame can be sent in different packet number spaces
(<xref target="packet-numbers" format="default"/>).  The sequence numbers used by CRYPTO frames to ensure
ordered delivery of cryptographic handshake data start from zero in each
packet number space.</t>
      <t>Endpoints MUST explicitly negotiate an application protocol.  This avoids
situations where there is a disagreement about the protocol that is in use.</t>
      <section anchor="example-handshake-flows" numbered="true" toc="default">
        <name>Example Handshake Flows</name>
        <t>Details of how TLS is integrated with QUIC are provided in <xref target="QUIC-TLS" format="default"/>, but
some examples are provided here.  An extension of this exchange to support
client address validation is shown in <xref target="validate-retry" format="default"/>.</t>
        <t>Once any address validation exchanges are complete, the
cryptographic handshake is used to agree on cryptographic keys.  The
cryptographic handshake is carried in Initial (<xref target="packet-initial" format="default"/>) and Handshake
(<xref target="packet-handshake" format="default"/>) packets.</t>
        <t><xref target="tls-1rtt-handshake" format="default"/> provides an overview of the 1-RTT handshake.  Each line
shows a QUIC packet with the packet type and packet number shown first, followed
by the frames that are typically contained in those packets. So, for instance
the first packet is of type Initial, with packet number 0, and contains a CRYPTO
frame carrying the ClientHello.</t>
        <t>Note that multiple QUIC packets - even of different encryption levels - may be
coalesced into a single UDP datagram (see <xref target="packet-coalesce" format="default"/>), and so this
handshake may consist of as few as 4 UDP datagrams, or any number more. For
instance, the server's first flight contains packets from the Initial encryption
level (obfuscation), the Handshake level, and "0.5-RTT data" from the server at
the 1-RTT encryption level.</t>
        <figure anchor="tls-1rtt-handshake">
          <name>Example 1-RTT Handshake</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
Client                                                  Server

Initial[0]: CRYPTO[CH] ->

                                 Initial[0]: CRYPTO[SH] ACK[0]
                       Handshake[0]: CRYPTO[EE, CERT, CV, FIN]
                                 <- 1-RTT[0]: STREAM[1, "..."]

Initial[1]: ACK[0]
Handshake[0]: CRYPTO[FIN], ACK[0]
1-RTT[0]: STREAM[0, "..."], ACK[0] ->

                            1-RTT[1]: STREAM[3, "..."], ACK[0]
                                       <- Handshake[1]: ACK[0]
]]></artwork>
        </figure>
        <t><xref target="tls-0rtt-handshake" format="default"/> shows an example of a connection with a 0-RTT handshake
and a single packet of 0-RTT data. Note that as described in <xref target="packet-numbers" format="default"/>,
the server acknowledges 0-RTT data at the 1-RTT encryption level, and the
client sends 1-RTT packets in the same packet number space.</t>
        <figure anchor="tls-0rtt-handshake">
          <name>Example 0-RTT Handshake</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
Client                                                  Server

Initial[0]: CRYPTO[CH]
0-RTT[0]: STREAM[0, "..."] ->

                                 Initial[0]: CRYPTO[SH] ACK[0]
                                  Handshake[0] CRYPTO[EE, FIN]
                          <- 1-RTT[0]: STREAM[1, "..."] ACK[0]

Initial[1]: ACK[0]
Handshake[0]: CRYPTO[FIN], ACK[0]
1-RTT[1]: STREAM[0, "..."] ACK[0] ->

                            1-RTT[1]: STREAM[3, "..."], ACK[1]
                                       <- Handshake[1]: ACK[0]
]]></artwork>
        </figure>
      </section>
      <section anchor="negotiating-connection-ids" numbered="true" toc="default">
        <name>Negotiating Connection IDs</name>
        <t>A connection ID is used to ensure consistent routing of packets, as described in
<xref target="connection-id" format="default"/>.  The long header contains two connection IDs: the Destination
Connection ID is chosen by the recipient of the packet and is used to provide
consistent routing; the Source Connection ID is used to set the Destination
Connection ID used by the peer.</t>
        <t>During the handshake, packets with the long header (<xref target="long-header" format="default"/>) are used to
establish the connection ID that each endpoint uses.  Each endpoint uses the
Source Connection ID field to specify the connection ID that is used in the
Destination Connection ID field of packets being sent to them.  Upon receiving a
packet, each endpoint sets the Destination Connection ID it sends to match the
value of the Source Connection ID that they receive.</t>
        <t>When an Initial packet is sent by a client that has not previously received an
Initial or Retry packet from the server, it populates the Destination Connection
ID field with an unpredictable value.  This MUST be at least 8 bytes in length.
Until a packet is received from the server, the client MUST use the same value
unless it abandons the connection attempt and starts a new one. The initial
Destination Connection ID is used to determine packet protection keys for
Initial packets.</t>
        <t>The client populates the Source Connection ID field with a value of its choosing
and sets the SCID Len field to indicate the length.</t>
        <t>The first flight of 0-RTT packets use the same Destination and Source Connection
ID values as the client's first Initial.</t>
        <t>Upon first receiving an Initial or Retry packet from the server, the client uses
the Source Connection ID supplied by the server as the Destination Connection ID
for subsequent packets, including any subsequent 0-RTT packets.  That means that
a client might change the Destination Connection ID twice during connection
establishment, once in response to a Retry and once in response to the first
Initial packet from the server. Once a client has received an Initial packet
from the server, it MUST discard any packet it receives with a different Source
Connection ID.</t>
        <t>A client MUST only change the value it sends in the Destination Connection ID in
response to the first packet of each type it receives from the server (Retry or
Initial); a server MUST set its value based on the Initial packet.  Any
additional changes are not permitted; if subsequent packets of those types
include a different Source Connection ID, they MUST be discarded.  This avoids
problems that might arise from stateless processing of multiple Initial packets
producing different connection IDs.</t>
        <t>The connection ID can change over the lifetime of a connection, especially in
response to connection migration (<xref target="migration" format="default"/>); see <xref target="issue-cid" format="default"/> for details.</t>
      </section>
      <section anchor="transport-parameters" numbered="true" toc="default">
        <name>Transport Parameters</name>
        <t>During connection establishment, both endpoints make authenticated declarations
of their transport parameters.  These declarations are made unilaterally by each
endpoint.  Endpoints are required to comply with the restrictions implied by
these parameters; the description of each parameter includes rules for its
handling.</t>
        <t>The encoding of the transport parameters is detailed in
<xref target="transport-parameter-encoding" format="default"/>.</t>
        <t>QUIC includes the encoded transport parameters in the cryptographic handshake.
Once the handshake completes, the transport parameters declared by the peer are
available.  Each endpoint validates the value provided by its peer.</t>
        <t>Definitions for each of the defined transport parameters are included in
<xref target="transport-parameter-definitions" format="default"/>.</t>
        <t>An endpoint MUST treat receipt of a transport parameter with an invalid value as
a connection error of type TRANSPORT_PARAMETER_ERROR.</t>
        <t>An endpoint MUST NOT send a parameter more than once in a given transport
parameters extension.  An endpoint SHOULD treat receipt of duplicate transport
parameters as a connection error of type TRANSPORT_PARAMETER_ERROR.</t>
        <t>A server MUST include the original_connection_id transport parameter
(<xref target="transport-parameter-definitions" format="default"/>) if it sent a Retry packet to enable
validation of the Retry, as described in <xref target="packet-retry" format="default"/>.</t>
        <section anchor="zerortt-parameters" numbered="true" toc="default">
          <name>Values of Transport Parameters for 0-RTT</name>
          <t>Both endpoints store the value of the server transport parameters from
a connection and apply them to any 0-RTT packets that are sent in
subsequent connections to that peer, except for transport parameters that
are explicitly excluded. Remembered transport parameters apply to the new
connection until the handshake completes and the client starts sending
1-RTT packets. Once the handshake completes, the client uses the transport
parameters established in the handshake.</t>
          <t>The definition of new transport parameters (<xref target="new-transport-parameters" format="default"/>) MUST
specify whether they MUST, MAY, or MUST NOT be stored for 0-RTT. A client need
not store a transport parameter it cannot process.</t>
          <t>A client MUST NOT use remembered values for the following parameters:
original_connection_id, preferred_address, stateless_reset_token,
ack_delay_exponent and active_connection_id_limit. The client MUST use the
server's new values in the handshake instead, and absent new values from the
server, the default value.</t>
          <t>A client that attempts to send 0-RTT data MUST remember all other transport
parameters used by the server. The server can remember these transport
parameters, or store an integrity-protected copy of the values in the ticket
and recover the information when accepting 0-RTT data. A server uses the
transport parameters in determining whether to accept 0-RTT data.</t>
          <t>If 0-RTT data is accepted by the server, the server MUST NOT reduce any
limits or alter any values that might be violated by the client with its
0-RTT data.  In particular, a server that accepts 0-RTT data MUST NOT set
values for the following parameters (<xref target="transport-parameter-definitions" format="default"/>)
that are smaller than the remembered value of the parameters.</t>
          <ul spacing="normal">
            <li>initial_max_data</li>
            <li>initial_max_stream_data_bidi_local</li>
            <li>initial_max_stream_data_bidi_remote</li>
            <li>initial_max_stream_data_uni</li>
            <li>initial_max_streams_bidi</li>
            <li>initial_max_streams_uni</li>
          </ul>
          <t>Omitting or setting a zero value for certain transport parameters can result in
0-RTT data being enabled, but not usable.  The applicable subset of transport
parameters that permit sending of application data SHOULD be set to non-zero
values for 0-RTT.  This includes initial_max_data and either
initial_max_streams_bidi and initial_max_stream_data_bidi_remote, or
initial_max_streams_uni and initial_max_stream_data_uni.</t>
          <t>A server MUST either reject 0-RTT data or abort a handshake if the implied
values for transport parameters cannot be supported.</t>
          <t>When sending frames in 0-RTT packets, a client MUST only use remembered
transport parameters; importantly, it MUST NOT use updated values that it learns
from the server's updated transport parameters or from frames received in 1-RTT
packets.  Updated values of transport parameters from the handshake apply only
to 1-RTT packets.  For instance, flow control limits from remembered transport
parameters apply to all 0-RTT packets even if those values are increased by the
handshake or by frames sent in 1-RTT packets.  A server MAY treat use of updated
transport parameters in 0-RTT as a connection error of type PROTOCOL_VIOLATION.</t>
        </section>
        <section anchor="new-transport-parameters" numbered="true" toc="default">
          <name>New Transport Parameters</name>
          <t>New transport parameters can be used to negotiate new protocol behavior.  An
endpoint MUST ignore transport parameters that it does not support.  Absence of
a transport parameter therefore disables any optional protocol feature that is
negotiated using the parameter.  As described in <xref target="transport-parameter-grease" format="default"/>,
some identifiers are reserved in order to exercise this requirement.</t>
          <t>New transport parameters can be registered according to the rules in
<xref target="iana-transport-parameters" format="default"/>.</t>
        </section>
      </section>
      <section anchor="cryptographic-message-buffering" numbered="true" toc="default">
        <name>Cryptographic Message Buffering</name>
        <t>Implementations need to maintain a buffer of CRYPTO data received out of order.
Because there is no flow control of CRYPTO frames, an endpoint could
potentially force its peer to buffer an unbounded amount of data.</t>
        <t>Implementations MUST support buffering at least 4096 bytes of data received in
CRYPTO frames out of order. Endpoints MAY choose to allow more data to be
buffered during the handshake. A larger limit during the handshake could allow
for larger keys or credentials to be exchanged. An endpoint's buffer size does
not need to remain constant during the life of the connection.</t>
        <t>Being unable to buffer CRYPTO frames during the handshake can lead to a
connection failure. If an endpoint's buffer is exceeded during the handshake, it
can expand its buffer temporarily to complete the handshake. If an endpoint
does not expand its buffer, it MUST close the connection with a
CRYPTO_BUFFER_EXCEEDED error code.</t>
        <t>Once the handshake completes, if an endpoint is unable to buffer all data in a
CRYPTO frame, it MAY discard that CRYPTO frame and all CRYPTO frames received in
the future, or it MAY close the connection with a CRYPTO_BUFFER_EXCEEDED error
code. Packets containing discarded CRYPTO frames MUST be acknowledged because
the packet has been received and processed by the transport even though the
CRYPTO frame was discarded.</t>
      </section>
    </section>
    <section anchor="address-validation" numbered="true" toc="default">
      <name>Address Validation</name>
      <t>Address validation is used by QUIC to avoid being used for a traffic
amplification attack.  In such an attack, a packet is sent to a server with
spoofed source address information that identifies a victim.  If a server
generates more or larger packets in response to that packet, the attacker can
use the server to send more data toward the victim than it would be able to send
on its own.</t>
      <t>The primary defense against amplification attack is verifying that an endpoint
is able to receive packets at the transport address that it claims.  Address
validation is performed both during connection establishment (see
<xref target="validate-handshake" format="default"/>) and during connection migration (see
<xref target="migrate-validate" format="default"/>).</t>
      <section anchor="validate-handshake" numbered="true" toc="default">
        <name>Address Validation During Connection Establishment</name>
        <t>Connection establishment implicitly provides address validation for both
endpoints.  In particular, receipt of a packet protected with Handshake keys
confirms that the client received the Initial packet from the server.  Once the
server has successfully processed a Handshake packet from the client, it can
consider the client address to have been validated.</t>
        <t>Prior to validating the client address, servers MUST NOT send more than three
times as many bytes as the number of bytes they have received.  This limits the
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.</t>
        <t>Clients MUST ensure that UDP datagrams containing Initial packets have UDP
payloads of 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.</t>
        <t>Packet loss, in particular loss of a Handshake packet from the server, can cause
a situation in which the server cannot send when the client has no data to send
and the anti-amplification limit is reached. In order to avoid this causing a
handshake deadlock, clients MUST send a packet upon a probe timeout, as
described in <xref target="QUIC-RECOVERY" format="default"/>. If the client has no data to retransmit and does
not have Handshake keys, it MUST send an Initial packet in a UDP datagram of
at least 1200 bytes.  If the client has Handshake keys, it SHOULD send a
Handshake packet.</t>
        <t>A server might wish to validate the client address before starting the
cryptographic handshake. QUIC uses a token in the Initial packet to provide
address validation prior to completing the handshake. This token is delivered to
the client during connection establishment with a Retry packet (see
<xref target="validate-retry" format="default"/>) or in a previous connection using the NEW_TOKEN frame (see
<xref target="validate-future" format="default"/>).</t>
        <t>In addition to sending limits imposed prior to address validation, servers are
also constrained in what they can send by the limits set by the congestion
controller.  Clients are only constrained by the congestion controller.</t>
        <section anchor="token-construction" numbered="true" toc="default">
          <name>Token Construction</name>
          <t>A token sent in a NEW_TOKEN frames or a Retry packet MUST be constructed in a
way that allows the server to identity how it was provided to a client.  These
tokens are carried in the same field, but require different handling from
servers.</t>
        </section>
        <section anchor="validate-retry" numbered="true" toc="default">
          <name>Address Validation using Retry Packets</name>
          <t>Upon receiving the client's Initial packet, the server can request address
validation by sending a Retry packet (<xref target="packet-retry" format="default"/>) containing a token. This
token MUST be repeated by the client in all Initial packets it sends for that
connection after it receives the Retry packet.  In response to processing an
Initial containing a token, a server can either abort the connection or permit
it to proceed.</t>
          <t>As long as it is not possible for an attacker to generate a valid token for
its own address (see <xref target="token-integrity" format="default"/>) and the client is able to return
that token, it proves to the server that it received the token.</t>
          <t>A server can also use a Retry packet to defer the state and processing costs of
connection establishment.  Requiring the server to provide a different
connection ID, along with the original_connection_id transport parameter defined
in <xref target="transport-parameter-definitions" format="default"/>, forces the server to demonstrate that
it, or an entity it cooperates with, received the original Initial packet from
the client.  Providing a different connection ID also grants a server some
control over how subsequent packets are routed.  This can be used to direct
connections to a different server instance.</t>
          <t>If a server receives a client Initial that can be unprotected but contains an
invalid Retry token, it knows the client will not accept another Retry token.
The server can discard such a packet and allow the client to time out to
detect handshake failure, but that could impose a significant latency penalty on
the client.  A server MAY proceed with the connection without verifying the
token, though the server MUST NOT consider the client address validated.  If a
server chooses not to proceed with the handshake, it SHOULD immediately close
(<xref target="immediate-close" format="default"/>) the connection with an INVALID_TOKEN error.  Note that a
server has not established any state for the connection at this point and so
does not enter the closing period.</t>
          <t>A flow showing the use of a Retry packet is shown in <xref target="fig-retry" format="default"/>.</t>
          <figure anchor="fig-retry">
            <name>Example Handshake with Retry</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Client                                                  Server

Initial[0]: CRYPTO[CH] ->

                                                <- Retry+Token

Initial+Token[1]: CRYPTO[CH] ->

                                 Initial[0]: CRYPTO[SH] ACK[1]
                       Handshake[0]: CRYPTO[EE, CERT, CV, FIN]
                                 <- 1-RTT[0]: STREAM[1, "..."]
]]></artwork>
          </figure>
        </section>
        <section anchor="validate-future" numbered="true" toc="default">
          <name>Address Validation for Future Connections</name>
          <t>A server MAY provide clients with an address validation token during one
connection that can be used on a subsequent connection.  Address validation is
especially important with 0-RTT because a server potentially sends a significant
amount of data to a client in response to 0-RTT data.</t>
          <t>The server uses the NEW_TOKEN frame <xref target="frame-new-token" format="default"/> to provide the client
with an address validation token that can be used to validate future
connections.  The client includes this token in Initial packets to provide
address validation in a future connection.  The client MUST include the token in
all Initial packets it sends, unless a Retry replaces the token with a newer
one.  The client MUST NOT use the token provided in a Retry for future
connections. Servers MAY discard any Initial packet that does not carry the
expected token.</t>
          <t>Unlike the token that is created for a Retry packet, which is used immediately,
the token sent in the NEW_TOKEN frame might be used after some period of
time has passed.  Thus, a token SHOULD have an expiration time, which could
be either an explicit expiration time or an issued timestamp that can be
used to dynamically calculate the expiration time.  A server can store the
expiration time or include it in an encrypted form in the token.</t>
          <t>A token issued with NEW_TOKEN MUST NOT include information that would allow
values to be linked by an on-path observer to the connection on which it was
issued, unless the values are encrypted.  For example, it cannot include the
previous connection ID or addressing information.  A server MUST ensure that
every NEW_TOKEN frame it sends is unique across all clients, with the exception
of those sent to repair losses of previously sent NEW_TOKEN frames.  Information
that allows the server to distinguish between tokens from Retry and NEW_TOKEN
MAY be accessible to entities other than the server.</t>
          <t>It is unlikely that the client port number is the same on two different
connections; validating the port is therefore unlikely to be successful.</t>
          <t>A token received in a NEW_TOKEN frame is applicable to any server that the
connection is considered authoritative for (e.g., server names included in the
certificate).  When connecting to a server for which the client retains an
applicable and unused token, it SHOULD include that token in the Token field of
its Initial packet.  Including a token might allow the server to validate the
client address without an additional round trip.  A client MUST NOT include a
token that is not applicable to the server that it is connecting to, unless the
client has the knowledge that the server that issued the token and the server
the client is connecting to are jointly managing the tokens.  A client MAY use a
token from any previous connection to that server.</t>
          <t>A token allows a server to correlate activity between the connection where the
token was issued and any connection where it is used.  Clients that want to
break continuity of identity with a server MAY discard tokens provided using the
NEW_TOKEN frame.  In comparison, a token obtained in a Retry packet MUST be used
immediately during the connection attempt and cannot be used in subsequent
connection attempts.</t>
          <t>A client SHOULD NOT reuse a NEW_TOKEN token for different connection attempts.
Reusing a token allows connections to be linked by entities on the network path;
see <xref target="migration-linkability" format="default"/>.</t>
          <t>Clients might receive multiple tokens on a single connection.  Aside from
preventing linkability, any token can be used in any connection attempt.
Servers can send additional tokens to either enable address validation for
multiple connection attempts or to replace older tokens that might become
invalid.  For a client, this ambiguity means that sending the most recent unused
token is most likely to be effective.  Though saving and using older tokens has
no negative consequences, clients can regard older tokens as being less likely
be useful to the server for address validation.</t>
          <t>When a server receives an Initial packet with an address validation token, it
MUST attempt to validate the token, unless it has already completed address
validation.  If the token is invalid then the server SHOULD proceed as if
the client did not have a validated address, including potentially sending
a Retry. If the validation succeeds, the server SHOULD then allow the
handshake to proceed.</t>
          <dl newline="false" spacing="normal">
            <dt>Note:</dt>
            <dd>
  The rationale for treating the client as unvalidated rather than discarding
the packet is that the client might have received the token in a previous
connection using the NEW_TOKEN frame, and if the server has lost state, it
might be unable to validate the token at all, leading to connection failure if
the packet is discarded.  A server SHOULD encode tokens provided with
NEW_TOKEN frames and Retry packets differently, and validate the latter more
strictly.</dd>
          </dl>
          <t>In a stateless design, a server can use encrypted and authenticated tokens to
pass information to clients that the server can later recover and use to
validate a client address.  Tokens are not integrated into the cryptographic
handshake and so they are not authenticated.  For instance, a client might be
able to reuse a token.  To avoid attacks that exploit this property, a server
can limit its use of tokens to only the information needed to validate client
addresses.</t>
          <t>Clients MAY use tokens obtained on one connection for any connection attempt
using the same version.  When selecting a token to use, clients do not need to
consider other properties of the connection that is being attempted, including
the choice of possible application protocols, session tickets, or other
connection properties.</t>
          <t>Attackers could replay tokens to use servers as amplifiers in DDoS attacks. To
protect against such attacks, servers SHOULD ensure that tokens sent in Retry
packets are only accepted for a short time. Tokens that are provided in
NEW_TOKEN frames (see <xref target="frame-new-token" format="default"/>) need to be valid for longer, but
SHOULD NOT be accepted multiple times in a short period. Servers are encouraged
to allow tokens to be used only once, if possible.</t>
        </section>
        <section anchor="token-integrity" numbered="true" toc="default">
          <name>Address Validation Token Integrity</name>
          <t>An address validation token MUST be difficult to guess.  Including a large
enough random value in the token would be sufficient, but this depends on the
server remembering the value it sends to clients.</t>
          <t>A token-based scheme allows the server to offload any state associated with
validation to the client.  For this design to work, the token MUST be covered by
integrity protection against modification or falsification by clients.  Without
integrity protection, malicious clients could generate or guess values for
tokens that would be accepted by the server.  Only the server requires access to
the integrity protection key for tokens.</t>
          <t>There is no need for a single well-defined format for the token because the
server that generates the token also consumes it.  A token could include
information about the claimed client address (IP and port), a timestamp, and any
other supplementary information the server will need to validate the token in
the future.</t>
        </section>
      </section>
      <section anchor="migrate-validate" numbered="true" toc="default">
        <name>Path Validation</name>
        <t>Path validation is used during connection migration (see <xref target="migration" format="default"/> and
<xref target="preferred-address" format="default"/>) by the migrating endpoint to verify reachability of a
peer from a new local address.  In path validation, endpoints test reachability
between a specific local address and a specific peer address, where an address
is the two-tuple of IP address and port.</t>
        <t>Path validation tests that packets (PATH_CHALLENGE) can be both sent to and
received (PATH_RESPONSE) from a peer on the path.  Importantly, it validates
that the packets received from the migrating endpoint do not carry a spoofed
source address.</t>
        <t>Path validation can be used at any time by either endpoint.  For instance, an
endpoint might check that a peer is still in possession of its address after a
period of quiescence.</t>
        <t>Path validation is not designed as a NAT traversal mechanism. Though the
mechanism described here might be effective for the creation of NAT bindings
that support NAT traversal, the expectation is that one or other peer is able to
receive packets without first having sent a packet on that path. Effective NAT
traversal needs additional synchronization mechanisms that are not provided
here.</t>
        <t>An endpoint MAY bundle PATH_CHALLENGE and PATH_RESPONSE frames that are used for
path validation with other frames.  In particular, an endpoint may pad a packet
carrying a PATH_CHALLENGE for PMTU discovery, or an endpoint may bundle a
PATH_RESPONSE with its own PATH_CHALLENGE.</t>
        <t>When probing a new path, an endpoint might want to ensure that its peer has an
unused connection ID available for responses. The endpoint can send
NEW_CONNECTION_ID and PATH_CHALLENGE frames in the same packet. This ensures
that an unused connection ID will be available to the peer when sending a
response.</t>
      </section>
      <section anchor="initiating-path-validation" numbered="true" toc="default">
        <name>Initiating Path Validation</name>
        <t>To initiate path validation, an endpoint sends a PATH_CHALLENGE frame containing
a random payload on the path to be validated.</t>
        <t>An endpoint MAY send multiple PATH_CHALLENGE frames to guard against packet
loss. However, an endpoint SHOULD NOT send multiple PATH_CHALLENGE frames in a
single packet.  An endpoint SHOULD NOT send a PATH_CHALLENGE more frequently
than it would an Initial packet, ensuring that connection migration is no more
load on a new path than establishing a new connection.</t>
        <t>The endpoint MUST use unpredictable data in every PATH_CHALLENGE frame so that
it can associate the peer's response with the corresponding PATH_CHALLENGE.</t>
      </section>
      <section anchor="path-validation-responses" numbered="true" toc="default">
        <name>Path Validation Responses</name>
        <t>On receiving a PATH_CHALLENGE frame, an endpoint MUST respond immediately by
echoing the data contained in the PATH_CHALLENGE frame in a PATH_RESPONSE frame.</t>
        <t>An endpoint MUST NOT send more than one PATH_RESPONSE frame in response to one
PATH_CHALLENGE frame (see <xref target="retransmission-of-information" format="default"/>).  The peer is
expected to send more PATH_CHALLENGE frames as necessary to evoke additional
PATH_RESPONSE frames.</t>
      </section>
      <section anchor="successful-path-validation" numbered="true" toc="default">
        <name>Successful Path Validation</name>
        <t>A new address is considered valid when a PATH_RESPONSE frame is received that
contains the data that was sent in a previous PATH_CHALLENGE. Receipt of an
acknowledgment for a packet containing a PATH_CHALLENGE frame is not adequate
validation, since the acknowledgment can be spoofed by a malicious peer.</t>
        <t>Note that receipt on a different local address does not result in path
validation failure, as it might be a result of a forwarded packet (see
<xref target="off-path-forward" format="default"/>) or misrouting. It is possible that a valid PATH_RESPONSE
might be received in the future.</t>
      </section>
      <section anchor="failed-path-validation" numbered="true" toc="default">
        <name>Failed Path Validation</name>
        <t>Path validation only fails when the endpoint attempting to validate the path
abandons its attempt to validate the path.</t>
        <t>Endpoints SHOULD abandon path validation based on a timer. When setting this
timer, implementations are cautioned that the new path could have a longer
round-trip time than the original.  A value of three times the larger of the
current Probe Timeout (PTO) or the initial timeout (that is, 2*kInitialRtt) as
defined in <xref target="QUIC-RECOVERY" format="default"/> is RECOMMENDED.  That is:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
   validation_timeout = max(3*PTO, 6*kInitialRtt)
]]></artwork>
        <t>Note that the endpoint might receive packets containing other frames on the new
path, but a PATH_RESPONSE frame with appropriate data is required for path
validation to succeed.</t>
        <t>When an endpoint abandons path validation, it determines that the path is
unusable.  This does not necessarily imply a failure of the connection -
endpoints can continue sending packets over other paths as appropriate.  If no
paths are available, an endpoint can wait for a new path to become available or
close the connection.</t>
        <t>A path validation might be abandoned for other reasons besides
failure. Primarily, this happens if a connection migration to a new path is
initiated while a path validation on the old path is in progress.</t>
      </section>
    </section>
    <section anchor="migration" numbered="true" toc="default">
      <name>Connection Migration</name>
      <t>The use of a connection ID allows connections to survive changes to endpoint
addresses (IP address and port), such as those caused by an
endpoint migrating to a new network.  This section describes the process by
which an endpoint migrates to a new address.</t>
      <t>The design of QUIC relies on endpoints retaining a stable address for the
duration of the handshake.  An endpoint MUST NOT initiate connection migration
before the handshake is confirmed, as defined in section 4.1.2 of <xref target="QUIC-TLS" format="default"/>.</t>
      <t>An endpoint also MUST NOT send packets from a different local address, actively
initiating migration, if the peer sent the <tt>disable_active_migration</tt> transport
parameter during the handshake. An endpoint which has sent this transport
parameter, but detects that a peer has nonetheless migrated to a different
network MUST either drop the incoming packets on that path without generating a
stateless reset or proceed with path validation and allow the peer to migrate.
Generating a stateless reset or closing the connection would allow third parties
in the network to cause connections to close by spoofing or otherwise
manipulating observed traffic.</t>
      <t>Not all changes of peer address are intentional, or active, migrations. The peer
could experience NAT rebinding: a change of address due to a middlebox, usually
a NAT, allocating a new outgoing port or even a new outgoing IP address for a
flow.  An endpoint MUST perform path validation (<xref target="migrate-validate" format="default"/>) if it
detects any change to a peer's address, unless it has previously validated that
address.</t>
      <t>When an endpoint has no validated path on which to send packets, it MAY discard
connection state.  An endpoint capable of connection migration MAY wait for a
new path to become available before discarding connection state.</t>
      <t>This document limits migration of connections to new client addresses, except as
described in <xref target="preferred-address" format="default"/>. Clients are responsible for initiating all
migrations.  Servers do not send non-probing packets (see <xref target="probing" format="default"/>) toward a
client address until they see a non-probing packet from that address.  If a
client receives packets from an unknown server address, the client MUST discard
these packets.</t>
      <section anchor="probing" numbered="true" toc="default">
        <name>Probing a New Path</name>
        <t>An endpoint MAY probe for peer reachability from a new local address using path
validation <xref target="migrate-validate" format="default"/> prior to migrating the connection to the new
local address.  Failure of path validation simply means that the new path is not
usable for this connection.  Failure to validate a path does not cause the
connection to end unless there are no valid alternative paths available.</t>
        <t>An endpoint uses a new connection ID for probes sent from a new local address;
see <xref target="migration-linkability" format="default"/> for further discussion. An endpoint that uses
a new local address needs to ensure that at least one new connection ID is
available at the peer. That can be achieved by including a NEW_CONNECTION_ID
frame in the probe.</t>
        <t>Receiving a PATH_CHALLENGE frame from a peer indicates that the peer is probing
for reachability on a path. An endpoint sends a PATH_RESPONSE in response as per
<xref target="migrate-validate" format="default"/>.</t>
        <t>PATH_CHALLENGE, PATH_RESPONSE, NEW_CONNECTION_ID, and PADDING frames are
"probing frames", and all other frames are "non-probing frames".  A packet
containing only probing frames is a "probing packet", and a packet containing
any other frame is a "non-probing packet".</t>
      </section>
      <section anchor="initiating-migration" numbered="true" toc="default">
        <name>Initiating Connection Migration</name>
        <t>An endpoint can migrate a connection to a new local address by sending packets
containing non-probing frames from that address.</t>
        <t>Each endpoint validates its peer's address during connection establishment.
Therefore, a migrating endpoint can send to its peer knowing that the peer is
willing to receive at the peer's current address. Thus an endpoint can migrate
to a new local address without first validating the peer's address.</t>
        <t>When migrating, the new path might not support the endpoint's current sending
rate. Therefore, the endpoint resets its congestion controller, as described in
<xref target="migration-cc" format="default"/>.</t>
        <t>The new path might not have the same ECN capability. Therefore, the endpoint
verifies ECN capability as described in <xref target="ecn" format="default"/>.</t>
        <t>Receiving acknowledgments for data sent on the new path serves as proof of the
peer's reachability from the new address.  Note that since acknowledgments may
be received on any path, return reachability on the new path is not
established. To establish return reachability on the new path, an endpoint MAY
concurrently initiate path validation <xref target="migrate-validate" format="default"/> on the new path.</t>
      </section>
      <section anchor="migration-response" numbered="true" toc="default">
        <name>Responding to Connection Migration</name>
        <t>Receiving a packet from a new peer address containing a non-probing frame
indicates that the peer has migrated to that address.</t>
        <t>In response to such a packet, an endpoint MUST start sending subsequent packets
to the new peer address and MUST initiate path validation (<xref target="migrate-validate" format="default"/>)
to verify the peer's ownership of the unvalidated address.</t>
        <t>An endpoint MAY send data to an unvalidated peer address, but it MUST protect
against potential attacks as described in <xref target="address-spoofing" format="default"/> and
<xref target="on-path-spoofing" format="default"/>.  An endpoint MAY skip validation of a peer address if that
address has been seen recently.  In particular, if an endpoint returns to a
previously-validated path after detecting some form of spurious migration,
skipping address validation and restoring loss detection and congestion state
can reduce the performance impact of the attack.</t>
        <t>An endpoint only changes the address that it sends packets to in response to the
highest-numbered non-probing packet. This ensures that an endpoint does not send
packets to an old peer address in the case that it receives reordered packets.</t>
        <t>After changing the address to which it sends non-probing packets, an endpoint
could abandon any path validation for other addresses.</t>
        <t>Receiving a packet from a new peer address might be the result of a NAT
rebinding at the peer.</t>
        <t>After verifying a new client address, the server SHOULD send new address
validation tokens (<xref target="address-validation" format="default"/>) to the client.</t>
        <section anchor="address-spoofing" numbered="true" toc="default">
          <name>Peer Address Spoofing</name>
          <t>It is possible that a peer is spoofing its source address to cause an endpoint
to send excessive amounts of data to an unwilling host.  If the endpoint sends
significantly more data than the spoofing peer, connection migration might be
used to amplify the volume of data that an attacker can generate toward a
victim.</t>
          <t>As described in <xref target="migration-response" format="default"/>, an endpoint is required to validate a
peer's new address to confirm the peer's possession of the new address.  Until a
peer's address is deemed valid, an endpoint MUST limit the rate at which it
sends data to this address.  The endpoint MUST NOT send more than a minimum
congestion window's worth of data per estimated round-trip time (kMinimumWindow,
as defined in <xref target="QUIC-RECOVERY" format="default"/>).  In the absence of this limit, an endpoint
risks being used for a denial of service attack against an unsuspecting victim.
Note that since the endpoint will not have any round-trip time measurements to
this address, the estimate SHOULD be the default initial value (see
<xref target="QUIC-RECOVERY" format="default"/>).</t>
          <t>If an endpoint skips validation of a peer address as described in
<xref target="migration-response" format="default"/>, it does not need to limit its sending rate.</t>
        </section>
        <section anchor="on-path-spoofing" numbered="true" toc="default">
          <name>On-Path Address Spoofing</name>
          <t>An on-path attacker could cause a spurious connection migration by copying and
forwarding a packet with a spoofed address such that it arrives before the
original packet.  The packet with the spoofed address will be seen to come from
a migrating connection, and the original packet will be seen as a duplicate and
dropped. After a spurious migration, validation of the source address will fail
because the entity at the source address does not have the necessary
cryptographic keys to read or respond to the PATH_CHALLENGE frame that is sent
to it even if it wanted to.</t>
          <t>To protect the connection from failing due to such a spurious migration, an
endpoint MUST revert to using the last validated peer address when validation of
a new peer address fails.</t>
          <t>If an endpoint has no state about the last validated peer address, it MUST close
the connection silently by discarding all connection state. This results in new
packets on the connection being handled generically. For instance, an endpoint
MAY send a stateless reset in response to any further incoming packets.</t>
          <t>Note that receipt of packets with higher packet numbers from the legitimate peer
address will trigger another connection migration.  This will cause the
validation of the address of the spurious migration to be abandoned.</t>
        </section>
        <section anchor="off-path-forward" numbered="true" toc="default">
          <name>Off-Path Packet Forwarding</name>
          <t>An off-path attacker that can observe packets might forward copies of genuine
packets to endpoints.  If the copied packet arrives before the genuine packet,
this will appear as a NAT rebinding.  Any genuine packet will be discarded as a
duplicate.  If the attacker is able to continue forwarding packets, it might be
able to cause migration to a path via the attacker.  This places the attacker on
path, giving it the ability to observe or drop all subsequent packets.</t>
          <t>Unlike the attack described in <xref target="on-path-spoofing" format="default"/>, the attacker can ensure
that the new path is successfully validated.</t>
          <t>This style of attack relies on the attacker using a path that is approximately
as fast as the direct path between endpoints.  The attack is more reliable if
relatively few packets are sent or if packet loss coincides with the attempted
attack.</t>
          <t>A non-probing packet received on the original path that increases the maximum
received packet number will cause the endpoint to move back to that path.
Eliciting packets on this path increases the likelihood that the attack is
unsuccessful.  Therefore, mitigation of this attack relies on triggering the
exchange of packets.</t>
          <t>In response to an apparent migration, endpoints MUST validate the previously
active path using a PATH_CHALLENGE frame.  This induces the sending of new
packets on that path.  If the path is no longer viable, the validation attempt
will time out and fail; if the path is viable, but no longer desired, the
validation will succeed, but only results in probing packets being sent on the
path.</t>
          <t>An endpoint that receives a PATH_CHALLENGE on an active path SHOULD send a
non-probing packet in response.  If the non-probing packet arrives before any
copy made by an attacker, this results in the connection being migrated back to
the original path.  Any subsequent migration to another path restarts this
entire process.</t>
          <t>This defense is imperfect, but this is not considered a serious problem. If the
path via the attack is reliably faster than the original path despite multiple
attempts to use that original path, it is not possible to distinguish between
attack and an improvement in routing.</t>
          <t>An endpoint could also use heuristics to improve detection of this style of
attack.  For instance, NAT rebinding is improbable if packets were recently
received on the old path, similarly rebinding is rare on IPv6 paths.  Endpoints
can also look for duplicated packets.  Conversely, a change in connection ID is
more likely to indicate an intentional migration rather than an attack.</t>
        </section>
      </section>
      <section anchor="migration-cc" numbered="true" toc="default">
        <name>Loss Detection and Congestion Control</name>
        <t>The capacity available on the new path might not be the same as the old path.
Packets sent on the old path MUST NOT contribute to congestion control or RTT
estimation for the new path.</t>
        <t>On confirming a peer's ownership of its new address, an endpoint MUST
immediately reset the congestion controller and round-trip time estimator for
the new path to initial values (see Sections A.3 and B.3 in <xref target="QUIC-RECOVERY" format="default"/>)
unless it has knowledge that a previous send rate or round-trip time estimate is
valid for the new path.  For instance, an endpoint might infer that a change in
only the client's port number is indicative of a NAT rebinding, meaning that the
new path is likely to have similar bandwidth and round-trip time. However, this
determination will be imperfect.  If the determination is incorrect, the
congestion controller and the RTT estimator are expected to adapt to the new
path.  Generally, implementations are advised to be cautious when using previous
values on a new path.</t>
        <t>There may be apparent reordering at the receiver when an endpoint sends data and
probes from/to multiple addresses during the migration period, since the two
resulting paths may have different round-trip times.  A receiver of packets on
multiple paths will still send ACK frames covering all received packets.</t>
        <t>While multiple paths might be used during connection migration, a single
congestion control context and a single loss recovery context (as described in
<xref target="QUIC-RECOVERY" format="default"/>) may be adequate.  For instance, an endpoint might delay
switching to a new congestion control context until it is confirmed that an old
path is no longer needed (such as the case in <xref target="off-path-forward" format="default"/>).</t>
        <t>A sender can make exceptions for probe packets so that their loss detection is
independent and does not unduly cause the congestion controller to reduce its
sending rate.  An endpoint might set a separate timer when a PATH_CHALLENGE is
sent, which is cancelled if the corresponding PATH_RESPONSE is received. If
the timer fires before the PATH_RESPONSE is received, the endpoint might send a
new PATH_CHALLENGE, and restart the timer for a longer period of time.
This timer SHOULD be set as described in Section 5.3 of <xref target="QUIC-RECOVERY" format="default"/> and
MUST NOT be more aggressive.</t>
      </section>
      <section anchor="migration-linkability" numbered="true" toc="default">
        <name>Privacy Implications of Connection Migration</name>
        <t>Using a stable connection ID on multiple network paths allows a passive observer
to correlate activity between those paths.  An endpoint that moves between
networks might not wish to have their activity correlated by any entity other
than their peer, so different connection IDs are used when sending from
different local addresses, as discussed in <xref target="connection-id" format="default"/>.  For this to be
effective endpoints need to ensure that connection IDs they provide cannot be
linked by any other entity.</t>
        <t>At any time, endpoints MAY change the Destination Connection ID they send to a
value that has not been used on another path.</t>
        <t>An endpoint MUST use a new connection ID if it initiates connection migration as
described in <xref target="initiating-migration" format="default"/> or probes a new network path as described
in <xref target="probing" format="default"/>.  An endpoint MUST use a new connection ID in response to a
change in the address of a peer if the packet with the new peer address uses an
active connection ID that has not been previously used by the peer.</t>
        <t>Using different connection IDs for packets sent in both directions on each new
network path eliminates the use of the connection ID for linking packets from
the same connection across different network paths.  Header protection ensures
that packet numbers cannot be used to correlate activity.  This does not prevent
other properties of packets, such as timing and size, from being used to
correlate activity.</t>
        <t>Unintentional changes in path without a change in connection ID are possible.
For example, after a period of network inactivity, NAT rebinding might cause
packets to be sent on a new path when the client resumes sending.</t>
        <t>A client might wish to reduce linkability by employing a new connection ID and
source UDP port when sending traffic after a period of inactivity.  Changing the
UDP port from which it sends packets at the same time might cause the packet to
appear as a connection migration. This ensures that the mechanisms that support
migration are exercised even for clients that don't experience NAT rebindings or
genuine migrations.  Changing port number can cause a peer to reset its
congestion state (see <xref target="migration-cc" format="default"/>), so the port SHOULD only be changed
infrequently.</t>
        <t>An endpoint that exhausts available connection IDs cannot probe new paths or
initiate migration, nor can it respond to probes or attempts by its peer to
migrate.  To ensure that migration is possible and packets sent on different
paths cannot be correlated, endpoints SHOULD provide new connection IDs before
peers migrate; see <xref target="issue-cid" format="default"/>.  If a peer might have exhausted available
connection IDs, a migrating endpoint could include a NEW_CONNECTION_ID frame in
all packets sent on a new network path.</t>
      </section>
      <section anchor="preferred-address" numbered="true" toc="default">
        <name>Server's Preferred Address</name>
        <t>QUIC allows servers to accept connections on one IP address and attempt to
transfer these connections to a more preferred address shortly after the
handshake.  This is particularly useful when clients initially connect to an
address shared by multiple servers but would prefer to use a unicast address to
ensure connection stability. This section describes the protocol for migrating a
connection to a preferred server address.</t>
        <t>Migrating a connection to a new server address mid-connection is left for future
work. If a client receives packets from a new server address not indicated by
the preferred_address transport parameter, the client SHOULD discard these
packets.</t>
        <section anchor="communicating-a-preferred-address" numbered="true" toc="default">
          <name>Communicating a Preferred Address</name>
          <t>A server conveys a preferred address by including the preferred_address
transport parameter in the TLS handshake.</t>
          <t>Servers MAY communicate a preferred address of each address family (IPv4 and
IPv6) to allow clients to pick the one most suited to their network attachment.</t>
          <t>Once the handshake is finished, the client SHOULD select one of the two
server's preferred addresses and initiate path validation (see
<xref target="migrate-validate" format="default"/>) of that address using the connection ID provided in the
preferred_address transport parameter.</t>
          <t>If path validation succeeds, the client SHOULD immediately begin sending all
future packets to the new server address using the new connection ID and
discontinue use of the old server address.  If path validation fails, the client
MUST continue sending all future packets to the server's original IP address.</t>
        </section>
        <section anchor="responding-to-connection-migration" numbered="true" toc="default">
          <name>Responding to Connection Migration</name>
          <t>A server might receive a packet addressed to its preferred IP address at any
time after it accepts a connection.  If this packet contains a PATH_CHALLENGE
frame, the server sends a PATH_RESPONSE frame as per <xref target="migrate-validate" format="default"/>.  The
server MUST send other non-probing frames from its original address until it
receives a non-probing packet from the client at its preferred address and until
the server has validated the new path.</t>
          <t>The server MUST probe on the path toward the client from its preferred address.
This helps to guard against spurious migration initiated by an attacker.</t>
          <t>Once the server has completed its path validation and has received a non-probing
packet with a new largest packet number on its preferred address, the server
begins sending non-probing packets to the client exclusively from its preferred
IP address.  It SHOULD drop packets for this connection received on the old IP
address, but MAY continue to process delayed packets.</t>
        </section>
        <section anchor="interaction-of-client-migration-and-preferred-address" numbered="true" toc="default">
          <name>Interaction of Client Migration and Preferred Address</name>
          <t>A client might need to perform a connection migration before it has migrated to
the server's preferred address.  In this case, the client SHOULD perform path
validation to both the original and preferred server address from the client's
new address concurrently.</t>
          <t>If path validation of the server's preferred address succeeds, the client MUST
abandon validation of the original address and migrate to using the server's
preferred address.  If path validation of the server's preferred address fails
but validation of the server's original address succeeds, the client MAY migrate
to its new address and continue sending to the server's original address.</t>
          <t>If the connection to the server's preferred address is not from the same client
address, the server MUST protect against potential attacks as described in
<xref target="address-spoofing" format="default"/> and <xref target="on-path-spoofing" format="default"/>.  In addition to intentional
simultaneous migration, this might also occur because the client's access
network used a different NAT binding for the server's preferred address.</t>
          <t>Servers SHOULD initiate path validation to the client's new address upon
receiving a probe packet from a different address.  Servers MUST NOT send more
than a minimum congestion window's worth of non-probing packets to the new
address before path validation is complete.</t>
          <t>A client that migrates to a new address SHOULD use a preferred address from the
same address family for the server.</t>
        </section>
      </section>
      <section anchor="ipv6-flow-label" numbered="true" toc="default">
        <name>Use of IPv6 Flow-Label and Migration</name>
        <t>Endpoints that send data using IPv6 SHOULD apply an IPv6 flow label
in compliance with <xref target="RFC6437" format="default"/>, unless the local API does not allow
setting IPv6 flow labels.</t>
        <t>The IPv6 flow label SHOULD be a pseudo-random function of the source
and destination addresses, source and destination UDP ports, and the destination
CID. The flow label generation MUST be designed to minimize the chances of
linkability with a previously used flow label, as this would enable correlating
activity on multiple paths (see <xref target="migration-linkability" format="default"/>).</t>
        <t>A possible implementation is to compute the flow label as a cryptographic hash
function of the source and destination addresses, source and destination
UDP ports, destination CID, and a local secret.</t>
      </section>
    </section>
    <section anchor="termination" numbered="true" toc="default">
      <name>Connection Termination</name>
      <t>An established QUIC connection can be terminated in one of three ways:</t>
      <ul spacing="normal">
        <li>idle timeout (<xref target="idle-timeout" format="default"/>)</li>
        <li>immediate close (<xref target="immediate-close" format="default"/>)</li>
        <li>stateless reset (<xref target="stateless-reset" format="default"/>)</li>
      </ul>
      <t>An endpoint MAY discard connection state if it does not have a validated path on
which it can send packets (see <xref target="migrate-validate" format="default"/>).</t>
      <section anchor="draining" numbered="true" toc="default">
        <name>Closing and Draining Connection States</name>
        <t>The closing and draining connection states exist to ensure that connections
close cleanly and that delayed or reordered packets are properly discarded.
These states SHOULD persist for at least three times the current Probe Timeout
(PTO) interval as defined in <xref target="QUIC-RECOVERY" format="default"/>.</t>
        <t>An endpoint enters a closing period after initiating an immediate close
(<xref target="immediate-close" format="default"/>).  While closing, an endpoint MUST NOT send packets unless
they contain a CONNECTION_CLOSE frame (see <xref target="immediate-close" format="default"/> for details).  An
endpoint retains only enough information to generate a packet containing a
CONNECTION_CLOSE frame and to identify packets as belonging to the connection.
The endpoint's selected connection ID and the QUIC version are sufficient
information to identify packets for a closing connection; an endpoint can
discard all other connection state. An endpoint MAY retain packet protection
keys for incoming packets to allow it to read and process a CONNECTION_CLOSE
frame.</t>
        <t>The draining state is entered once an endpoint receives a signal that its peer
is closing or draining.  While otherwise identical to the closing state, an
endpoint in the draining state MUST NOT send any packets.  Retaining packet
protection keys is unnecessary once a connection is in the draining state.</t>
        <t>An endpoint MAY transition from the closing period to the draining period if it
receives a CONNECTION_CLOSE frame or stateless reset, both of which indicate
that the peer is also closing or draining.  The draining period SHOULD end when
the closing period would have ended.  In other words, the endpoint can use the
same end time, but cease retransmission of the closing packet.</t>
        <t>Disposing of connection state prior to the end of the closing or draining period
could cause delayed or reordered packets to generate an unnecessary stateless
reset. Endpoints that have some alternative means to ensure that late-arriving
packets on the connection do not induce a response, such as those that are able
to close the UDP socket, MAY use an abbreviated draining period which can allow
for faster resource recovery.  Servers that retain an open socket for accepting
new connections SHOULD NOT exit the closing or draining period early.</t>
        <t>Once the closing or draining period has ended, an endpoint SHOULD discard all
connection state.  This results in new packets on the connection being handled
generically.  For instance, an endpoint MAY send a stateless reset in response
to any further incoming packets.</t>
        <t>The draining and closing periods do not apply when a stateless reset
(<xref target="stateless-reset" format="default"/>) is sent.</t>
        <t>An endpoint is not expected to handle key updates when it is closing or
draining.  A key update might prevent the endpoint from moving from the closing
state to draining, but it otherwise has no impact.</t>
        <t>While in the closing period, an endpoint could receive packets from a new source
address, indicating a connection migration (<xref target="migration" format="default"/>). An endpoint in the
closing state MUST strictly limit the number of packets it sends to this new
address until the address is validated (see <xref target="migrate-validate" format="default"/>). A server in
the closing state MAY instead choose to discard packets received from a new
source address.</t>
      </section>
      <section anchor="idle-timeout" numbered="true" toc="default">
        <name>Idle Timeout</name>
        <t>If the idle timeout is enabled by either peer, a connection is silently closed
and its state is discarded when it remains idle for longer than the minimum of
the max_idle_timeouts (see <xref target="transport-parameter-definitions" format="default"/>) and three times
the current Probe Timeout (PTO).</t>
        <t>Each endpoint advertises a max_idle_timeout, but the effective value
at an endpoint is computed as the minimum of the two advertised values. By
announcing a max_idle_timeout, an endpoint commits to initiating an immediate
close (<xref target="immediate-close" format="default"/>) if it abandons the connection prior to the effective
value.</t>
        <t>An endpoint restarts its idle timer when a packet from its peer is received
and processed successfully.  The idle timer is also restarted when sending
an ack-eliciting packet (see <xref target="QUIC-RECOVERY" format="default"/>), but only if no other
ack-eliciting packets have been sent since last receiving a packet.  Restarting
when sending packets ensures that connections do not prematurely time out when
initiating new activity.  An endpoint might need to send packets to avoid an
idle timeout if it is unable to send application data due to being blocked on
flow control limits; see <xref target="flow-control" format="default"/>.</t>
        <t>An endpoint that sends packets near the end of the idle timeout period
risks having those packets discarded if its peer enters the draining state
before the packets arrive.  If a peer could time out within a Probe Timeout
(PTO; see Section 6.6 of <xref target="QUIC-RECOVERY" format="default"/>), it is advisable to test for
liveness before sending any data that cannot be retried safely.  Note that it
is likely that only applications or application protocols will know what
information can be retried.</t>
      </section>
      <section anchor="immediate-close" numbered="true" toc="default">
        <name>Immediate Close</name>
        <t>An endpoint sends a CONNECTION_CLOSE frame (<xref target="frame-connection-close" format="default"/>) to
terminate the connection immediately.  A CONNECTION_CLOSE frame causes all
streams to immediately become closed; open streams can be assumed to be
implicitly reset.</t>
        <t>After sending a CONNECTION_CLOSE frame, an endpoint immediately enters the
closing state.</t>
        <t>During the closing period, an endpoint that sends a CONNECTION_CLOSE frame
SHOULD respond to any incoming packet that can be decrypted with another packet
containing a CONNECTION_CLOSE frame.  Such an endpoint SHOULD limit the number
of packets it generates containing a CONNECTION_CLOSE frame.  For instance, an
endpoint could wait for a progressively increasing number of received packets or
amount of time before responding to a received packet.</t>
        <t>An endpoint is allowed to drop the packet protection keys when entering the
closing period (<xref target="draining" format="default"/>) and send a packet containing a CONNECTION_CLOSE in
response to any UDP datagram that is received.  However, an endpoint without the
packet protection keys cannot identify and discard invalid packets.  To avoid
creating an unwitting amplification attack, such endpoints MUST reduce the
frequency with which it sends packets containing a CONNECTION_CLOSE frame.  To
minimize the state that an endpoint maintains for a closing connection,
endpoints MAY send the exact same packet.</t>
        <dl newline="false" spacing="normal">
          <dt>Note:</dt>
          <dd>
  Allowing retransmission of a closing packet contradicts other advice in this
document that recommends the creation of new packet numbers for every packet.
Sending new packet numbers is primarily of advantage to loss recovery and
congestion control, which are not expected to be relevant for a closed
connection.  Retransmitting the final packet requires less state.</dd>
        </dl>
        <t>New packets from unverified addresses could be used to create an amplification
attack (see <xref target="address-validation" format="default"/>).  To avoid this, endpoints MUST either limit
transmission of CONNECTION_CLOSE frames to validated addresses or drop packets
without response if the response would be more than three times larger than the
received packet.</t>
        <t>After receiving a CONNECTION_CLOSE frame, endpoints enter the draining state.
An endpoint that receives a CONNECTION_CLOSE frame MAY send a single packet
containing a CONNECTION_CLOSE frame before entering the draining state, using a
CONNECTION_CLOSE frame and a NO_ERROR code if appropriate.  An endpoint MUST NOT
send further packets, which could result in a constant exchange of
CONNECTION_CLOSE frames until the closing period on either peer ended.</t>
        <t>An immediate close can be used after an application protocol has arranged to
close a connection.  This might be after the application protocols negotiates a
graceful shutdown.  The application protocol exchanges whatever messages that
are needed to cause both endpoints to agree to close the connection, after which
the application requests that the connection be closed.  The application
protocol can use a CONNECTION_CLOSE frame with an appropriate error code to
signal closure.</t>
        <section anchor="immediate-close-hs" numbered="true" toc="default">
          <name>Immediate Close During the Handshake</name>
          <t>When sending CONNECTION_CLOSE, the goal is to ensure that the peer will process
the frame.  Generally, this means sending the frame in a packet with the highest
level of packet protection to avoid the packet being discarded.  After the
handshake is confirmed (see Section 4.1.2 of <xref target="QUIC-TLS" format="default"/>), an endpoint MUST
send any CONNECTION_CLOSE frames in a 1-RTT packet.  However, prior to
confirming the handshake, it is possible that more advanced packet protection
keys are not available to the peer, so the frame MAY be replicated in a packet
that uses a lower packet protection level.</t>
          <t>A client will always know whether the server has Handshake keys (see
<xref target="discard-initial" format="default"/>), but it is possible that a server does not know whether the
client has Handshake keys.  Under these circumstances, a server SHOULD send a
CONNECTION_CLOSE frame in both Handshake and Initial packets to ensure that at
least one of them is processable by the client.  Similarly, a peer might be
unable to read 1-RTT packets, so an endpoint SHOULD send CONNECTION_CLOSE in
Handshake and 1-RTT packets prior to confirming the handshake.  These packets
can be coalesced into a single UDP datagram; see <xref target="packet-coalesce" format="default"/>.</t>
          <t>An endpoint might send a CONNECTION_CLOSE frame in an Initial packet or in
response to unauthenticated information received in Initial or Handshake
packets.  Such an immediate close might expose legitimate connections to a
denial of service.  QUIC does not include defensive measures for on-path attacks
during the handshake; see <xref target="handshake-dos" format="default"/>.  However, at the cost of reducing
feedback about errors for legitimate peers, some forms of denial of service can
be made more difficult for an attacker if endpoints discard illegal packets
rather than terminating a connection with CONNECTION_CLOSE.  For this reason,
endpoints MAY discard packets rather than immediately close if errors are
detected in packets that lack authentication.</t>
          <t>An endpoint that has not established state, such as a server that detects an
error in an Initial packet, does not enter the closing state.  An endpoint that
has no state for the connection does not enter a closing or draining period on
sending a CONNECTION_CLOSE frame.</t>
        </section>
      </section>
      <section anchor="stateless-reset" numbered="true" toc="default">
        <name>Stateless Reset</name>
        <t>A stateless reset is provided as an option of last resort for an endpoint that
does not have access to the state of a connection.  A crash or outage might
result in peers continuing to send data to an endpoint that is unable to
properly continue the connection.  An endpoint MAY send a stateless reset in
response to receiving a packet that it cannot associate with an active
connection.</t>
        <t>A stateless reset is not appropriate for signaling error conditions.  An
endpoint that wishes to communicate a fatal connection error MUST use a
CONNECTION_CLOSE frame if it has sufficient state to do so.</t>
        <t>To support this process, a token is sent by endpoints.  The token is carried in
the Stateless Reset Token field of a NEW_CONNECTION_ID frame.  Servers can also
specify a stateless_reset_token transport parameter during the handshake that
applies to the connection ID that it selected during the handshake; clients
cannot use this transport parameter because their transport parameters don't
have confidentiality protection.  These tokens are protected by encryption, so
only client and server know their value.  Tokens are invalidated when their
associated connection ID is retired via a RETIRE_CONNECTION_ID frame
(<xref target="frame-retire-connection-id" format="default"/>).</t>
        <t>An endpoint that receives packets that it cannot process sends a packet in the
following layout:</t>
        <figure anchor="fig-stateless-reset">
          <name>Stateless Reset Packet</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0|1|               Unpredictable Bits (38 ..)                ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                                                               +
|                                                               |
+                   Stateless Reset Token (128)                 +
|                                                               |
+                                                               +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>This design ensures that a stateless reset packet is - to the extent possible -
indistinguishable from a regular packet with a short header.</t>
        <t>A stateless reset uses an entire UDP datagram, starting with the first two bits
of the packet header.  The remainder of the first byte and an arbitrary number
of bytes following it that are set to unpredictable values.  The last 16 bytes
of the datagram contain a Stateless Reset Token.</t>
        <t>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 5 bytes, less the two fixed bits).</t>
        <t>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.</t>
        <t>These values assume that the Stateless Reset Token is the same as the minimum
expansion of the packet protection AEAD.  Additional unpredictable bytes are
necessary if the endpoint could have negotiated a packet protection scheme with
a larger minimum expansion.</t>
        <t>An endpoint MUST NOT send a stateless reset that is three times or more larger
than the packet it receives to avoid being used for amplification.
<xref target="reset-looping" format="default"/> describes additional limits on stateless reset size.</t>
        <t>Endpoints MUST discard packets that are too small to be valid QUIC packets.
With the set of AEAD functions defined in <xref target="QUIC-TLS" format="default"/>, packets that are smaller
than 21 bytes are never valid.</t>
        <t>Endpoints MUST send stateless reset packets formatted as a packet with a short
header.  However, endpoints MUST treat any packet ending in a valid stateless
reset token as a stateless reset, as other QUIC versions might allow the use of
a long header.</t>
        <t>An endpoint MAY send a stateless reset in response to a packet with a long
header.  Sending a stateless reset is not effective prior to the stateless reset
token being available to a peer.  In this QUIC version, packets with a long
header are only used during connection establishment.   Because the stateless
reset token is not available until connection establishment is complete or near
completion, ignoring an unknown packet with a long header might be as effective
as sending a stateless reset.</t>
        <t>An endpoint cannot determine the Source Connection ID from a packet with a short
header, therefore it cannot set the Destination Connection ID in the stateless
reset packet.  The Destination Connection ID will therefore differ from the
value used in previous packets.  A random Destination Connection ID makes the
connection ID appear to be the result of moving to a new connection ID that was
provided using a NEW_CONNECTION_ID frame (<xref target="frame-new-connection-id" format="default"/>).</t>
        <t>Using a randomized connection ID results in two problems:</t>
        <ul spacing="normal">
          <li>The packet might not reach the peer.  If the Destination Connection ID is
critical for routing toward the peer, then this packet could be incorrectly
routed.  This might also trigger another Stateless Reset in response; see
<xref target="reset-looping" format="default"/>.  A Stateless Reset that is not correctly routed is
an ineffective error detection and recovery mechanism.  In this
case, endpoints will need to rely on other methods - such as timers - to
detect that the connection has failed.</li>
          <li>The randomly generated connection ID can be used by entities other than the
peer to identify this as a potential stateless reset.  An endpoint that
occasionally uses different connection IDs might introduce some uncertainty
about this.</li>
        </ul>
        <t>This stateless reset design is specific to QUIC version 1.  An endpoint that
supports multiple versions of QUIC needs to generate a stateless reset that will
be accepted by peers that support any version that the endpoint might support
(or might have supported prior to losing state).  Designers of new versions of
QUIC need to be aware of this and either reuse this design, or use a portion of
the packet other than the last 16 bytes for carrying data.</t>
        <section anchor="detecting-a-stateless-reset" numbered="true" toc="default">
          <name>Detecting a Stateless Reset</name>
          <t>An endpoint detects a potential stateless reset using the trailing 16 bytes of
the UDP datagram.  An endpoint remembers all Stateless Reset Tokens associated
with the connection IDs and remote addresses for datagrams it has recently sent.
This includes Stateless Reset Tokens from NEW_CONNECTION_ID frames and the
server's transport parameters but excludes Stateless Reset Tokens associated
with connection IDs that are either unused or retired.  The endpoint identifies
a received datagram as a stateless reset by comparing the last 16 bytes of the
datagram with all Stateless Reset Tokens associated with the remote address on
which the datagram was received.</t>
          <t>This comparison can be performed for every inbound datagram.  Endpoints MAY skip
this check if any packet from a datagram is successfully processed.  However,
the comparison MUST be performed when the first packet in an incoming datagram
either cannot be associated with a connection, or cannot be decrypted.</t>
          <t>An endpoint MUST NOT check for any Stateless Reset Tokens associated with
connection IDs it has not used or for connection IDs that have been retired.</t>
          <t>When comparing a datagram to Stateless Reset Token values, endpoints MUST
perform the comparison without leaking information about the value of the token.
For example, performing this comparison in constant time protects the value of
individual Stateless Reset Tokens from information leakage through timing side
channels.  Another approach would be to store and compare the transformed values
of Stateless Reset Tokens instead of the raw token values, where the
transformation is defined as a cryptographically-secure pseudo-random function
using a secret key (e.g., block cipher, HMAC <xref target="RFC2104" format="default"/>). An endpoint is not
expected to protect information about whether a packet was successfully
decrypted, or the number of valid Stateless Reset Tokens.</t>
          <t>If the last 16 bytes of the datagram are identical in value to a Stateless Reset
Token, the endpoint MUST enter the draining period and not send any further
packets on this connection.</t>
        </section>
        <section anchor="reset-token" numbered="true" toc="default">
          <name>Calculating a Stateless Reset Token</name>
          <t>The stateless reset token MUST be difficult to guess.  In order to create a
Stateless Reset Token, an endpoint could randomly generate <xref target="RFC4086" format="default"/> a secret
for every connection that it creates.  However, this presents a coordination
problem when there are multiple instances in a cluster or a storage problem for
an endpoint that might lose state.  Stateless reset specifically exists to
handle the case where state is lost, so this approach is suboptimal.</t>
          <t>A single static key can be used across all connections to the same endpoint by
generating the proof using a second iteration of a preimage-resistant function
that takes a static key and the connection ID chosen by the endpoint (see
<xref target="connection-id" format="default"/>) as input.  An endpoint could use HMAC <xref target="RFC2104" format="default"/> (for
example, HMAC(static_key, connection_id)) or HKDF <xref target="RFC5869" format="default"/> (for example,
using the static key as input keying material, with the connection ID as salt).
The output of this function is truncated to 16 bytes to produce the Stateless
Reset Token for that connection.</t>
          <t>An endpoint that loses state can use the same method to generate a valid
Stateless Reset Token.  The connection ID comes from the packet that the
endpoint receives.</t>
          <t>This design relies on the peer always sending a connection ID in its packets so
that the endpoint can use the connection ID from a packet to reset the
connection.  An endpoint that uses this design MUST either use the same
connection ID length for all connections or encode the length of the connection
ID such that it can be recovered without state.  In addition, it cannot provide
a zero-length connection ID.</t>
          <t>Revealing the Stateless Reset Token allows any entity to terminate the
connection, so a value can only be used once.  This method for choosing the
Stateless Reset Token means that the combination of connection ID and static key
MUST NOT be used for another connection.  A denial of service attack is possible
if the same connection ID is used by instances that share a static key, or if an
attacker can cause a packet to be routed to an instance that has no state but
the same static key; see <xref target="reset-oracle" format="default"/>.  A connection ID from a connection
that is reset by revealing the Stateless Reset Token MUST NOT be reused for new
connections at nodes that share a static key.</t>
          <t>The same Stateless Reset Token MUST NOT be used for multiple connection IDs.
Endpoints are not required to compare new values against all previous values,
but a duplicate value MAY be treated as a connection error of type
PROTOCOL_VIOLATION.</t>
          <t>Note that Stateless Reset packets do not have any cryptographic protection.</t>
        </section>
        <section anchor="reset-looping" numbered="true" toc="default">
          <name>Looping</name>
          <t>The design of a Stateless Reset is such that without knowing the stateless reset
token it is indistinguishable from a valid packet.  For instance, if a server
sends a Stateless Reset to another server it might receive another Stateless
Reset in response, which could lead to an infinite exchange.</t>
          <t>An endpoint MUST ensure that every Stateless Reset that it sends is smaller than
the packet which triggered it, unless it maintains state sufficient to prevent
looping.  In the event of a loop, this results in packets eventually being too
small to trigger a response.</t>
          <t>An endpoint can remember the number of Stateless Reset packets that it has sent
and stop generating new Stateless Reset packets once a limit is reached.  Using
separate limits for different remote addresses will ensure that Stateless Reset
packets can be used to close connections when other peers or connections have
exhausted limits.</t>
          <t>Reducing the size of a Stateless Reset below 41 bytes means that the packet
could reveal to an observer that it is a Stateless Reset, depending upon the
length of the peer's connection IDs.  Conversely, refusing to send a Stateless
Reset in response to a small packet might result in Stateless Reset not being
useful in detecting cases of broken connections where only very small packets
are sent; such failures might only be detected by other means, such as timers.</t>
        </section>
      </section>
    </section>
    <section anchor="error-handling" numbered="true" toc="default">
      <name>Error Handling</name>
      <t>An endpoint that detects an error SHOULD signal the existence of that error to
its peer.  Both transport-level and application-level errors can affect an
entire connection (see <xref target="connection-errors" format="default"/>), while only application-level
errors can be isolated to a single stream (see <xref target="stream-errors" format="default"/>).</t>
      <t>The most appropriate error code (<xref target="error-codes" format="default"/>) SHOULD be included in the
frame that signals the error.  Where this specification identifies error
conditions, it also identifies the error code that is used; though these are
worded as requirements, different implementation strategies might lead to
different errors being reported.  In particular, an endpoint MAY use any
applicable error code when it detects an error condition; a generic error code
(such as PROTOCOL_VIOLATION or INTERNAL_ERROR) can always be used in place of
specific error codes.</t>
      <t>A stateless reset (<xref target="stateless-reset" format="default"/>) is not suitable for any error that can
be signaled with a CONNECTION_CLOSE or RESET_STREAM frame.  A stateless reset
MUST NOT be used by an endpoint that has the state necessary to send a frame on
the connection.</t>
      <section anchor="connection-errors" numbered="true" toc="default">
        <name>Connection Errors</name>
        <t>Errors that result in the connection being unusable, such as an obvious
violation of protocol semantics or corruption of state that affects an entire
connection, MUST be signaled using a CONNECTION_CLOSE frame
(<xref target="frame-connection-close" format="default"/>). An endpoint MAY close the connection in this
manner even if the error only affects a single stream.</t>
        <t>Application protocols can signal application-specific protocol errors using the
application-specific variant of the CONNECTION_CLOSE frame.  Errors that are
specific to the transport, including all those described in this document, are
carried in the QUIC-specific variant of the CONNECTION_CLOSE frame.</t>
        <t>A CONNECTION_CLOSE frame could be sent in a packet that is lost.  An endpoint
SHOULD be prepared to retransmit a packet containing a CONNECTION_CLOSE frame if
it receives more packets on a terminated connection. Limiting the number of
retransmissions and the time over which this final packet is sent limits the
effort expended on terminated connections.</t>
        <t>An endpoint that chooses not to retransmit packets containing a CONNECTION_CLOSE
frame risks a peer missing the first such packet.  The only mechanism available
to an endpoint that continues to receive data for a terminated connection is to
use the stateless reset process (<xref target="stateless-reset" format="default"/>).</t>
      </section>
      <section anchor="stream-errors" numbered="true" toc="default">
        <name>Stream Errors</name>
        <t>If an application-level error affects a single stream, but otherwise leaves the
connection in a recoverable state, the endpoint can send a RESET_STREAM frame
(<xref target="frame-reset-stream" format="default"/>) with an appropriate error code to terminate just the
affected stream.</t>
        <t>Resetting a stream without the involvement of the application protocol could
cause the application protocol to enter an unrecoverable state.  RESET_STREAM
MUST only be instigated by the application protocol that uses QUIC.</t>
        <t>The semantics of the application error code carried in RESET_STREAM are
defined by the application protocol.  Only the application protocol is able to
cause a stream to be terminated.  A local instance of the application protocol
uses a direct API call and a remote instance uses the STOP_SENDING frame, which
triggers an automatic RESET_STREAM.</t>
        <t>Application protocols SHOULD define rules for handling streams that are
prematurely cancelled by either endpoint.</t>
      </section>
    </section>
    <section anchor="packets-frames" numbered="true" toc="default">
      <name>Packets and Frames</name>
      <t>QUIC endpoints communicate by exchanging packets. Packets have confidentiality
and integrity protection (see <xref target="packet-protected" format="default"/>) and are carried in UDP
datagrams (see <xref target="packet-coalesce" format="default"/>).</t>
      <t>This version of QUIC uses the long packet header (see <xref target="long-header" format="default"/>) during
connection establishment.  Packets with the long header are Initial
(<xref target="packet-initial" format="default"/>), 0-RTT (<xref target="packet-0rtt" format="default"/>), Handshake (<xref target="packet-handshake" format="default"/>),
and Retry (<xref target="packet-retry" format="default"/>).  Version negotiation uses a version-independent
packet with a long header (see <xref target="packet-version" format="default"/>).</t>
      <t>Packets with the short header (<xref target="short-header" format="default"/>) are designed for minimal
overhead and are used after a connection is established and 1-RTT keys are
available.</t>
      <section anchor="packet-protected" numbered="true" toc="default">
        <name>Protected Packets</name>
        <t>All QUIC packets except Version Negotiation packets use authenticated
encryption with additional data (AEAD) <xref target="RFC5116" format="default"/> to provide confidentiality
and integrity protection.  Retry packets use AEAD to provide integrity
protection.  Details of packet protection are found in <xref target="QUIC-TLS" format="default"/>; this
section includes an overview of the process.</t>
        <t>Initial packets are protected using keys that are statically derived. This
packet protection is not effective confidentiality protection.  Initial
protection only exists to ensure that the sender of the packet is on the network
path. Any entity that receives the Initial packet from a client can recover the
keys necessary to remove packet protection or to generate packets that will be
successfully authenticated.</t>
        <t>All other packets are protected with keys derived from the cryptographic
handshake. The type of the packet from the long header or key phase from the
short header are used to identify which encryption level - and therefore the
keys - that are used. Packets protected with 0-RTT and 1-RTT keys are expected
to have confidentiality and data origin authentication; the cryptographic
handshake ensures that only the communicating endpoints receive the
corresponding keys.</t>
        <t>The packet number field contains a packet number, which has additional
confidentiality protection that is applied after packet protection is applied
(see <xref target="QUIC-TLS" format="default"/> for details).  The underlying packet number increases with
each packet sent in a given packet number space; see <xref target="packet-numbers" format="default"/> for
details.</t>
      </section>
      <section anchor="packet-coalesce" numbered="true" toc="default">
        <name>Coalescing Packets</name>
        <t>Initial (<xref target="packet-initial" format="default"/>), 0-RTT (<xref target="packet-0rtt" format="default"/>), and Handshake
(<xref target="packet-handshake" format="default"/>) packets contain a Length field, which determines the end
of the packet.  The length includes both the Packet Number and Payload
fields, both of which are confidentiality protected and initially of unknown
length. The length of the Payload field is learned once header protection is
removed.</t>
        <t>Using the Length field, a sender can coalesce multiple QUIC packets into one UDP
datagram.  This can reduce the number of UDP datagrams needed to complete the
cryptographic handshake and start sending data.  This can also be used to
construct PMTU probes (see <xref target="pmtu-probes-src-cid" format="default"/>).  Receivers MUST be able to
process coalesced packets.</t>
        <t>Coalescing packets in order of increasing encryption levels (Initial, 0-RTT,
Handshake, 1-RTT) makes it more likely the receiver will be able to process all
the packets in a single pass.  A packet with a short header does not include a
length, so it can only be the last packet included in a UDP datagram.  An
endpoint SHOULD NOT coalesce multiple packets at the same encryption level.</t>
        <t>Senders MUST NOT coalesce QUIC packets for different connections into a single
UDP datagram. Receivers SHOULD ignore any subsequent packets with a different
Destination Connection ID than the first packet in the datagram.</t>
        <t>Every QUIC packet that is coalesced into a single UDP datagram is separate and
complete.  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.</t>
        <t>Retry packets (<xref target="packet-retry" format="default"/>), Version Negotiation packets
(<xref target="packet-version" format="default"/>), and packets with a short header (<xref target="short-header" format="default"/>) do not
contain a Length field and so cannot be followed by other packets in the same
UDP datagram.  Note also that there is no situation where a Retry or Version
Negotiation packet is coalesced with another packet.</t>
      </section>
      <section anchor="packet-numbers" numbered="true" toc="default">
        <name>Packet Numbers</name>
        <t>The packet number is an integer in the range 0 to 2^62-1.  This number is used
in determining the cryptographic nonce for packet protection.  Each endpoint
maintains a separate packet number for sending and receiving.</t>
        <t>Packet numbers are limited to this range because they need to be representable
in whole in the Largest Acknowledged field of an ACK frame (<xref target="frame-ack" format="default"/>).
When present in a long or short header however, packet numbers are reduced and
encoded in 1 to 4 bytes (see <xref target="packet-encoding" format="default"/>).</t>
        <t>Version Negotiation (<xref target="packet-version" format="default"/>) and Retry (<xref target="packet-retry" format="default"/>) packets
do not include a packet number.</t>
        <t>Packet numbers are divided into 3 spaces in QUIC:</t>
        <ul spacing="normal">
          <li>Initial space: All Initial packets (<xref target="packet-initial" format="default"/>) are in this space.</li>
          <li>Handshake space: All Handshake packets (<xref target="packet-handshake" format="default"/>) are in this
space.</li>
          <li>Application data space: All 0-RTT and 1-RTT encrypted packets
(<xref target="packet-protected" format="default"/>) are in this space.</li>
        </ul>
        <t>As described in <xref target="QUIC-TLS" format="default"/>, each packet type uses different protection keys.</t>
        <t>Conceptually, a packet number space is the context in which a packet can be
processed and acknowledged.  Initial packets can only be sent with Initial
packet protection keys and acknowledged in packets which are also Initial
packets.  Similarly, Handshake packets are sent at the Handshake encryption
level and can only be acknowledged in Handshake packets.</t>
        <t>This enforces cryptographic separation between the data sent in the different
packet sequence number spaces.  Packet numbers in each space start at packet
number 0.  Subsequent packets sent in the same packet number space MUST increase
the packet number by at least one.</t>
        <t>0-RTT and 1-RTT data exist in the same packet number space to make loss recovery
algorithms easier to implement between the two packet types.</t>
        <t>A QUIC endpoint MUST NOT reuse a packet number within the same packet number
space in one connection.  If the packet number for sending reaches 2^62 - 1, the
sender MUST close the connection without sending a CONNECTION_CLOSE frame or any
further packets; an endpoint MAY send a Stateless Reset (<xref target="stateless-reset" format="default"/>) in
response to further packets that it receives.</t>
        <t>A receiver MUST discard a newly unprotected packet unless it is certain that it
has not processed another packet with the same packet number from the same
packet number space. Duplicate suppression MUST happen after removing packet
protection for the reasons described in Section 9.3 of <xref target="QUIC-TLS" format="default"/>. An
efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
<xref target="RFC4303" format="default"/>.</t>
        <t>Packet number encoding at a sender and decoding at a receiver are described in
<xref target="packet-encoding" format="default"/>.</t>
      </section>
      <section anchor="frames" numbered="true" toc="default">
        <name>Frames and Frame Types</name>
        <t>The payload of QUIC packets, after removing packet protection, consists of a
sequence of complete frames, as shown in <xref target="packet-frames" format="default"/>.  Version
Negotiation, Stateless Reset, and Retry packets do not contain frames.</t>
        <figure anchor="packet-frames">
          <name>QUIC Payload</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Frame 1 (*)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Frame 2 (*)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
                               ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Frame N (*)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>The payload of a packet that contains frames MUST contain at least one frame,
and MAY contain multiple frames and multiple frame types.  Frames always fit
within a single QUIC packet and cannot span multiple packets.</t>
        <t>Each frame begins with a Frame Type, indicating its type, followed by
additional type-dependent fields:</t>
        <figure anchor="frame-layout">
          <name>Generic Frame Layout</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                       Frame Type (i)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                   Type-Dependent Fields (*)                 ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>The frame types defined in this specification are listed in <xref target="frame-types" format="default"/>.
The Frame Type in ACK, STREAM, MAX_STREAMS, STREAMS_BLOCKED, and
CONNECTION_CLOSE frames is used to carry other frame-specific flags. For all
other frames, the Frame Type field simply identifies the frame.  These
frames are explained in more detail in <xref target="frame-formats" format="default"/>.</t>
        <table anchor="frame-types" align="center">
          <name>Frame Types</name>
          <thead>
            <tr>
              <th align="left">Type Value</th>
              <th align="left">Frame Type Name</th>
              <th align="left">Definition</th>
              <th align="left">Packets</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0x00</td>
              <td align="left">PADDING</td>
              <td align="left">
                <xref target="frame-padding" format="default"/></td>
              <td align="left">IH01</td>
            </tr>
            <tr>
              <td align="left">0x01</td>
              <td align="left">PING</td>
              <td align="left">
                <xref target="frame-ping" format="default"/></td>
              <td align="left">IH01</td>
            </tr>
            <tr>
              <td align="left">0x02 - 0x03</td>
              <td align="left">ACK</td>
              <td align="left">
                <xref target="frame-ack" format="default"/></td>
              <td align="left">IH_1</td>
            </tr>
            <tr>
              <td align="left">0x04</td>
              <td align="left">RESET_STREAM</td>
              <td align="left">
                <xref target="frame-reset-stream" format="default"/></td>
              <td align="left">__01</td>
            </tr>
            <tr>
              <td align="left">0x05</td>
              <td align="left">STOP_SENDING</td>
              <td align="left">
                <xref target="frame-stop-sending" format="default"/></td>
              <td align="left">__01</td>
            </tr>
            <tr>
              <td align="left">0x06</td>
              <td align="left">CRYPTO</td>
              <td align="left">
                <xref target="frame-crypto" format="default"/></td>
              <td align="left">IH_1</td>
            </tr>
            <tr>
              <td align="left">0x07</td>
              <td align="left">NEW_TOKEN</td>
              <td align="left">
                <xref target="frame-new-token" format="default"/></td>
              <td align="left">___1</td>
            </tr>
            <tr>
              <td align="left">0x08 - 0x0f</td>
              <td align="left">STREAM</td>
              <td align="left">
                <xref target="frame-stream" format="default"/></td>
              <td align="left">__01</td>
            </tr>
            <tr>
              <td align="left">0x10</td>
              <td align="left">MAX_DATA</td>
              <td align="left">
                <xref target="frame-max-data" format="default"/></td>
              <td align="left">__01</td>
            </tr>
            <tr>
              <td align="left">0x11</td>
              <td align="left">MAX_STREAM_DATA</td>
              <td align="left">
                <xref target="frame-max-stream-data" format="default"/></td>
              <td align="left">__01</td>
            </tr>
            <tr>
              <td align="left">0x12 - 0x13</td>
              <td align="left">MAX_STREAMS</td>
              <td align="left">
                <xref target="frame-max-streams" format="default"/></td>
              <td align="left">__01</td>
            </tr>
            <tr>
              <td align="left">0x14</td>
              <td align="left">DATA_BLOCKED</td>
              <td align="left">
                <xref target="frame-data-blocked" format="default"/></td>
              <td align="left">__01</td>
            </tr>
            <tr>
              <td align="left">0x15</td>
              <td align="left">STREAM_DATA_BLOCKED</td>
              <td align="left">
                <xref target="frame-stream-data-blocked" format="default"/></td>
              <td align="left">__01</td>
            </tr>
            <tr>
              <td align="left">0x16 - 0x17</td>
              <td align="left">STREAMS_BLOCKED</td>
              <td align="left">
                <xref target="frame-streams-blocked" format="default"/></td>
              <td align="left">__01</td>
            </tr>
            <tr>
              <td align="left">0x18</td>
              <td align="left">NEW_CONNECTION_ID</td>
              <td align="left">
                <xref target="frame-new-connection-id" format="default"/></td>
              <td align="left">__01</td>
            </tr>
            <tr>
              <td align="left">0x19</td>
              <td align="left">RETIRE_CONNECTION_ID</td>
              <td align="left">
                <xref target="frame-retire-connection-id" format="default"/></td>
              <td align="left">__01</td>
            </tr>
            <tr>
              <td align="left">0x1a</td>
              <td align="left">PATH_CHALLENGE</td>
              <td align="left">
                <xref target="frame-path-challenge" format="default"/></td>
              <td align="left">__01</td>
            </tr>
            <tr>
              <td align="left">0x1b</td>
              <td align="left">PATH_RESPONSE</td>
              <td align="left">
                <xref target="frame-path-response" format="default"/></td>
              <td align="left">__01</td>
            </tr>
            <tr>
              <td align="left">0x1c - 0x1d</td>
              <td align="left">CONNECTION_CLOSE</td>
              <td align="left">
                <xref target="frame-connection-close" format="default"/></td>
              <td align="left">IH_1*</td>
            </tr>
            <tr>
              <td align="left">0x1e</td>
              <td align="left">HANDSHAKE_DONE</td>
              <td align="left">
                <xref target="frame-handshake-done" format="default"/></td>
              <td align="left">___1</td>
            </tr>
          </tbody>
        </table>
        <t>The "Packets" column in <xref target="frame-types" format="default"/> does not form part of the IANA registry
(see <xref target="iana-frames" format="default"/>).  This column lists the types of packets that each
frame type can appear in, indicated by the following characters:</t>
        <dl newline="false" spacing="normal">
          <dt>I:</dt>
          <dd>
  Initial (<xref target="packet-initial" format="default"/>)</dd>
          <dt>H:</dt>
          <dd>
  Handshake (<xref target="packet-handshake" format="default"/>)</dd>
          <dt>0:</dt>
          <dd>
  0-RTT (<xref target="packet-0rtt" format="default"/>)</dd>
          <dt>1:</dt>
          <dd>
  1-RTT (<xref target="short-header" format="default"/>)</dd>
          <dt>*:</dt>
          <dd>
  A CONNECTION_CLOSE frame of type 0x1c can appear in Initial, Handshake, and
1-RTT packets, whereas a CONNECTION_CLOSE of type 0x1d can only appear in a
1-RTT packet.</dd>
        </dl>
        <t>Section 4 of <xref target="QUIC-TLS" format="default"/> provides more detail about these restrictions.  Note
that all frames can appear in 1-RTT packets.</t>
        <t>An endpoint MUST treat the receipt of a frame of unknown type as a connection
error of type FRAME_ENCODING_ERROR.</t>
        <t>All QUIC frames are idempotent in this version of QUIC.  That is, a valid
frame does not cause undesirable side effects or errors when received more
than once.</t>
        <t>The Frame Type field uses a variable length integer encoding (see
<xref target="integer-encoding" format="default"/>) with one exception.  To ensure simple and efficient
implementations of frame parsing, a frame type MUST use the shortest possible
encoding.  For frame types defined in this document, this means a single-byte
encoding, even though it is possible to encode these values as a two-, four-
or eight-byte variable length integer.  For instance, though 0x4001 is
a legitimate two-byte encoding for a variable-length integer with a value
of 1, PING frames are always encoded as a single byte with the value 0x01.
This rule applies to all current and future QUIC frame types.  An endpoint
MAY treat the receipt of a frame type that uses a longer encoding than
necessary as a connection error of type PROTOCOL_VIOLATION.</t>
      </section>
    </section>
    <section anchor="packetization" numbered="true" toc="default">
      <name>Packetization and Reliability</name>
      <t>A sender bundles one or more frames in a QUIC packet (see <xref target="frames" format="default"/>).</t>
      <t>A sender can minimize per-packet bandwidth and computational costs by bundling
as many frames as possible within a QUIC packet.  A sender MAY wait for a short
period of time to bundle multiple frames before sending a packet that is not
maximally packed, to avoid sending out large numbers of small packets.  An
implementation MAY use knowledge about application sending behavior or
heuristics to determine whether and for how long to wait.  This waiting period
is an implementation decision, and an implementation should be careful to delay
conservatively, since any delay is likely to increase application-visible
latency.</t>
      <t>Stream multiplexing is achieved by interleaving STREAM frames from multiple
streams into one or more QUIC packets.  A single QUIC packet can include
multiple STREAM frames from one or more streams.</t>
      <t>One of the benefits of QUIC is avoidance of head-of-line blocking across
multiple streams.  When a packet loss occurs, only streams with data in that
packet are blocked waiting for a retransmission to be received, while other
streams can continue making progress.  Note that when data from multiple streams
is bundled into a single QUIC packet, loss of that packet blocks all those
streams from making progress.  Implementations are advised to bundle as few
streams as necessary in outgoing packets without losing transmission efficiency
to underfilled packets.</t>
      <section anchor="processing" numbered="true" toc="default">
        <name>Packet Processing</name>
        <t>A packet MUST NOT be acknowledged until packet protection has been successfully
removed and all frames contained in the packet have been processed.  For STREAM
frames, this means the data has been enqueued in preparation to be received by
the application protocol, but it does not require that data is delivered and
consumed.</t>
        <t>Once the packet has been fully processed, a receiver acknowledges receipt by
sending one or more ACK frames containing the packet number of the received
packet.</t>
        <!-- TODO: Do we need to say anything about partial processing. And our
expectations about what implementations do with packets that have errors after
valid frames? -->
      </section>
      <section anchor="generating-acks" numbered="true" toc="default">
        <name>Generating Acknowledgements</name>
        <t>Endpoints acknowledge all packets they receive and process. However, only
ack-eliciting packets cause an ACK frame to be sent within the maximum ack
delay.  Packets that are not ack-eliciting are only acknowledged when an ACK
frame is sent for other reasons.</t>
        <t>When sending a packet for any reason, an endpoint should attempt to bundle an
ACK frame if one has not been sent recently. Doing so helps with timely loss
detection at the peer.</t>
        <t>In general, frequent feedback from a receiver improves loss and congestion
response, but this has to be balanced against excessive load generated by a
receiver that sends an ACK frame in response to every ack-eliciting packet.  The
guidance offered below seeks to strike this balance.</t>
        <section anchor="sending-acknowledgements" numbered="true" toc="default">
          <name>Sending ACK Frames</name>
          <t>Every packet SHOULD be acknowledged at least once, and ack-eliciting packets
MUST be acknowledged at least once within the maximum ack delay. An endpoint
communicates its maximum delay using the max_ack_delay transport parameter;
see <xref target="transport-parameter-definitions" format="default"/>.  max_ack_delay declares an explicit
contract: an endpoint promises to never intentionally 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 or
delayed retransmissions from the peer. For Initial and Handshake packets,
a max_ack_delay of 0 is used. The sender uses the receiver's <tt>max_ack_delay</tt>
value in determining timeouts for timer-based retransmission, as detailed in
Section 5.2.1 of <xref target="QUIC-RECOVERY" format="default"/>.</t>
          <t>An ACK frame SHOULD be generated for at least every second ack-eliciting packet.
This recommendation is in keeping with standard practice for TCP <xref target="RFC5681" format="default"/>.</t>
          <t>In order to assist loss detection at the sender, an endpoint SHOULD send an ACK
frame immediately on receiving an ack-eliciting packet that is out of order. The
endpoint MAY continue sending ACK frames immediately on each subsequently
received packet, but the endpoint SHOULD return to acknowledging every other
packet within a period of 1/8 x RTT, unless more ack-eliciting packets are
received out of order.  If every subsequent ack-eliciting packet arrives out of
order, then an ACK frame SHOULD be sent immediately for every received
ack-eliciting packet.</t>
          <t>Similarly, packets marked with the ECN Congestion Experienced (CE) codepoint in
the IP header SHOULD be acknowledged immediately, to reduce the peer's response
time to congestion events.</t>
          <t>As an optimization, a receiver MAY process multiple packets before sending any
ACK frames in response.  In this case the receiver can determine whether an
immediate or delayed acknowledgement should be generated after processing
incoming packets.</t>
          <t>Packets containing PADDING frames are considered to be in flight for congestion
control purposes <xref target="QUIC-RECOVERY" format="default"/>. Sending only PADDING frames might cause the
sender to become limited by the congestion controller with no acknowledgments
forthcoming from the receiver. Therefore, a sender SHOULD ensure that other
frames are sent in addition to PADDING frames to elicit acknowledgments from
the receiver.</t>
          <t>An endpoint that is only sending ACK frames will not receive acknowledgments
from its peer unless those acknowledgements are included in packets with
ack-eliciting frames.  An endpoint SHOULD bundle ACK frames with other frames
when there are new ack-eliciting packets to acknowledge.  When only
non-ack-eliciting packets need to be acknowledged, an endpoint MAY wait until an
ack-eliciting packet has been received to bundle an ACK frame with outgoing
frames.</t>
          <t>The algorithms in <xref target="QUIC-RECOVERY" format="default"/> are resilient to receivers that do not
follow guidance offered above. However, an implementor should only deviate from
these requirements after careful consideration of the performance implications
of doing so.</t>
          <t>Packets containing only ACK frames are not congestion controlled, so there are
limits on how frequently they can be sent.  An endpoint MUST NOT send more than
one ACK-frame-only packet in response to receiving an ack-eliciting packet.  An
endpoint MUST NOT send a non-ack-eliciting packet in response to a
non-ack-eliciting packet, even if there are packet gaps which precede the
received packet. Limiting ACK frames avoids an infinite feedback loop of
acknowledgements, which could prevent the connection from ever becoming idle.
However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
ACK frame.</t>
          <t>An endpoint SHOULD treat receipt of an acknowledgment for a packet it did not
send as a connection error of type PROTOCOL_VIOLATION, if it is able to detect
the condition.</t>
        </section>
        <section anchor="managing-ack-ranges" numbered="true" toc="default">
          <name>Managing ACK Ranges</name>
          <t>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.</t>
          <t>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.  An ACK frame is expected
to fit within a single QUIC packet.  If it does not, then older ranges
(those with the smallest packet numbers) are omitted.</t>
          <t><xref target="ack-tracking" format="default"/> and <xref target="ack-limiting" format="default"/> describe an exemplary approach for
determining what packets to acknowledge in each ACK frame.</t>
        </section>
        <section anchor="ack-tracking" numbered="true" toc="default">
          <name>Receiver Tracking of ACK Frames</name>
          <t>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.</t>
          <t>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.</t>
        </section>
        <section anchor="ack-limiting" numbered="true" toc="default">
          <name>Limiting ACK Ranges</name>
          <t>To limit ACK Ranges (see <xref target="ack-ranges" format="default"/>) to those that have not yet been
received by the sender, the receiver SHOULD track which ACK frames have been
acknowledged by its peer. The receiver SHOULD exclude already acknowledged
packets from future ACK frames whenever these packets would unnecessarily
contribute to the ACK frame size.  When the receiver is only sending
non-ack-eliciting packets, it can bundle a PING or other small ack-eliciting
frame with a fraction of them, such as once per round trip, to enable
dropping unnecessary ACK ranges and any state for previously sent packets.
The receiver MUST NOT bundle an ack-eliciting frame, such as a PING, with all
packets that would otherwise be non-ack-eliciting, in order to avoid an
infinite feedback loop of acknowledgements.</t>
          <t>To limit receiver state or the size of ACK frames, a receiver MAY limit the
number of ACK Ranges it sends.  A receiver can do this even without receiving
acknowledgment of its ACK frames, with the knowledge this could cause the sender
to unnecessarily retransmit some data.  Standard QUIC algorithms
(<xref target="QUIC-RECOVERY" format="default"/>) declare packets lost after sufficiently newer packets are
acknowledged.  Therefore, the receiver SHOULD repeatedly acknowledge newly
received packets in preference to packets received in the past.</t>
        </section>
        <section anchor="host-delay" numbered="true" toc="default">
          <name>Measuring and Reporting Host Delay</name>
          <t>An endpoint measures the delays intentionally introduced between the time
the packet with the largest packet number is received and the time an
acknowledgment is sent.  The endpoint encodes this delay in the Ack Delay
field of an ACK frame (see <xref target="frame-ack" format="default"/>). 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 it does not control when populating
the Ack Delay field in an ACK frame.</t>
        </section>
        <section anchor="ack-frames-and-packet-protection" numbered="true" toc="default">
          <name>ACK Frames and Packet Protection</name>
          <t>ACK frames MUST only be carried in a packet that has the same packet
number space as the packet being ACKed (see <xref target="packet-protected" format="default"/>). For
instance, packets that are protected with 1-RTT keys MUST be
acknowledged in packets that are also protected with 1-RTT keys.</t>
          <t>Packets that a client sends with 0-RTT packet protection MUST be acknowledged by
the server in packets protected by 1-RTT keys.  This can mean that the client is
unable to use these acknowledgments if the server cryptographic handshake
messages are delayed or lost.  Note that the same limitation applies to other
data sent by the server protected by the 1-RTT keys.</t>
        </section>
      </section>
      <section anchor="retransmission-of-information" numbered="true" toc="default">
        <name>Retransmission of Information</name>
        <t>QUIC packets that are determined to be lost are not retransmitted whole. The
same applies to the frames that are contained within lost packets. Instead, the
information that might be carried in frames is sent again in new frames as
needed.</t>
        <t>New frames and packets are used to carry information that is determined to have
been lost.  In general, information is sent again when a packet containing that
information is determined to be lost and sending ceases when a packet
containing that information is acknowledged.</t>
        <ul spacing="normal">
          <li>Data sent in CRYPTO frames is retransmitted according to the rules in
<xref target="QUIC-RECOVERY" format="default"/>, until all data has been acknowledged.  Data in CRYPTO
frames for Initial and Handshake packets is discarded when keys for the
corresponding encryption level are discarded.</li>
          <li>Application data sent in STREAM frames is retransmitted in new STREAM frames
unless the endpoint has sent a RESET_STREAM for that stream.  Once an endpoint
sends a RESET_STREAM frame, no further STREAM frames are needed.</li>
          <li>ACK frames carry the most recent set of acknowledgements and the Ack Delay
from the largest acknowledged packet, as described in
<xref target="sending-acknowledgements" format="default"/>. Delaying the transmission of packets
containing ACK frames or sending old ACK frames can cause the peer to
generate an inflated RTT sample or unnecessarily disable ECN.</li>
          <li>Cancellation of stream transmission, as carried in a RESET_STREAM frame, is
sent until acknowledged or until all stream data is acknowledged by the peer
(that is, either the "Reset Recvd" or "Data Recvd" state is reached on the
sending part of the stream). The content of a RESET_STREAM frame MUST NOT
change when it is sent again.</li>
          <li>Similarly, a request to cancel stream transmission, as encoded in a
STOP_SENDING frame, is sent until the receiving part of the stream enters
either a "Data Recvd" or "Reset Recvd" state; see
<xref target="solicited-state-transitions" format="default"/>.</li>
          <li>Connection close signals, including packets that contain CONNECTION_CLOSE
frames, are not sent again when packet loss is detected, but as described in
<xref target="termination" format="default"/>.</li>
          <li>The current connection maximum data is sent in MAX_DATA frames. An updated
value is sent in a MAX_DATA frame if the packet containing the most recently
sent MAX_DATA frame is declared lost, or when the endpoint decides to update
the limit.  Care is necessary to avoid sending this frame too often as the
limit can increase frequently and cause an unnecessarily large number of
MAX_DATA frames to be sent.</li>
          <li>The current maximum stream data offset is sent in MAX_STREAM_DATA frames.
Like MAX_DATA, an updated value is sent when the packet containing the most
recent MAX_STREAM_DATA frame for a stream is lost or when the limit is
updated, with care taken to prevent the frame from being sent too often. An
endpoint SHOULD stop sending MAX_STREAM_DATA frames when the receiving part of
the stream enters a "Size Known" state.</li>
          <li>The limit on streams of a given type is sent in MAX_STREAMS frames.  Like
MAX_DATA, an updated value is sent when a packet containing the most recent
MAX_STREAMS for a stream type frame is declared lost or when the limit is
updated, with care taken to prevent the frame from being sent too often.</li>
          <li>Blocked signals are carried in DATA_BLOCKED, STREAM_DATA_BLOCKED, and
STREAMS_BLOCKED frames. DATA_BLOCKED frames have connection scope,
STREAM_DATA_BLOCKED frames have stream scope, and STREAMS_BLOCKED frames are
scoped to a specific stream type. New frames are sent if packets containing
the most recent frame for a scope is lost, but only while the endpoint is
blocked on the corresponding limit. These frames always include the limit that
is causing blocking at the time that they are transmitted.</li>
          <li>A liveness or path validation check using PATH_CHALLENGE frames is sent
periodically until a matching PATH_RESPONSE frame is received or until there
is no remaining need for liveness or path validation checking. PATH_CHALLENGE
frames include a different payload each time they are sent.</li>
          <li>Responses to path validation using PATH_RESPONSE frames are sent just once.
The peer is expected to send more PATH_CHALLENGE frames as necessary to evoke
additional PATH_RESPONSE frames.</li>
          <li>New connection IDs are sent in NEW_CONNECTION_ID frames and retransmitted if
the packet containing them is lost.  Retransmissions of this frame carry the
same sequence number value.  Likewise, retired connection IDs are sent in
RETIRE_CONNECTION_ID frames and retransmitted if the packet containing them is
lost.</li>
          <li>NEW_TOKEN frames are retransmitted if the packet containing them is lost.  No
special support is made for detecting reordered and duplicated NEW_TOKEN
frames other than a direct comparison of the frame contents.</li>
          <li>PING and PADDING frames contain no information, so lost PING or PADDING frames
do not require repair.</li>
          <li>The HANDSHAKE_DONE frame MUST be retransmitted until it is acknowledged.</li>
        </ul>
        <t>Endpoints SHOULD prioritize retransmission of data over sending new data, unless
priorities specified by the application indicate otherwise (see
<xref target="stream-prioritization" format="default"/>).</t>
        <t>Even though a sender is encouraged to assemble frames containing up-to-date
information every time it sends a packet, it is not forbidden to retransmit
copies of frames from lost packets.  A sender that retransmits copies of frames
needs to handle decreases in available payload size due to change in packet
number length, connection ID length, and path MTU.  A receiver MUST accept
packets containing an outdated frame, such as a MAX_DATA frame carrying a
smaller maximum data than one found in an older packet.</t>
        <t>Upon detecting losses, a sender MUST take appropriate congestion control action.
The details of loss detection and congestion control are described in
<xref target="QUIC-RECOVERY" format="default"/>.</t>
      </section>
      <section anchor="ecn" numbered="true" toc="default">
        <name>Explicit Congestion Notification</name>
        <t>QUIC endpoints can use Explicit Congestion Notification (ECN) <xref target="RFC3168" format="default"/> to
detect and respond to network congestion.  ECN allows a network node to indicate
congestion in the network by setting a codepoint in the IP header of a packet
instead of dropping it.  Endpoints react to congestion by reducing their sending
rate in response, as described in <xref target="QUIC-RECOVERY" format="default"/>.</t>
        <t>To use ECN, QUIC endpoints first determine whether a path supports ECN marking
and the peer is able to access the ECN codepoint in the IP header.  A network
path does not support ECN if ECN marked packets get dropped or ECN markings are
rewritten on the path. An endpoint validates the use of ECN on the path, both
during connection establishment and when migrating to a new path
(<xref target="migration" format="default"/>).</t>
        <section anchor="ecn-counts" numbered="true" toc="default">
          <name>ECN Counts</name>
          <t>On receiving a QUIC packet with an ECT or CE codepoint, an ECN-enabled endpoint
that can access the ECN codepoints from the enclosing IP packet increases the
corresponding ECT(0), ECT(1), or CE count, and includes these counts in
subsequent ACK frames (see <xref target="generating-acks" format="default"/> and <xref target="frame-ack" format="default"/>).  Note
that this requires being able to read the ECN codepoints from the enclosing IP
packet, which is not possible on all platforms.</t>
          <t>A packet detected by a receiver as a duplicate does not affect the receiver's
local ECN codepoint counts; see (<xref target="security-ecn" format="default"/>) for relevant security
concerns.</t>
          <t>If an endpoint receives a QUIC packet without an ECT or CE codepoint in the IP
packet header, it responds per <xref target="generating-acks" format="default"/> with an ACK frame without
increasing any ECN counts.  If an endpoint does not implement ECN
support or does not have access to received ECN codepoints, it does not increase
ECN counts.</t>
          <t>Coalesced packets (see <xref target="packet-coalesce" format="default"/>) mean that several packets can share
the same IP header.  The ECN counter for the ECN codepoint received in the
associated IP header are incremented once for each QUIC packet, not per
enclosing IP packet or UDP datagram.</t>
          <t>Each packet number space maintains separate acknowledgement state and separate
ECN counts.  For example, if one each of an Initial, 0-RTT, Handshake, and 1-RTT
QUIC packet are coalesced, the corresponding counts for the Initial and
Handshake packet number space will be incremented by one and the counts for the
1-RTT packet number space will be increased by two.</t>
        </section>
        <section anchor="ecn-validation" numbered="true" toc="default">
          <name>ECN Validation</name>
          <t>It is possible for faulty network devices to corrupt or erroneously drop packets
with ECN markings.  To provide robust connectivity in the presence of such
devices, each endpoint independently validates ECN counts and disables ECN if
errors are detected.</t>
          <t>Endpoints validate ECN for packets sent on each network path independently.  An
endpoint thus validates ECN on new connection establishment, when switching to a
new server preferred address, and on active connection migration to a new path.
<xref target="ecn-alg" format="default"/> describes one possible algorithm for testing paths for ECN support.</t>
          <t>Even if an endpoint does not use ECN markings on packets it transmits, the
endpoint MUST provide feedback about ECN markings received from the peer if they
are accessible.  Failing to report ECN counts will cause the peer to disable ECN
marking.</t>
          <section anchor="sending-ecn-markings" numbered="true" toc="default">
            <name>Sending ECN Markings</name>
            <t>To start ECN validation, an endpoint SHOULD do the following when sending
packets on a new path to a peer:</t>
            <ul spacing="normal">
              <li>Set the ECT(0) codepoint in the IP header of early outgoing packets sent on a
new path to the peer <xref target="RFC8311" format="default"/>.</li>
              <li>If all packets that were sent with the ECT(0) codepoint are eventually deemed
lost <xref target="QUIC-RECOVERY" format="default"/>, validation is deemed to have failed.</li>
            </ul>
            <t>To reduce the chances of misinterpreting congestive loss as packets dropped by a
faulty network element, an endpoint could set the ECT(0) codepoint in the first
ten outgoing packets on a path, or for a period of three RTTs, whichever occurs
first.</t>
            <t>Implementations MAY experiment with and use other strategies for use of ECN.
Other methods of probing paths for ECN support are possible, as are different
marking strategies.  Implementations can also use the ECT(1) codepoint, as
specified in <xref target="RFC8311" format="default"/>.</t>
          </section>
          <section anchor="ecn-ack" numbered="true" toc="default">
            <name>Receiving ACK Frames</name>
            <t>An endpoint that sets ECT(0) or ECT(1) codepoints on packets it transmits MUST
use the following steps on receiving an ACK frame to validate ECN.</t>
            <ul spacing="normal">
              <li>If this ACK frame newly acknowledges a packet that the endpoint sent with
either ECT(0) or ECT(1) codepoints set, and if no ECN feedback is present in
the ACK frame, validation fails.  This step protects against both a network
element that zeroes out ECN bits and a peer that is unable to access ECN
markings, since the peer could respond without ECN feedback in these cases.</li>
              <li>For validation to succeed, the total increase in ECT(0), ECT(1), and CE counts
MUST be no smaller than the total number of QUIC packets sent with an ECT
codepoint that are newly acknowledged in this ACK frame.  This step detects
any network remarking from ECT(0), ECT(1), or CE codepoints to Not-ECT.</li>
              <li>Any increase in either ECT(0) or ECT(1) counts, plus any increase in the CE
count, MUST be no smaller than the number of packets sent with the
corresponding ECT codepoint that are newly acknowledged in this ACK frame.
This step detects any erroneous network remarking from ECT(0) to ECT(1) (or
vice versa).</li>
            </ul>
            <t>Processing ECN counts out of order can result in validation failure.  An
endpoint SHOULD NOT perform this validation if this ACK frame does not advance
the largest packet number acknowledged in this connection.</t>
            <t>An endpoint could miss acknowledgements for a packet when ACK frames are lost.
It is therefore possible for the total increase in ECT(0), ECT(1), and CE counts
to be greater than the number of packets acknowledged in an ACK frame.  When
this happens, and if validation succeeds, the local reference counts MUST be
increased to match the counts in the ACK frame.</t>
          </section>
          <section anchor="validation-outcomes" numbered="true" toc="default">
            <name>Validation Outcomes</name>
            <t>If validation fails, then the endpoint stops sending ECN markings in subsequent
IP packets with the expectation that either the network path or the peer does
not support ECN.</t>
            <t>Upon successful validation, an endpoint can continue to set ECT codepoints in
subsequent packets with the expectation that the path is ECN-capable.  Network
routing and path elements can change mid-connection however; an endpoint MUST
disable ECN if validation fails at any point in the connection.</t>
            <t>Even if validation fails, an endpoint MAY revalidate ECN on the same path at any
later time in the connection.</t>
          </section>
        </section>
      </section>
    </section>
    <section anchor="packet-size" numbered="true" toc="default">
      <name>Packet Size</name>
      <t>The QUIC packet size includes the QUIC header and protected payload, but not the
UDP or IP header.</t>
      <t>A client MUST expand the payload of all UDP datagrams carrying Initial packets
to at least 1200 bytes, by adding PADDING frames to the Initial packet or by
coalescing the Initial packet (see <xref target="packet-coalesce" format="default"/>). Sending a UDP datagram
of this size ensures that the network path from the client to the server
supports a reasonable Maximum Transmission Unit (MTU).  Padding datagrams also
helps reduce the amplitude of amplification attacks caused by server responses
toward an unverified client address; see <xref target="address-validation" format="default"/>.</t>
      <t>Datagrams containing Initial packets MAY exceed 1200 bytes if the client
believes that the Path Maximum Transmission Unit (PMTU) supports the size that
it chooses.</t>
      <t>UDP datagrams MUST NOT be fragmented at the IP layer.  In IPv4
<xref target="IPv4" format="default"/>, the DF bit MUST be set to prevent fragmentation on the path.</t>
      <t>A server MUST discard an Initial packet that is carried in a UDP datagram that
is smaller than 1200 bytes.  A server MAY also immediately close the connection
by sending a CONNECTION_CLOSE frame with an error code of PROTOCOL_VIOLATION;
see <xref target="immediate-close-hs" format="default"/>.</t>
      <t>The server MUST also limit the number of bytes it sends before validating the
address of the client; see <xref target="address-validation" format="default"/>.</t>
      <section anchor="path-maximum-transmission-unit-pmtu" numbered="true" toc="default">
        <name>Path Maximum Transmission Unit (PMTU)</name>
        <t>The PMTU is the maximum size of the entire IP packet including the IP header,
UDP header, and UDP payload.  The UDP payload includes the QUIC packet header,
protected payload, and any authentication fields. The PMTU can depend upon the
current path characteristics.  Therefore, the current largest UDP payload an
implementation will send is referred to as the QUIC maximum packet size.</t>
        <t>QUIC depends on a PMTU of at least 1280 bytes. This is the IPv6 minimum size
<xref target="RFC8200" format="default"/> and is also supported by most modern IPv4 networks.  All QUIC
packets (except for PMTU probe packets) SHOULD be sized to fit within the
maximum packet size to avoid the packet being fragmented or dropped
<xref target="RFC8085" format="default"/>.</t>
        <t>An endpoint SHOULD use Datagram Packetization Layer PMTU Discovery
(<xref target="DPLPMTUD" format="default"/>) or implement Path MTU Discovery
(PMTUD) <xref target="RFC1191" format="default"/> <xref target="RFC8201" format="default"/> to determine whether the path to a destination
will support a desired message size without fragmentation.</t>
        <t>In the absence of these mechanisms, QUIC endpoints SHOULD NOT send IP packets
larger than 1280 bytes. Assuming the minimum IP header size, this results in a
QUIC maximum packet size of 1232 bytes for IPv6 and 1252 bytes for IPv4. A QUIC
implementation MAY be more conservative in computing the QUIC maximum packet
size to allow for unknown tunnel overheads or IP header options/extensions.</t>
        <t>Each pair of local and remote addresses could have a different PMTU.  QUIC
implementations that implement any kind of PMTU discovery therefore SHOULD
maintain a maximum packet size for each combination of local and remote IP
addresses.</t>
        <t>If a QUIC endpoint determines that the PMTU between any pair of local and remote
IP addresses has fallen below the size needed to support the smallest allowed
maximum packet size, it MUST immediately cease sending QUIC packets, except for
PMTU probe packets, on the affected path.  An endpoint MAY terminate the
connection if an alternative path cannot be found.</t>
      </section>
      <section anchor="icmp-pmtud" numbered="true" toc="default">
        <name>ICMP Packet Too Big Messages</name>
        <t>PMTU discovery <xref target="RFC1191" format="default"/> <xref target="RFC8201" format="default"/> relies on reception of ICMP messages
(e.g., IPv6 Packet Too Big messages) that indicate when a packet is dropped
because it is larger than the local router MTU. DPLPMTUD can also optionally use
these messages.  This use of ICMP messages is potentially vulnerable to off-path
attacks that successfully guess the addresses used on the path and reduce the
PMTU to a bandwidth-inefficient value.</t>
        <t>An endpoint MUST ignore an ICMP message that claims the PMTU has decreased below
1280 bytes.</t>
        <t>The requirements for generating ICMP (<xref target="RFC1812" format="default"/>, <xref target="RFC4443" format="default"/>) state that the
quoted packet should contain as much of the original packet as possible without
exceeding the minimum MTU for the IP version.  The size of the quoted packet can
actually be smaller, or the information unintelligible, as described in Section
1.1 of <xref target="DPLPMTUD" format="default"/>.</t>
        <t>QUIC endpoints SHOULD validate ICMP messages to protect from off-path injection
as specified in <xref target="RFC8201" format="default"/> and Section 5.2 of <xref target="RFC8085" format="default"/>. This validation
SHOULD use the quoted packet supplied in the payload of an ICMP message to
associate the message with a corresponding transport connection <xref target="DPLPMTUD" format="default"/>.</t>
        <t>ICMP message validation MUST include matching IP addresses and UDP ports
<xref target="RFC8085" format="default"/> and, when possible, connection IDs to an active QUIC session.</t>
        <t>Further validation can also be provided:</t>
        <ul spacing="normal">
          <li>An IPv4 endpoint could set the Don't Fragment (DF) bit on a small proportion
of packets, so that most invalid ICMP messages arrive when there are no DF
packets outstanding, and can therefore be identified as spurious.</li>
          <li>An endpoint could store additional information from the IP or UDP headers to
use for validation (for example, the IP ID or UDP checksum).</li>
        </ul>
        <t>The endpoint SHOULD ignore all ICMP messages that fail validation.</t>
        <t>An endpoint MUST NOT increase PMTU based on ICMP messages.  Any reduction in the
QUIC maximum packet size MAY be provisional until QUIC's loss detection
algorithm determines that the quoted packet has actually been lost.</t>
      </section>
      <section anchor="datagram-packetization-layer-pmtu-discovery" numbered="true" toc="default">
        <name>Datagram Packetization Layer PMTU Discovery</name>
        <t>Section 6.3 of <xref target="DPLPMTUD" format="default"/> provides considerations for implementing Datagram
Packetization Layer PMTUD (DPLPMTUD) with QUIC.</t>
        <t>When implementing the algorithm in Section 5 of <xref target="DPLPMTUD" format="default"/>, the initial
value of BASE_PMTU SHOULD be consistent with the minimum QUIC packet size (1232
bytes for IPv6 and 1252 bytes for IPv4).</t>
        <t>PING and PADDING frames can be used to generate PMTU probe packets. These frames
might not be retransmitted if a probe packet containing them is lost.  However,
these frames do consume congestion window, which could delay the transmission of
subsequent application data.</t>
        <t>A PING frame can be included in a PMTU probe to ensure that a valid probe is
acknowledged.</t>
        <t>The considerations for processing ICMP messages in the previous section also
apply if these messages are used by DPLPMTUD.</t>
        <section anchor="pmtu-probes-src-cid" numbered="true" toc="default">
          <name>PMTU Probes Containing Source Connection ID</name>
          <t>Endpoints that rely on the destination connection ID for routing QUIC packets
are likely to require that the connection ID be included in PMTU probe packets
to route any resulting ICMP messages (<xref target="icmp-pmtud" format="default"/>) back to the correct
endpoint.  However, only long header packets (<xref target="long-header" format="default"/>) contain source
connection IDs, and long header packets are not decrypted or acknowledged by
the peer once the handshake is complete.  One way to construct a PMTU probe is
to coalesce (see <xref target="packet-coalesce" format="default"/>) a Handshake packet (<xref target="packet-handshake" format="default"/>)
with a short header packet in a single UDP datagram.  If the UDP datagram
reaches the endpoint, the Handshake packet will be ignored, but the short header
packet will be acknowledged.  If the UDP datagram elicits an ICMP message, that
message will likely contain the source connection ID within the quoted portion
of the UDP datagram.</t>
        </section>
      </section>
    </section>
    <section anchor="versions" numbered="true" toc="default">
      <name>Versions</name>
      <t>QUIC versions are identified using a 32-bit unsigned number.</t>
      <t>The version 0x00000000 is reserved to represent version negotiation.  This
version of the specification is identified by the number 0x00000001.</t>
      <t>Other versions of QUIC might have different properties to this version.  The
properties of QUIC that are guaranteed to be consistent across all versions of
the protocol are described in <xref target="QUIC-INVARIANTS" format="default"/>.</t>
      <t>Version 0x00000001 of QUIC uses TLS as a cryptographic handshake protocol, as
described in <xref target="QUIC-TLS" format="default"/>.</t>
      <t>Versions with the most significant 16 bits of the version number cleared are
reserved for use in future IETF consensus documents.</t>
      <t>Versions that follow the pattern 0x?a?a?a?a are reserved for use in forcing
version negotiation to be exercised.  That is, any version number where the low
four bits of all bytes is 1010 (in binary).  A client or server MAY advertise
support for any of these reserved versions.</t>
      <t>Reserved version numbers will never represent a real protocol; a client MAY use
one of these version numbers with the expectation that the server will initiate
version negotiation; a server MAY advertise support for one of these versions
and can expect that clients ignore the value.</t>
      <t>[[RFC editor: please remove the remainder of this section before
publication.]]</t>
      <t>The version number for the final version of this specification (0x00000001), is
reserved for the version of the protocol that is published as an RFC.</t>
      <t>Version numbers used to identify IETF drafts are created by adding the draft
number to 0xff000000.  For example, draft-ietf-quic-transport-13 would be
identified as 0xff00000D.</t>
      <t>Implementors are encouraged to register version numbers of QUIC that they are
using for private experimentation on the GitHub wiki at
&lt;https://github.com/quicwg/base-drafts/wiki/QUIC-Versions&gt;.</t>
    </section>
    <section anchor="integer-encoding" numbered="true" toc="default">
      <name>Variable-Length Integer Encoding</name>
      <t>QUIC packets and frames commonly use a variable-length encoding for non-negative
integer values.  This encoding ensures that smaller integer values need fewer
bytes to encode.</t>
      <t>The QUIC variable-length integer encoding reserves the two most significant bits
of the first byte to encode the base 2 logarithm of the integer encoding length
in bytes.  The integer value is encoded on the remaining bits, in network byte
order.</t>
      <t>This means that integers are encoded on 1, 2, 4, or 8 bytes and can encode 6,
14, 30, or 62 bit values respectively.  <xref target="integer-summary" format="default"/> summarizes the
encoding properties.</t>
      <table anchor="integer-summary" align="center">
        <name>Summary of Integer Encodings</name>
        <thead>
          <tr>
            <th align="left">2Bit</th>
            <th align="left">Length</th>
            <th align="left">Usable Bits</th>
            <th align="left">Range</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">00</td>
            <td align="left">1</td>
            <td align="left">6</td>
            <td align="left">0-63</td>
          </tr>
          <tr>
            <td align="left">01</td>
            <td align="left">2</td>
            <td align="left">14</td>
            <td align="left">0-16383</td>
          </tr>
          <tr>
            <td align="left">10</td>
            <td align="left">4</td>
            <td align="left">30</td>
            <td align="left">0-1073741823</td>
          </tr>
          <tr>
            <td align="left">11</td>
            <td align="left">8</td>
            <td align="left">62</td>
            <td align="left">0-4611686018427387903</td>
          </tr>
        </tbody>
      </table>
      <t>For example, the eight byte sequence c2 19 7c 5e ff 14 e8 8c (in hexadecimal)
decodes to the decimal value 151288809941952652; the four byte sequence 9d 7f 3e
7d decodes to 494878333; the two byte sequence 7b bd decodes to 15293; and the
single byte 25 decodes to 37 (as does the two byte sequence 40 25).</t>
      <t>Error codes (<xref target="error-codes" format="default"/>) and versions (<xref target="versions" format="default"/>) are described using
integers, but do not use this encoding.</t>
    </section>
    <section anchor="packet-formats" numbered="true" toc="default">
      <name>Packet Formats</name>
      <t>All numeric values are encoded in network byte order (that is, big-endian) and
all field sizes are in bits.  Hexadecimal notation is used for describing the
value of fields.</t>
      <section anchor="packet-encoding" numbered="true" toc="default">
        <name>Packet Number Encoding and Decoding</name>
        <t>Packet numbers are integers in the range 0 to 2^62-1 (<xref target="packet-numbers" format="default"/>).  When
present in long or short packet headers, they are encoded in 1 to 4 bytes.  The
number of bits required to represent the packet number is reduced by including
the least significant bits of the packet number.</t>
        <t>The encoded packet number is protected as described in Section 5.4 of
<xref target="QUIC-TLS" format="default"/>.</t>
        <t>The sender MUST use a packet number size able to represent more than twice as
large a range than the difference between the largest acknowledged packet and
packet number being sent.  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.</t>
        <t>As a result, the size of the packet number encoding is at least one bit more
than the base-2 logarithm of the number of contiguous unacknowledged packet
numbers, including the new packet.</t>
        <t>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.</t>
        <t>At a receiver, protection of the packet number is removed prior to recovering
the full packet number. The full packet number is then reconstructed based on
the number of significant bits present, the value of those bits, and the largest
packet number received on a successfully authenticated packet. Recovering the
full packet number is necessary to successfully remove packet protection.</t>
        <t>Once header protection is removed, the packet number is decoded by finding the
packet number value that is closest to the next expected packet.  The next
expected packet is the highest received packet number plus one.  For example, if
the highest successfully authenticated packet had a packet number of 0xa82f30ea,
then a packet containing a 16-bit value of 0x9b32 will be decoded as 0xa82f9b32.
Example pseudo-code for packet number decoding can be found in
<xref target="sample-packet-number-decoding" format="default"/>.</t>
      </section>
      <section anchor="long-header" numbered="true" toc="default">
        <name>Long Header Packets</name>
        <figure anchor="fig-long-header">
          <name>Long Header Packet Format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+
|1|1|T T|X X X X|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         Version (32)                          |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| DCID Len (8)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|               Destination Connection ID (0..160)            ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| SCID Len (8)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                 Source Connection ID (0..160)               ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>Long headers are used for packets that are sent prior to the establishment
of 1-RTT keys. Once 1-RTT keys are available,
a sender switches to sending packets using the short header
(<xref target="short-header" format="default"/>).  The long form allows for special packets - such as the
Version Negotiation packet - to be represented in this uniform fixed-length
packet format. Packets that use the long header contain the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Header Form:</dt>
          <dd>
  The most significant bit (0x80) of byte 0 (the first byte) is set to 1 for
long headers.</dd>
          <dt>Fixed Bit:</dt>
          <dd>
  The next bit (0x40) of byte 0 is set to 1.  Packets containing a zero value
for this bit are not valid packets in this version and MUST be discarded.</dd>
          <dt>Long Packet Type (T):</dt>
          <dd>
  The next two bits (those with a mask of 0x30) of byte 0 contain a packet type.
Packet types are listed in <xref target="long-packet-types" format="default"/>.</dd>
          <dt>Type-Specific Bits (X):</dt>
          <dd>
  The lower four bits (those with a mask of 0x0f) of byte 0 are type-specific.</dd>
          <dt>Version:</dt>
          <dd>
  The QUIC Version is a 32-bit field that follows the first byte.  This field
indicates which version of QUIC is in use and determines how the rest of the
protocol fields are interpreted.</dd>
          <dt>DCID Len:</dt>
          <dd>
  The byte following the version contains the length in bytes of the Destination
Connection ID field that follows it.  This length is encoded as an 8-bit
unsigned integer.  In QUIC version 1, this value MUST NOT exceed 20.
Endpoints that receive a version 1 long header with a value larger than
20 MUST drop the packet. Servers SHOULD be able to read longer connection IDs
from other QUIC versions in order to properly form a version negotiation
packet.</dd>
          <dt>Destination Connection ID:</dt>
          <dd>
  The Destination Connection ID field follows the DCID Len and is between 0 and
20 bytes in length. <xref target="negotiating-connection-ids" format="default"/> describes the use of this
field in more detail.</dd>
          <dt>SCID Len:</dt>
          <dd>
  The byte following the Destination Connection ID contains the length in bytes
of the Source Connection ID field that follows it.  This length is encoded as
a 8-bit unsigned integer.  In QUIC version 1, this value MUST NOT exceed 20
bytes. Endpoints that receive a version 1 long header with a value larger than
20 MUST drop the packet. Servers SHOULD be able to read longer connection IDs
from other QUIC versions in order to properly form a version negotiation
packet.</dd>
          <dt>Source Connection ID:</dt>
          <dd>
  The Source Connection ID field follows the SCID Len and is between 0 and 20
bytes in length. <xref target="negotiating-connection-ids" format="default"/> describes the use of this
field in more detail.</dd>
        </dl>
        <t>In this version of QUIC, the following packet types with the long header are
defined:</t>
        <table anchor="long-packet-types" align="center">
          <name>Long Header Packet Types</name>
          <thead>
            <tr>
              <th align="right">Type</th>
              <th align="left">Name</th>
              <th align="left">Section</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="right">0x0</td>
              <td align="left">Initial</td>
              <td align="left">
                <xref target="packet-initial" format="default"/></td>
            </tr>
            <tr>
              <td align="right">0x1</td>
              <td align="left">0-RTT</td>
              <td align="left">
                <xref target="packet-0rtt" format="default"/></td>
            </tr>
            <tr>
              <td align="right">0x2</td>
              <td align="left">Handshake</td>
              <td align="left">
                <xref target="packet-handshake" format="default"/></td>
            </tr>
            <tr>
              <td align="right">0x3</td>
              <td align="left">Retry</td>
              <td align="left">
                <xref target="packet-retry" format="default"/></td>
            </tr>
          </tbody>
        </table>
        <t>The header form bit, connection ID lengths byte, Destination and Source
Connection ID fields, and Version fields of a long header packet are
version-independent. The other fields in the first byte are version-specific.
See <xref target="QUIC-INVARIANTS" format="default"/> for details on how packets from different versions of
QUIC are interpreted.</t>
        <t>The interpretation of the fields and the payload are specific to a version and
packet type.  While type-specific semantics for this version are described in
the following sections, several long-header packets in this version of QUIC
contain these additional fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Reserved Bits (R):</dt>
          <dd>
  Two bits (those with a mask of 0x0c) of byte 0 are reserved across multiple
packet types.  These bits are protected using header protection (see Section
5.4 of <xref target="QUIC-TLS" format="default"/>). The value included prior to protection MUST be set to 0.
An endpoint MUST treat receipt of a packet that has a non-zero value for these
bits, after removing both packet and header protection, as a connection error
of type PROTOCOL_VIOLATION. Discarding such a packet after only removing
header protection can expose the endpoint to attacks (see Section 9.3 of
<xref target="QUIC-TLS" format="default"/>).</dd>
          <dt>Packet Number Length (P):</dt>
          <dd>
  In packet types which contain a Packet Number field, the least significant two
bits (those with a mask of 0x03) of byte 0 contain the length of the packet
number, encoded as an unsigned, two-bit integer that is one less than the
length of the packet number field in bytes.  That is, the length of the packet
number field is the value of this field, plus one.  These bits are protected
using header protection (see Section 5.4 of <xref target="QUIC-TLS" format="default"/>).</dd>
          <dt>Length:</dt>
          <dd>
  The length of the remainder of the packet (that is, the Packet Number and
Payload fields) in bytes, encoded as a variable-length integer
(<xref target="integer-encoding" format="default"/>).</dd>
          <dt>Packet Number:</dt>
          <dd>
  The packet number field is 1 to 4 bytes long. The packet number has
confidentiality protection separate from packet protection, as described in
Section 5.4 of <xref target="QUIC-TLS" format="default"/>. The length of the packet number field is encoded
in the Packet Number Length bits of byte 0 (see above).</dd>
        </dl>
        <section anchor="packet-version" numbered="true" toc="default">
          <name>Version Negotiation Packet</name>
          <t>A Version Negotiation packet is inherently not version-specific. Upon receipt by
a client, it will be identified as a Version Negotiation packet based on the
Version field having a value of 0.</t>
          <t>The Version Negotiation packet is a response to a client packet that contains a
version that is not supported by the server, and is only sent by servers.</t>
          <t>The layout of a Version Negotiation packet is:</t>
          <figure anchor="version-negotiation-format">
            <name>Version Negotiation Packet</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+
|1|  Unused (7) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Version (32)                         |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| DCID Len (8)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|               Destination Connection ID (0..2040)           ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| SCID Len (8)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                 Source Connection ID (0..2040)              ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    Supported Version 1 (32)                 ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                   [Supported Version 2 (32)]                ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
                               ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                   [Supported Version N (32)]                ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          </figure>
          <t>The value in the Unused field is selected randomly by the server.  Clients MUST
ignore the value of this field.  Servers SHOULD set the most significant bit of
this field (0x40) to 1 so that Version Negotiation packets appear to have the
Fixed Bit field.</t>
          <t>The Version field of a Version Negotiation packet MUST be set to 0x00000000.</t>
          <t>The server MUST include the value from the Source Connection ID field of the
packet it receives in the Destination Connection ID field.  The value for Source
Connection ID MUST be copied from the Destination Connection ID of the received
packet, which is initially randomly selected by a client.  Echoing both
connection IDs gives clients some assurance that the server received the packet
and that the Version Negotiation packet was not generated by an off-path
attacker.</t>
          <t>As future versions of QUIC may support Connection IDs larger than the version 1
limit, Version Negotiation packets could carry Connection IDs that are longer
than 20 bytes.</t>
          <t>The remainder of the Version Negotiation packet is a list of 32-bit versions
which the server supports.</t>
          <t>A Version Negotiation packet cannot be explicitly acknowledged in an ACK frame
by a client.  Receiving another Initial packet implicitly acknowledges a Version
Negotiation packet.</t>
          <t>The Version Negotiation packet does not include the Packet Number and Length
fields present in other packets that use the long header form.  Consequently,
a Version Negotiation packet consumes an entire UDP datagram.</t>
          <t>A server MUST NOT send more than one Version Negotiation packet in response to a
single UDP datagram.</t>
          <t>See <xref target="version-negotiation" format="default"/> for a description of the version negotiation
process.</t>
        </section>
        <section anchor="packet-initial" numbered="true" toc="default">
          <name>Initial Packet</name>
          <t>An Initial packet uses long headers with a type value of 0x0.  It carries the
first CRYPTO frames sent by the client and server to perform key exchange, and
carries ACKs in either direction.</t>
          <figure anchor="initial-format">
            <name>Initial Packet</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
+-+-+-+-+-+-+-+-+
|1|1| 0 |R R|P P|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         Version (32)                          |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| DCID Len (8)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|               Destination Connection ID (0..160)            ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| SCID Len (8)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                 Source Connection ID (0..160)               ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         Token Length (i)                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                            Token (*)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                           Length (i)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    Packet Number (8/16/24/32)               ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Payload (*)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          </figure>
          <t>The Initial packet contains a long header as well as the Length and Packet
Number fields.  The first byte contains the Reserved and Packet Number Length
bits.  Between the SCID and Length fields, there are two additional
field specific to the Initial packet.</t>
          <dl newline="false" spacing="normal">
            <dt>Token Length:</dt>
            <dd>
  A variable-length integer specifying the length of the Token field, in bytes.
This value is zero if no token is present.  Initial packets sent by the server
MUST set the Token Length field to zero; clients that receive an Initial
packet with a non-zero Token Length field MUST either discard the packet or
generate a connection error of type PROTOCOL_VIOLATION.</dd>
            <dt>Token:</dt>
            <dd>
  The value of the token that was previously provided in a Retry packet or
NEW_TOKEN frame.</dd>
            <dt>Payload:</dt>
            <dd>
  The payload of the packet.</dd>
          </dl>
          <t>In order to prevent tampering by version-unaware middleboxes, Initial packets
are protected with connection- and version-specific keys (Initial keys) as
described in <xref target="QUIC-TLS" format="default"/>.  This protection does not provide confidentiality or
integrity against on-path attackers, but provides some level of protection
against off-path attackers.</t>
          <t>The client and server use the Initial packet type for any packet that contains
an initial cryptographic handshake message. This includes all cases where a new
packet containing the initial cryptographic message needs to be created, such as
the packets sent after receiving a Retry packet (<xref target="packet-retry" format="default"/>).</t>
          <t>A server sends its first Initial packet in response to a client Initial.  A
server may send multiple Initial packets.  The cryptographic key exchange could
require multiple round trips or retransmissions of this data.</t>
          <t>The payload of an Initial packet includes a CRYPTO frame (or frames) containing
a cryptographic handshake message, ACK frames, or both.  PING, PADDING, and
CONNECTION_CLOSE frames are also permitted.  An endpoint that receives an
Initial packet containing other frames can either discard the packet as spurious
or treat it as a connection error.</t>
          <t>The first packet sent by a client always includes a CRYPTO frame that contains
the start or all of the first cryptographic handshake message.  The first
CRYPTO frame sent always begins at an offset of 0 (see <xref target="handshake" format="default"/>).</t>
          <t>Note that if the server sends a HelloRetryRequest, the client will send another
series of Initial packets.  These Initial packets will continue the
cryptographic handshake and will contain CRYPTO frames starting at an offset
matching the size of the CRYPTO frames sent in the first flight of Initial
packets.</t>
          <section anchor="discard-initial" numbered="true" toc="default">
            <name>Abandoning Initial Packets</name>
            <t>A client stops both sending and processing Initial packets when it sends its
first Handshake packet.  A server stops sending and processing Initial packets
when it receives its first Handshake packet.  Though packets might still be in
flight or awaiting acknowledgment, no further Initial packets need to be
exchanged beyond this point.  Initial packet protection keys are discarded (see
Section 4.10.1 of <xref target="QUIC-TLS" format="default"/>) along with any loss recovery and congestion
control state (see Section 6.5 of <xref target="QUIC-RECOVERY" format="default"/>).</t>
            <t>Any data in CRYPTO frames is discarded - and no longer retransmitted - when
Initial keys are discarded.</t>
          </section>
        </section>
        <section anchor="packet-0rtt" numbered="true" toc="default">
          <name>0-RTT</name>
          <t>A 0-RTT packet uses long headers with a type value of 0x1, followed by the
Length and Packet Number fields. The first byte contains the Reserved and Packet
Number Length bits.  It is used to carry "early" data from the client to the
server as part of the first flight, prior to handshake completion. As part of
the TLS handshake, the server can accept or reject this early data.</t>
          <t>See Section 2.3 of <xref target="TLS13" format="default"/> for a discussion of 0-RTT data and its
limitations.</t>
          <figure>
            <name>0-RTT Packet</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
+-+-+-+-+-+-+-+-+
|1|1| 1 |R R|P P|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         Version (32)                          |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| DCID Len (8)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|               Destination Connection ID (0..160)            ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| SCID Len (8)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                 Source Connection ID (0..160)               ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                           Length (i)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    Packet Number (8/16/24/32)               ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Payload (*)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          </figure>
          <t>Packet numbers for 0-RTT protected packets use the same space as 1-RTT protected
packets.</t>
          <t>After a client receives a Retry packet, 0-RTT packets are likely to have been
lost or discarded by the server.  A client SHOULD attempt to resend data in
0-RTT packets after it sends a new Initial packet.</t>
          <t>A client MUST NOT reset the packet number it uses for 0-RTT packets, since the
keys used to protect 0-RTT packets will not change as a result of responding to
a Retry packet.  Sending packets with the same packet number in that case is
likely to compromise the packet protection for all 0-RTT packets because the
same key and nonce could be used to protect different content.</t>
          <t>A client only receives acknowledgments for its 0-RTT packets once the handshake
is complete.  Consequently, a server might expect 0-RTT packets to start with a
packet number of 0.  Therefore, in determining the length of the packet number
encoding for 0-RTT packets, a client MUST assume that all packets up to the
current packet number are in flight, starting from a packet number of 0.  Thus,
0-RTT packets could need to use a longer packet number encoding.</t>
          <t>A client MUST NOT send 0-RTT packets once it starts processing 1-RTT packets
from the server.  This means that 0-RTT packets cannot contain any response to
frames from 1-RTT packets.  For instance, a client cannot send an ACK frame in a
0-RTT packet, because that can only acknowledge a 1-RTT packet.  An
acknowledgment for a 1-RTT packet MUST be carried in a 1-RTT packet.</t>
          <t>A server SHOULD treat a violation of remembered limits as a connection error of
an appropriate type (for instance, a FLOW_CONTROL_ERROR for exceeding stream
data limits).</t>
        </section>
        <section anchor="packet-handshake" numbered="true" toc="default">
          <name>Handshake Packet</name>
          <t>A Handshake packet uses long headers with a type value of 0x2, followed by the
Length and Packet Number fields.  The first byte contains the Reserved and
Packet Number Length bits.  It is used to carry acknowledgments and
cryptographic handshake messages from the server and client.</t>
          <figure anchor="handshake-format">
            <name>Handshake Protected Packet</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
+-+-+-+-+-+-+-+-+
|1|1| 2 |R R|P P|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         Version (32)                          |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| DCID Len (8)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|               Destination Connection ID (0..160)            ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| SCID Len (8)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                 Source Connection ID (0..160)               ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                           Length (i)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    Packet Number (8/16/24/32)               ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Payload (*)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          </figure>
          <t>Once a client has received a Handshake packet from a server, it uses Handshake
packets to send subsequent cryptographic handshake messages and acknowledgments
to the server.</t>
          <t>The Destination Connection ID field in a Handshake packet contains a connection
ID that is chosen by the recipient of the packet; the Source Connection ID
includes the connection ID that the sender of the packet wishes to use (see
<xref target="negotiating-connection-ids" format="default"/>).</t>
          <t>Handshake packets are their own packet number space, and thus the first
Handshake packet sent by a server contains a packet number of 0.</t>
          <t>The payload of this packet contains CRYPTO frames and could contain PING,
PADDING, or ACK frames. Handshake packets MAY contain CONNECTION_CLOSE frames.
Endpoints MUST treat receipt of Handshake packets with other frames as a
connection error.</t>
          <t>Like Initial packets (see <xref target="discard-initial" format="default"/>), data in CRYPTO frames at the
Handshake encryption level is discarded - and no longer retransmitted - when
Handshake protection keys are discarded.</t>
        </section>
        <section anchor="packet-retry" numbered="true" toc="default">
          <name>Retry Packet</name>
          <t>A Retry packet uses a long packet header with a type value of 0x3. It carries
an address validation token created by the server. It is used by a server that
wishes to perform a retry (see <xref target="validate-handshake" format="default"/>).</t>
          <figure anchor="retry-format">
            <name>Retry Packet</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+
|1|1| 3 | Unused|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         Version (32)                          |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| DCID Len (8)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|               Destination Connection ID (0..160)            ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| SCID Len (8)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                 Source Connection ID (0..160)               ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Retry Token (*)                      ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                                                               +
|                                                               |
+                   Retry Integrity Tag (128)                   +
|                                                               |
+                                                               +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          </figure>
          <t>A Retry packet (shown in <xref target="retry-format" format="default"/>) does not contain any protected
fields. The value in the Unused field is selected randomly by the server. In
addition to the long header, it contains these additional fields:</t>
          <dl newline="false" spacing="normal">
            <dt>Retry Token:</dt>
            <dd>
  An opaque token that the server can use to validate the client's address.</dd>
            <dt>Retry Integrity Tag:</dt>
            <dd>
  See the Retry Packet Integrity section of <xref target="QUIC-TLS" format="default"/>.</dd>
          </dl>
          <!-- Break this stuff up a little, maybe into "Sending Retry" and "Processing
Retry" sections. -->
          <t>The server populates the Destination Connection ID with the connection ID that
the client included in the Source Connection ID of the Initial packet.</t>
          <t>The server includes a connection ID of its choice in the Source Connection ID
field.  This value MUST not be equal to the Destination Connection ID field of
the packet sent by the client.  A client MUST discard a Retry packet that
contains a Source Connection ID field that is identical to the Destination
Connection ID field of its Initial packet.  The client MUST use the value from
the Source Connection ID field of the Retry packet in the Destination Connection
ID field of subsequent packets that it sends.</t>
          <t>A server MAY send Retry packets in response to Initial and 0-RTT packets.  A
server can either discard or buffer 0-RTT packets that it receives.  A server
can send multiple Retry packets as it receives Initial or 0-RTT packets.  A
server MUST NOT send more than one Retry packet in response to a single UDP
datagram.</t>
          <t>A client MUST accept and process at most one Retry packet for each connection
attempt.  After the client has received and processed an Initial or Retry packet
from the server, it MUST discard any subsequent Retry packets that it receives.</t>
          <t>Clients MUST discard Retry packets that have a Retry Integrity Tag that cannot
be validated, see the Retry Packet Integrity section of <xref target="QUIC-TLS" format="default"/>. This
diminishes an off-path attacker's ability to inject a Retry packet and protects
against accidental corruption of Retry packets.  A client MUST discard a Retry
packet with a zero-length Retry Token field.</t>
          <t>The client responds to a Retry packet with an Initial packet that includes the
provided Retry Token to continue connection establishment.</t>
          <t>A client sets the Destination Connection ID field of this Initial packet to the
value from the Source Connection ID in the Retry packet. Changing Destination
Connection ID also results in a change to the keys used to protect the Initial
packet. It also sets the Token field to the token provided in the Retry. The
client MUST NOT change the Source Connection ID because the server could include
the connection ID as part of its token validation logic (see
<xref target="token-integrity" format="default"/>).</t>
          <t>The next Initial packet from the client uses the connection ID and token values
from the Retry packet (see <xref target="negotiating-connection-ids" format="default"/>).  Aside from this,
the Initial packet sent by the client is subject to the same restrictions as the
first Initial packet.  A client MUST use the same cryptographic handshake
message it includes in this packet.  A server MAY treat a packet that
contains a different cryptographic handshake message as a connection error or
discard it.</t>
          <t>A client MAY attempt 0-RTT after receiving a Retry packet by sending 0-RTT
packets to the connection ID provided by the server.  A client MUST NOT change
the cryptographic handshake message it sends in response to receiving a Retry.</t>
          <t>A client MUST NOT reset the packet number for any packet number space after
processing a Retry packet; <xref target="packet-0rtt" format="default"/> contains more information on this.</t>
          <t>A server acknowledges the use of a Retry packet for a connection using the
original_connection_id transport parameter (see
<xref target="transport-parameter-definitions" format="default"/>).  If the server sends a Retry packet, it
MUST include the Destination Connection ID field from the client's first
Initial packet in the transport parameter.</t>
          <t>If the client received and processed a Retry packet, it MUST validate that the
original_connection_id transport parameter is present and correct; otherwise, it
MUST validate that the transport parameter is absent.  A client MUST treat a
failed validation as a connection error of type TRANSPORT_PARAMETER_ERROR.</t>
          <t>A Retry packet does not include a packet number and cannot be explicitly
acknowledged by a client.</t>
        </section>
      </section>
      <section anchor="short-header" numbered="true" toc="default">
        <name>Short Header Packets</name>
        <t>This version of QUIC defines a single packet type which uses the
short packet header.</t>
        <figure anchor="fig-short-header">
          <name>Short Header Packet Format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+
|0|1|S|R|R|K|P P|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                Destination Connection ID (0..160)           ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                     Packet Number (8/16/24/32)              ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                     Protected Payload (*)                   ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>The short header can be used after the version and 1-RTT keys are negotiated.
Packets that use the short header contain the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Header Form:</dt>
          <dd>
  The most significant bit (0x80) of byte 0 is set to 0 for the short header.</dd>
          <dt>Fixed Bit:</dt>
          <dd>
  The next bit (0x40) of byte 0 is set to 1.  Packets containing a zero value
for this bit are not valid packets in this version and MUST be discarded.</dd>
          <dt>Spin Bit (S):</dt>
          <dd>
  The third most significant bit (0x20) of byte 0 is the latency spin bit, set
as described in <xref target="spin-bit" format="default"/>.</dd>
          <dt>Reserved Bits (R):</dt>
          <dd>
  The next two bits (those with a mask of 0x18) of byte 0 are reserved.  These
bits are protected using header protection (see Section 5.4 of
<xref target="QUIC-TLS" format="default"/>).  The value included prior to protection MUST be set to 0.  An
endpoint MUST treat receipt of a packet that has a non-zero value for these
bits, after removing both packet and header protection, as a connection error
of type PROTOCOL_VIOLATION. Discarding such a packet after only removing
header protection can expose the endpoint to attacks (see Section 9.3 of
<xref target="QUIC-TLS" format="default"/>).</dd>
          <dt>Key Phase (K):</dt>
          <dd>
  The next bit (0x04) of byte 0 indicates the key phase, which allows a
recipient of a packet to identify the packet protection keys that are used to
protect the packet.  See <xref target="QUIC-TLS" format="default"/> for details.  This bit is protected
using header protection (see Section 5.4 of <xref target="QUIC-TLS" format="default"/>).</dd>
          <dt>Packet Number Length (P):</dt>
          <dd>
  The least significant two bits (those with a mask of 0x03) of byte 0 contain
the length of the packet number, encoded as an unsigned, two-bit integer that
is one less than the length of the packet number field in bytes.  That is, the
length of the packet number field is the value of this field, plus one.  These
bits are protected using header protection (see Section 5.4 of <xref target="QUIC-TLS" format="default"/>).</dd>
          <dt>Destination Connection ID:</dt>
          <dd>
  The Destination Connection ID is a connection ID that is chosen by the
intended recipient of the packet.  See <xref target="connection-id" format="default"/> for more details.</dd>
          <dt>Packet Number:</dt>
          <dd>
  The packet number field is 1 to 4 bytes long. The packet number has
confidentiality protection separate from packet protection, as described in
Section 5.4 of <xref target="QUIC-TLS" format="default"/>. The length of the packet number field is encoded
in Packet Number Length field. See <xref target="packet-encoding" format="default"/> for details.</dd>
          <dt>Protected Payload:</dt>
          <dd>
  Packets with a short header always include a 1-RTT protected payload.</dd>
        </dl>
        <t>The header form bit and the connection ID field of a short header packet are
version-independent.  The remaining fields are specific to the selected QUIC
version.  See <xref target="QUIC-INVARIANTS" format="default"/> for details on how packets from different
versions of QUIC are interpreted.</t>
        <section anchor="spin-bit" numbered="true" toc="default">
          <name>Latency Spin Bit</name>
          <t>The latency spin bit enables passive latency monitoring from observation points
on the network path throughout the duration of a connection. The spin bit is
only present in the short packet header, since it is possible to measure the
initial RTT of a connection by observing the handshake. Therefore, the spin bit
is available after version negotiation and connection establishment are
completed. On-path measurement and use of the latency spin bit is further
discussed in <xref target="QUIC-MANAGEABILITY" format="default"/>.</t>
          <t>The spin bit is an OPTIONAL feature of QUIC. A QUIC stack that chooses to
support the spin bit MUST implement it as specified in this section.</t>
          <t>Each endpoint unilaterally decides if the spin bit is enabled or disabled for a
connection. Implementations MUST allow administrators of clients and servers
to disable the spin bit either globally or on a per-connection basis. Even when
the spin bit is not disabled by the administrator, endpoints MUST disable their
use of the spin bit for a random selection of at least one in every 16 network
paths, or for one in every 16 connection IDs.  As each endpoint disables the
spin bit independently, this ensures that the spin bit signal is disabled on
approximately one in eight network paths.</t>
          <t>When the spin bit is disabled, endpoints MAY set the spin bit to any value, and
MUST ignore any incoming value. It is RECOMMENDED that endpoints set the spin
bit to a random value either chosen independently for each packet or chosen
independently for each connection ID.</t>
          <t>If the spin bit is enabled for the connection, the endpoint maintains a spin
value and sets the spin bit in the short header to the currently stored
value when a packet with a short header is sent out. The spin value is
initialized to 0 in the endpoint at connection start.  Each endpoint also
remembers the highest packet number seen from its peer on the connection.</t>
          <t>When a server receives a short header packet that increments the highest
packet number seen by the server from the client, it sets the spin value to be
equal to the spin bit in the received packet.</t>
          <t>When a client receives a short header packet that increments the highest
packet number seen by the client from the server, it sets the spin value to the
inverse of the spin bit in the received packet.</t>
          <t>An endpoint resets its spin value to zero when sending the first packet of a
given connection with a new connection ID. This reduces the risk that transient
spin bit state can be used to link flows across connection migration or ID
change.</t>
          <t>With this mechanism, the server reflects the spin value received, while the
client 'spins' it after one RTT. On-path observers can measure the time
between two spin bit toggle events to estimate the end-to-end RTT of a
connection.</t>
        </section>
      </section>
    </section>
    <section anchor="transport-parameter-encoding" numbered="true" toc="default">
      <name>Transport Parameter Encoding</name>
      <t>The <tt>extension_data</tt> field of the quic_transport_parameters extension defined in
<xref target="QUIC-TLS" format="default"/> contains the QUIC transport parameters. They are encoded as a
length-prefixed sequence of transport parameters, as shown in
<xref target="transport-parameter-sequence" format="default"/>:</t>
      <figure anchor="transport-parameter-sequence">
        <name>Sequence of Transport Parameters</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|      Sequence Length (16)     |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                  Transport Parameter 1 (*)                  ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                  Transport Parameter 2 (*)                  ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
                               ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                  Transport Parameter N (*)                  ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
      </figure>
      <t>The Sequence Length field contains the length of the sequence of transport
parameters, in bytes. Each transport parameter is encoded as an (identifier,
length, value) tuple, as shown in <xref target="transport-parameter-encoding-fig" format="default"/>:</t>
      <figure anchor="transport-parameter-encoding-fig">
        <name>Transport Parameter Encoding</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|  Transport Parameter ID (16)  |  Transport Param Length (16)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                Transport Parameter Value (*)                ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
      </figure>
      <t>The Transport Param Length field contains the length of the Transport
Parameter Value field.</t>
      <t>QUIC encodes transport parameters into a sequence of bytes, which are then
included in the cryptographic handshake.</t>
      <section anchor="transport-parameter-grease" numbered="true" toc="default">
        <name>Reserved Transport Parameters</name>
        <t>Transport parameters with an identifier of the form <tt>31 * N + 27</tt> for integer
values of N are reserved to exercise the requirement that unknown transport
parameters be ignored.  These transport parameters have no semantics, and may
carry arbitrary values.</t>
      </section>
      <section anchor="transport-parameter-definitions" numbered="true" toc="default">
        <name>Transport Parameter Definitions</name>
        <t>This section details the transport parameters defined in this document.</t>
        <t>Many transport parameters listed here have integer values.  Those transport
parameters that are identified as integers use a variable-length integer
encoding (see <xref target="integer-encoding" format="default"/>) and have a default value of 0 if the
transport parameter is absent, unless otherwise stated.</t>
        <t>The following transport parameters are defined:</t>
        <dl newline="false" spacing="normal">
          <dt>original_connection_id (0x0000):</dt>
          <dd>
  The value of the Destination Connection ID field from the first Initial packet
sent by the client.  This transport parameter is only sent by a server.  This
is the same value sent in the "Original Destination Connection ID" field of a
Retry packet (see <xref target="packet-retry" format="default"/>).  A server MUST include the
original_connection_id transport parameter if it sent a Retry packet.</dd>
          <dt>max_idle_timeout (0x0001):</dt>
          <dd>
  The max idle timeout is a value in milliseconds that is encoded as an integer;
see (<xref target="idle-timeout" format="default"/>).  Idle timeout is disabled when both endpoints omit
this transport parameter or specify a value of 0.</dd>
          <dt>stateless_reset_token (0x0002):</dt>
          <dd>
  A stateless reset token is used in verifying a stateless reset; see
<xref target="stateless-reset" format="default"/>.  This parameter is a sequence of 16 bytes.  This
transport parameter MUST NOT be sent by a client, but MAY be sent by a server.
A server that does not send this transport parameter cannot use stateless
reset (<xref target="stateless-reset" format="default"/>) for the connection ID negotiated during the
handshake.</dd>
          <dt>max_packet_size (0x0003):</dt>
          <dd>
  The maximum packet size parameter is an integer value that limits the size of
packets that the endpoint is willing to receive.  This indicates that packets
larger than this limit will be dropped.  The default for this parameter is the
maximum permitted UDP payload of 65527.  Values below 1200 are invalid.  This
limit only applies to protected packets (<xref target="packet-protected" format="default"/>).</dd>
          <dt>initial_max_data (0x0004):</dt>
          <dd>
  The initial maximum data parameter is an integer value that contains the
initial value for the maximum amount of data that can be sent on the
connection.  This is equivalent to sending a MAX_DATA (<xref target="frame-max-data" format="default"/>) for
the connection immediately after completing the handshake.</dd>
          <dt>initial_max_stream_data_bidi_local (0x0005):</dt>
          <dd>
  This parameter is an integer value specifying the initial flow control limit
for locally-initiated bidirectional streams.  This limit applies to newly
created bidirectional streams opened by the endpoint that sends the transport
parameter.  In client transport parameters, this applies to streams with an
identifier with the least significant two bits set to 0x0; in server transport
parameters, this applies to streams with the least significant two bits set to
0x1.</dd>
          <dt>initial_max_stream_data_bidi_remote (0x0006):</dt>
          <dd>
  This parameter is an integer value specifying the initial flow control limit
for peer-initiated bidirectional streams.  This limit applies to newly created
bidirectional streams opened by the endpoint that receives the transport
parameter.  In client transport parameters, this applies to streams with an
identifier with the least significant two bits set to 0x1; in server transport
parameters, this applies to streams with the least significant two bits set to
0x0.</dd>
          <dt>initial_max_stream_data_uni (0x0007):</dt>
          <dd>
  This parameter is an integer value specifying the initial flow control limit
for unidirectional streams.  This limit applies to newly created
unidirectional streams opened by the endpoint that receives the transport
parameter.  In client transport parameters, this applies to streams with an
identifier with the least significant two bits set to 0x3; in server transport
parameters, this applies to streams with the least significant two bits set to
0x2.</dd>
          <dt>initial_max_streams_bidi (0x0008):</dt>
          <dd>
  The initial maximum bidirectional streams parameter is an integer value that
contains the initial maximum number of bidirectional streams the peer may
initiate.  If this parameter is absent or zero, the peer cannot open
bidirectional streams until a MAX_STREAMS frame is sent.  Setting this
parameter is equivalent to sending a MAX_STREAMS (<xref target="frame-max-streams" format="default"/>) of
the corresponding type with the same value.</dd>
          <dt>initial_max_streams_uni (0x0009):</dt>
          <dd>
  The initial maximum unidirectional streams parameter is an integer value that
contains the initial maximum number of unidirectional streams the peer may
initiate.  If this parameter is absent or zero, the peer cannot open
unidirectional streams until a MAX_STREAMS frame is sent.  Setting this
parameter is equivalent to sending a MAX_STREAMS (<xref target="frame-max-streams" format="default"/>) of
the corresponding type with the same value.</dd>
          <dt>ack_delay_exponent (0x000a):</dt>
          <dd>
  The ACK delay exponent is an integer value indicating an
exponent used to decode the ACK Delay field in the ACK frame (<xref target="frame-ack" format="default"/>).
If this value is absent, a default value of 3 is assumed (indicating a
multiplier of 8). Values above 20 are invalid.</dd>
          <dt>max_ack_delay (0x000b):</dt>
          <dd>
  The maximum ACK delay is an integer value indicating the
maximum amount of time in milliseconds by which the endpoint will delay
sending acknowledgments.  This value SHOULD include the receiver's expected
delays in alarms firing.  For example, if a receiver sets a timer for 5ms
and alarms commonly fire up to 1ms late, then it should send a max_ack_delay
of 6ms.  If this value is absent, a default of 25 milliseconds is assumed.
Values of 2^14 or greater are invalid.</dd>
          <dt>disable_active_migration (0x000c):</dt>
          <dd>
  The disable active migration transport parameter is included if the endpoint
does not support active connection migration (<xref target="migration" format="default"/>). Peers of an
endpoint that sets this transport parameter MUST NOT send any packets,
including probing packets (<xref target="probing" format="default"/>), from a local address or port other
than that used to perform the handshake.  This parameter is a zero-length
value.</dd>
          <dt>preferred_address (0x000d):</dt>
          <dd>
  The server's preferred address is used to effect a change in server address at
the end of the handshake, as described in <xref target="preferred-address" format="default"/>.  The format
of this transport parameter is shown in <xref target="fig-preferred-address" format="default"/>.  This
transport parameter is only sent by a server. Servers MAY choose to only send
a preferred address of one address family by sending an all-zero address and
port (0.0.0.0:0 or ::.0) for the other family. IP addresses are encoded in
network byte order. The CID Length field contains the length of the
Connection ID field.</dd>
        </dl>
        <figure anchor="fig-preferred-address">
          <name>Preferred Address format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                       IPv4 Address (32)                       |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|         IPv4 Port (16)        |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                                                               +
|                                                               |
+                      IPv6 Address (128)                       +
|                                                               |
+                                                               +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|         IPv6 Port (16)        |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| CID Length (8)|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                      Connection ID (*)                      ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                                                               +
|                                                               |
+                   Stateless Reset Token (128)                 +
|                                                               |
+                                                               +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <dl newline="false" spacing="normal">
          <dt>active_connection_id_limit (0x000e):</dt>
          <dd>
  The active connection ID limit is an integer value specifying the
maximum number of connection IDs from the peer that an endpoint is willing
to store. This value includes the connection ID received during the handshake,
that received in the preferred_address transport parameter, and those received
in NEW_CONNECTION_ID frames.
Unless a zero-length connection ID is being used, the value of the
active_connection_id_limit parameter MUST be no less than 2. If this
transport parameter is absent, a default of 2 is assumed.
When a zero-length connection ID is being used, the active_connection_id_limit
parameter MUST NOT be sent.</dd>
        </dl>
        <t>If present, transport parameters that set initial flow control limits
(initial_max_stream_data_bidi_local, initial_max_stream_data_bidi_remote, and
initial_max_stream_data_uni) are equivalent to sending a MAX_STREAM_DATA frame
(<xref target="frame-max-stream-data" format="default"/>) on every stream of the corresponding type
immediately after opening.  If the transport parameter is absent, streams of
that type start with a flow control limit of 0.</t>
        <t>A client MUST NOT include server-only transport parameters
(original_connection_id, stateless_reset_token, or preferred_address).  A server
MUST treat receipt of any of these transport parameters as a connection error of
type TRANSPORT_PARAMETER_ERROR.</t>
      </section>
    </section>
    <section anchor="frame-formats" numbered="true" toc="default">
      <name>Frame Types and Formats</name>
      <t>As described in <xref target="frames" format="default"/>, packets contain one or more frames. This section
describes the format and semantics of the core QUIC frame types.</t>
      <section anchor="frame-padding" numbered="true" toc="default">
        <name>PADDING Frame</name>
        <t>The PADDING frame (type=0x00) has no semantic value.  PADDING frames can be used
to increase the size of a packet.  Padding can be used to increase an initial
client packet to the minimum required size, or to provide protection against
traffic analysis for protected packets.</t>
        <t>A PADDING frame has no content.  That is, a PADDING frame consists of the single
byte that identifies the frame as a PADDING frame.</t>
      </section>
      <section anchor="frame-ping" numbered="true" toc="default">
        <name>PING Frame</name>
        <t>Endpoints can use PING frames (type=0x01) to verify that their peers are still
alive or to check reachability to the peer. The PING frame contains no
additional fields.</t>
        <t>The receiver of a PING frame simply needs to acknowledge the packet containing
this frame.</t>
        <t>The PING frame can be used to keep a connection alive when an application or
application protocol wishes to prevent the connection from timing out. An
application protocol SHOULD provide guidance about the conditions under which
generating a PING is recommended.  This guidance SHOULD indicate whether it is
the client or the server that is expected to send the PING.  Having both
endpoints send PING frames without coordination can produce an excessive number
of packets and poor performance.</t>
        <t>A connection will time out if no packets are sent or received for a period
longer than the time negotiated using the max_idle_timeout transport parameter
(see <xref target="termination" format="default"/>).  However, state in middleboxes might time out earlier
than that.  Though REQ-5 in <xref target="RFC4787" format="default"/> recommends a 2 minute timeout
interval, experience shows that sending packets every 15 to 30 seconds is
necessary to prevent the majority of middleboxes from losing state for UDP
flows.</t>
      </section>
      <section anchor="frame-ack" numbered="true" toc="default">
        <name>ACK Frames</name>
        <t>Receivers send ACK frames (types 0x02 and 0x03) to inform senders of packets
they have received and processed. The ACK frame contains one or more ACK Ranges.
ACK Ranges identify acknowledged packets. If the frame type is 0x03, ACK frames
also contain the sum of QUIC packets with associated ECN marks received on the
connection up until this point.  QUIC implementations MUST properly handle both
types and, if they have enabled ECN for packets they send, they SHOULD use the
information in the ECN section to manage their congestion state.</t>
        <t>QUIC acknowledgements are irrevocable.  Once acknowledged, a packet remains
acknowledged, even if it does not appear in a future ACK frame.  This is unlike
TCP SACKs (<xref target="RFC2018" format="default"/>).</t>
        <t>Packets from different packet number spaces can be identified using the same
numeric value. An acknowledgment for a packet needs to indicate both a packet
number and a packet number space. This is accomplished by having each ACK frame
only acknowledge packet numbers in the same space as the packet in which the
ACK frame is contained.</t>
        <t>Version Negotiation and Retry packets cannot be acknowledged because they do not
contain a packet number.  Rather than relying on ACK frames, these packets are
implicitly acknowledged by the next Initial packet sent by the client.</t>
        <t>An ACK frame is shown in <xref target="ack-format" format="default"/>.</t>
        <figure anchor="ack-format">
          <name>ACK Frame Format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                     Largest Acknowledged (i)                ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          ACK Delay (i)                      ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                       ACK Range Count (i)                   ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                       First ACK Range (i)                   ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          ACK Ranges (*)                     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          [ECN Counts]                       ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>ACK frames contain the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Largest Acknowledged:</dt>
          <dd>
  A variable-length integer representing the largest packet number the peer is
acknowledging; this is usually the largest packet number that the peer has
received prior to generating the ACK frame.  Unlike the packet number in the
QUIC long or short header, the value in an ACK frame is not truncated.</dd>
          <dt>ACK Delay:</dt>
          <dd>
  A variable-length integer representing the time delta in microseconds between
when this ACK was sent and when the largest acknowledged packet, as indicated
in the Largest Acknowledged field, was received by this peer.  The value of
the ACK Delay field is scaled by multiplying the encoded value by 2 to the
power of the value of the <tt>ack_delay_exponent</tt> transport parameter set by the
sender of the ACK frame (see <xref target="transport-parameter-definitions" format="default"/>).  Scaling in
this fashion allows for a larger range of values with a shorter encoding at
the cost of lower resolution.  Because the receiver doesn't use the ACK Delay
for Initial and Handshake packets, a sender SHOULD send a value of 0.</dd>
          <dt>ACK Range Count:</dt>
          <dd>
  A variable-length integer specifying the number of Gap and ACK Range fields in
the frame.</dd>
          <dt>First ACK Range:</dt>
          <dd>
  A variable-length integer indicating the number of contiguous packets
preceding the Largest Acknowledged that are being acknowledged.  The First ACK
Range is encoded as an ACK Range (see <xref target="ack-ranges" format="default"/>) starting from the
Largest Acknowledged.  That is, the smallest packet acknowledged in the
range is determined by subtracting the First ACK Range value from the Largest
Acknowledged.</dd>
          <dt>ACK Ranges:</dt>
          <dd>
  Contains additional ranges of packets which are alternately not
acknowledged (Gap) and acknowledged (ACK Range); see <xref target="ack-ranges" format="default"/>.</dd>
          <dt>ECN Counts:</dt>
          <dd>
  The three ECN Counts; see <xref target="ack-ecn-counts" format="default"/>.</dd>
        </dl>
        <section anchor="ack-ranges" numbered="true" toc="default">
          <name>ACK Ranges</name>
          <t>The ACK Ranges field consists of alternating Gap and ACK Range values in
descending packet number order.  The number of Gap and ACK Range values is
determined by the ACK Range Count field; one of each value is present for each
value in the ACK Range Count field.</t>
          <t>ACK Ranges are structured as shown in <xref target="ack-range-format" format="default"/>.</t>
          <figure anchor="ack-range-format">
            <name>ACK Ranges</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                           [Gap (i)]                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          [ACK Range (i)]                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                           [Gap (i)]                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          [ACK Range (i)]                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
                               ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                           [Gap (i)]                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          [ACK Range (i)]                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          </figure>
          <t>The fields that form the ACK Ranges are:</t>
          <dl newline="false" spacing="normal">
            <dt>Gap (repeated):</dt>
            <dd>
  A variable-length integer indicating the number of contiguous unacknowledged
packets preceding the packet number one lower than the smallest in the
preceding ACK Range.</dd>
            <dt>ACK Range (repeated):</dt>
            <dd>
  A variable-length integer indicating the number of contiguous acknowledged
packets preceding the largest packet number, as determined by the
preceding Gap.</dd>
          </dl>
          <t>Gap and ACK Range value use a relative integer encoding for efficiency.  Though
each encoded value is positive, the values are subtracted, so that each ACK
Range describes progressively lower-numbered packets.</t>
          <t>Each ACK Range acknowledges a contiguous range of packets by indicating the
number of acknowledged packets that precede the largest packet number in that
range.  A value of zero indicates that only the largest packet number is
acknowledged.  Larger ACK Range values indicate a larger range, with
corresponding lower values for the smallest packet number in the range.  Thus,
given a largest packet number for the range, the smallest value is determined by
the formula:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
   smallest = largest - ack_range
]]></artwork>
          <t>An ACK Range acknowledges all packets between the smallest packet number and the
largest, inclusive.</t>
          <t>The largest value for an ACK Range is determined by cumulatively subtracting the
size of all preceding ACK Ranges and Gaps.</t>
          <t>Each Gap indicates a range of packets that are not being acknowledged.  The
number of packets in the gap is one higher than the encoded value of the Gap
field.</t>
          <t>The value of the Gap field establishes the largest packet number value for the
subsequent ACK Range using the following formula:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
   largest = previous_smallest - gap - 2
]]></artwork>
          <t>If any computed packet number is negative, an endpoint MUST generate a
connection error of type FRAME_ENCODING_ERROR.</t>
        </section>
        <section anchor="ack-ecn-counts" numbered="true" toc="default">
          <name>ECN Counts</name>
          <t>The ACK frame uses the least significant bit (that is, type 0x03) to indicate
ECN feedback and report receipt of QUIC packets with associated ECN codepoints
of ECT(0), ECT(1), or CE in the packet's IP header.  ECN Counts are only present
when the ACK frame type is 0x03.</t>
          <t>ECN Counts are only parsed when the ACK frame type is 0x03.  There are 3 ECN
counts, as shown in <xref target="ecn-count-format" format="default"/>.</t>
          <figure anchor="ecn-count-format">
            <name>ECN Count Format</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        ECT(0) Count (i)                     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        ECT(1) Count (i)                     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        ECN-CE Count (i)                     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          </figure>
          <t>The three ECN Counts are:</t>
          <dl newline="false" spacing="normal">
            <dt>ECT(0) Count:</dt>
            <dd>
  A variable-length integer representing the total number of packets received
with the ECT(0) codepoint in the packet number space of the ACK frame.</dd>
            <dt>ECT(1) Count:</dt>
            <dd>
  A variable-length integer representing the total number of packets received
with the ECT(1) codepoint in the packet number space of the ACK frame.</dd>
            <dt>CE Count:</dt>
            <dd>
  A variable-length integer representing the total number of packets received
with the CE codepoint in the packet number space of the ACK frame.</dd>
          </dl>
          <t>ECN counts are maintained separately for each packet number space.</t>
        </section>
      </section>
      <section anchor="frame-reset-stream" numbered="true" toc="default">
        <name>RESET_STREAM Frame</name>
        <t>An endpoint uses a RESET_STREAM frame (type=0x04) to abruptly terminate the
sending part of a stream.</t>
        <t>After sending a RESET_STREAM, an endpoint ceases transmission and retransmission
of STREAM frames on the identified stream.  A receiver of RESET_STREAM can
discard any data that it already received on that stream.</t>
        <t>An endpoint that receives a RESET_STREAM frame for a send-only stream MUST
terminate the connection with error STREAM_STATE_ERROR.</t>
        <t>The RESET_STREAM frame is shown in <xref target="fig-reset-stream" format="default"/>.</t>
        <figure anchor="fig-reset-stream">
          <name>RESET_STREAM Frame Format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Stream ID (i)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                  Application Error Code (i)                 ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Final Size (i)                       ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>RESET_STREAM frames contain the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Stream ID:</dt>
          <dd>
  A variable-length integer encoding of the Stream ID of the stream being
terminated.</dd>
          <dt>Application Protocol Error Code:</dt>
          <dd>
  A variable-length integer containing the application protocol error
code (see <xref target="app-error-codes" format="default"/>) which indicates why the stream is being
closed.</dd>
          <dt>Final Size:</dt>
          <dd>
  A variable-length integer indicating the final size of the stream by the
RESET_STREAM sender, in unit of bytes.</dd>
        </dl>
      </section>
      <section anchor="frame-stop-sending" numbered="true" toc="default">
        <name>STOP_SENDING Frame</name>
        <t>An endpoint uses a STOP_SENDING frame (type=0x05) to communicate that incoming
data is being discarded on receipt at application request.  STOP_SENDING
requests that a peer cease transmission on a stream.</t>
        <t>A STOP_SENDING frame can be sent for streams in the Recv or Size Known states
(see <xref target="stream-send-states" format="default"/>). Receiving a STOP_SENDING frame for a
locally-initiated stream that has not yet been created MUST be treated as a
connection error of type STREAM_STATE_ERROR.  An endpoint that receives a
STOP_SENDING frame for a receive-only stream MUST terminate the connection with
error STREAM_STATE_ERROR.</t>
        <t>The STOP_SENDING frame is shown in <xref target="fig-stop-sending" format="default"/>.</t>
        <figure anchor="fig-stop-sending">
          <name>STOP_SENDING Frame Format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Stream ID (i)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                  Application Error Code (i)                 ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>STOP_SENDING frames contain the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Stream ID:</dt>
          <dd>
  A variable-length integer carrying the Stream ID of the stream being ignored.</dd>
          <dt>Application Error Code:</dt>
          <dd>
  A variable-length integer containing the application-specified reason the
sender is ignoring the stream (see <xref target="app-error-codes" format="default"/>).</dd>
        </dl>
      </section>
      <section anchor="frame-crypto" numbered="true" toc="default">
        <name>CRYPTO Frame</name>
        <t>The CRYPTO frame (type=0x06) is used to transmit cryptographic handshake
messages. It can be sent in all packet types except 0-RTT. The CRYPTO frame
offers the cryptographic protocol an in-order stream of bytes.  CRYPTO frames
are functionally identical to STREAM frames, except that they do not bear a
stream identifier; they are not flow controlled; and they do not carry markers
for optional offset, optional length, and the end of the stream.</t>
        <t>The CRYPTO frame is shown in <xref target="fig-crypto" format="default"/>.</t>
        <figure anchor="fig-crypto">
          <name>CRYPTO Frame Format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Offset (i)                         ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Length (i)                         ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Crypto Data (*)                      ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>CRYPTO frames contain the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Offset:</dt>
          <dd>
  A variable-length integer specifying the byte offset in the stream for the
data in this CRYPTO frame.</dd>
          <dt>Length:</dt>
          <dd>
  A variable-length integer specifying the length of the Crypto Data field in
this CRYPTO frame.</dd>
          <dt>Crypto Data:</dt>
          <dd>
  The cryptographic message data.</dd>
        </dl>
        <t>There is a separate flow of cryptographic handshake data in each encryption
level, each of which starts at an offset of 0. This implies that each encryption
level is treated as a separate CRYPTO stream of data.</t>
        <t>The largest offset delivered on a stream - the sum of the offset and data
length - cannot exceed 2^62-1.  Receipt of a frame that exceeds this limit MUST
be treated as a connection error of type FRAME_ENCODING_ERROR or
CRYPTO_BUFFER_EXCEEDED.</t>
        <t>Unlike STREAM frames, which include a Stream ID indicating to which stream the
data belongs, the CRYPTO frame carries data for a single stream per encryption
level. The stream does not have an explicit end, so CRYPTO frames do not have a
FIN bit.</t>
      </section>
      <section anchor="frame-new-token" numbered="true" toc="default">
        <name>NEW_TOKEN Frame</name>
        <t>A server sends a NEW_TOKEN frame (type=0x07) to provide the client with a token
to send in the header of an Initial packet for a future connection.</t>
        <t>The NEW_TOKEN frame is shown in <xref target="fig-new-token" format="default"/>.</t>
        <figure anchor="fig-new-token">
          <name>NEW_TOKEN Frame Format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Token Length (i)                     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                            Token (*)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>NEW_TOKEN frames contain the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Token Length:</dt>
          <dd>
  A variable-length integer specifying the length of the token in bytes.</dd>
          <dt>Token:</dt>
          <dd>
  An opaque blob that the client may use with a future Initial packet. The token
MUST NOT be empty.  An endpoint MUST treat receipt of a NEW_TOKEN frame with
an empty Token field as a connection error of type FRAME_ENCODING_ERROR.</dd>
        </dl>
        <t>An endpoint might receive multiple NEW_TOKEN frames that contain the same token
value if packets containing the frame are incorrectly determined to be lost.
Endpoints are responsible for discarding duplicate values, which might be used
to link connection attempts; see <xref target="validate-future" format="default"/>.</t>
        <t>Clients MUST NOT send NEW_TOKEN frames.  Servers MUST treat receipt of a
NEW_TOKEN frame as a connection error of type PROTOCOL_VIOLATION.</t>
      </section>
      <section anchor="frame-stream" numbered="true" toc="default">
        <name>STREAM Frames</name>
        <t>STREAM frames implicitly create a stream and carry stream data.  The STREAM
frame takes the form 0b00001XXX (or the set of values from 0x08 to 0x0f).  The
value of the three low-order bits of the frame type determines the fields that
are present in the frame.</t>
        <ul spacing="normal">
          <li>The OFF bit (0x04) in the frame type is set to indicate that there is an
Offset field present.  When set to 1, the Offset field is present.  When set
to 0, the Offset field is absent and the Stream Data starts at an offset of 0
(that is, the frame contains the first bytes of the stream, or the end of a
stream that includes no data).</li>
          <li>The LEN bit (0x02) in the frame type is set to indicate that there is a Length
field present.  If this bit is set to 0, the Length field is absent and the
Stream Data field extends to the end of the packet.  If this bit is set to 1,
the Length field is present.</li>
          <li>The FIN bit (0x01) of the frame type is set only on frames that contain the
final size of the stream.  Setting this bit indicates that the frame
marks the end of the stream.</li>
        </ul>
        <t>An endpoint that receives a STREAM frame for a send-only stream MUST terminate
the connection with error STREAM_STATE_ERROR.</t>
        <t>The STREAM frames are shown in <xref target="fig-stream" format="default"/>.</t>
        <figure anchor="fig-stream">
          <name>STREAM Frame Format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         Stream ID (i)                       ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         [Offset (i)]                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         [Length (i)]                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Stream Data (*)                      ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>STREAM frames contain the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Stream ID:</dt>
          <dd>
  A variable-length integer indicating the stream ID of the stream (see
<xref target="stream-id" format="default"/>).</dd>
          <dt>Offset:</dt>
          <dd>
  A variable-length integer specifying the byte offset in the stream for the
data in this STREAM frame.  This field is present when the OFF bit is set to
1.  When the Offset field is absent, the offset is 0.</dd>
          <dt>Length:</dt>
          <dd>
  A variable-length integer specifying the length of the Stream Data field in
this STREAM frame.  This field is present when the LEN bit is set to 1.  When
the LEN bit is set to 0, the Stream Data field consumes all the remaining
bytes in the packet.</dd>
          <dt>Stream Data:</dt>
          <dd>
  The bytes from the designated stream to be delivered.</dd>
        </dl>
        <t>When a Stream Data field has a length of 0, the offset in the STREAM frame is
the offset of the next byte that would be sent.</t>
        <t>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 MUST be treated as a connection error of type
FRAME_ENCODING_ERROR or FLOW_CONTROL_ERROR.</t>
      </section>
      <section anchor="frame-max-data" numbered="true" toc="default">
        <name>MAX_DATA Frame</name>
        <t>The MAX_DATA frame (type=0x10) is used in flow control to inform the peer of
the maximum amount of data that can be sent on the connection as a whole.</t>
        <t>The MAX_DATA frame is shown in <xref target="fig-max-data" format="default"/>.</t>
        <figure anchor="fig-max-data">
          <name>MAX_DATA Frame Format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Maximum Data (i)                     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>MAX_DATA frames contain the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Maximum Data:</dt>
          <dd>
  A variable-length integer indicating the maximum amount of data that can be
sent on the entire connection, in units of bytes.</dd>
        </dl>
        <t>All data sent in STREAM frames counts toward this limit.  The sum of the largest
received offsets on all streams - including streams in terminal states - MUST
NOT exceed the value advertised by a receiver.  An endpoint MUST terminate a
connection with a FLOW_CONTROL_ERROR error if it receives more data than the
maximum data value that it has sent, unless this is a result of a change in
the initial limits (see <xref target="zerortt-parameters" format="default"/>).</t>
      </section>
      <section anchor="frame-max-stream-data" numbered="true" toc="default">
        <name>MAX_STREAM_DATA Frame</name>
        <t>The MAX_STREAM_DATA frame (type=0x11) is used in flow control to inform a peer
of the maximum amount of data that can be sent on a stream.</t>
        <t>A MAX_STREAM_DATA frame can be sent for streams in the Recv state (see
<xref target="stream-send-states" format="default"/>). Receiving a MAX_STREAM_DATA frame for a
locally-initiated stream that has not yet been created MUST be treated as a
connection error of type STREAM_STATE_ERROR.  An endpoint that receives a
MAX_STREAM_DATA frame for a receive-only stream MUST terminate the connection
with error STREAM_STATE_ERROR.</t>
        <t>The MAX_STREAM_DATA frame is shown in <xref target="fig-max-stream-data" format="default"/>.</t>
        <figure anchor="fig-max-stream-data">
          <name>MAX_STREAM_DATA Frame Format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Stream ID (i)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    Maximum Stream Data (i)                  ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>MAX_STREAM_DATA frames contain the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Stream ID:</dt>
          <dd>
  The stream ID of the stream that is affected encoded as a variable-length
integer.</dd>
          <dt>Maximum Stream Data:</dt>
          <dd>
  A variable-length integer indicating the maximum amount of data that can be
sent on the identified stream, in units of bytes.</dd>
        </dl>
        <t>When counting data toward this limit, an endpoint accounts for the largest
received offset of data that is sent or received on the stream.  Loss or
reordering can mean that the largest received offset on a stream can be greater
than the total size of data received on that stream.  Receiving STREAM frames
might not increase the largest received offset.</t>
        <t>The data sent on a stream MUST NOT exceed the largest maximum stream data value
advertised by the receiver.  An endpoint MUST terminate a connection with a
FLOW_CONTROL_ERROR error if it receives more data than the largest maximum
stream data that it has sent for the affected stream, unless this is a result of
a change in the initial limits (see <xref target="zerortt-parameters" format="default"/>).</t>
      </section>
      <section anchor="frame-max-streams" numbered="true" toc="default">
        <name>MAX_STREAMS Frames</name>
        <t>The MAX_STREAMS frames (type=0x12 and 0x13) inform the peer of the cumulative
number of streams of a given type it is permitted to open.  A MAX_STREAMS frame
with a type of 0x12 applies to bidirectional streams, and a MAX_STREAMS frame
with a type of 0x13 applies to unidirectional streams.</t>
        <t>The MAX_STREAMS frames are shown in <xref target="fig-max-streams" format="default"/>;</t>
        <figure anchor="fig-max-streams">
          <name>MAX_STREAMS Frame Format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                     Maximum Streams (i)                     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>MAX_STREAMS frames contain the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Maximum Streams:</dt>
          <dd>
  A count of the cumulative number of streams of the corresponding type that
can be opened over the lifetime of the connection.  Stream IDs cannot exceed
2^62-1, as it is not possible to encode stream IDs larger than this value.
Receipt of a frame that permits opening of a stream larger than this limit
MUST be treated as a FRAME_ENCODING_ERROR.</dd>
        </dl>
        <t>Loss or reordering can cause a MAX_STREAMS frame to be received which states a
lower stream limit than an endpoint has previously received.  MAX_STREAMS frames
which do not increase the stream limit MUST be ignored.</t>
        <t>An endpoint MUST NOT open more streams than permitted by the current stream
limit set by its peer.  For instance, a server that receives a unidirectional
stream limit of 3 is permitted to open stream 3, 7, and 11, but not stream 15.
An endpoint MUST terminate a connection with a STREAM_LIMIT_ERROR error if a
peer opens more streams than was permitted.</t>
        <t>Note that these frames (and the corresponding transport parameters) do not
describe the number of streams that can be opened concurrently.  The limit
includes streams that have been closed as well as those that are open.</t>
      </section>
      <section anchor="frame-data-blocked" numbered="true" toc="default">
        <name>DATA_BLOCKED Frame</name>
        <t>A sender SHOULD send a DATA_BLOCKED frame (type=0x14) when it wishes to send
data, but is unable to due to connection-level flow control (see
<xref target="flow-control" format="default"/>).  DATA_BLOCKED frames can be used as input to tuning of flow
control algorithms (see <xref target="fc-credit" format="default"/>).</t>
        <t>The DATA_BLOCKED frame is shown in <xref target="fig-data-blocked" format="default"/>.</t>
        <figure anchor="fig-data-blocked">
          <name>DATA_BLOCKED Frame Format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                       Data Limit (i)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>DATA_BLOCKED frames contain the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Data Limit:</dt>
          <dd>
  A variable-length integer indicating the connection-level limit at which
blocking occurred.</dd>
        </dl>
      </section>
      <section anchor="frame-stream-data-blocked" numbered="true" toc="default">
        <name>STREAM_DATA_BLOCKED Frame</name>
        <t>A sender SHOULD send a STREAM_DATA_BLOCKED frame (type=0x15) when it wishes to
send data, but is unable to due to stream-level flow control.  This frame is
analogous to DATA_BLOCKED (<xref target="frame-data-blocked" format="default"/>).</t>
        <t>An endpoint that receives a STREAM_DATA_BLOCKED frame for a send-only stream
MUST terminate the connection with error STREAM_STATE_ERROR.</t>
        <t>The STREAM_DATA_BLOCKED frame is shown in <xref target="fig-stream-data-blocked" format="default"/>.</t>
        <figure anchor="fig-stream-data-blocked">
          <name>STREAM_DATA_BLOCKED Frame Format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Stream ID (i)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    Stream Data Limit (i)                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>STREAM_DATA_BLOCKED frames contain the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Stream ID:</dt>
          <dd>
  A variable-length integer indicating the stream which is flow control blocked.</dd>
          <dt>Stream Data Limit:</dt>
          <dd>
  A variable-length integer indicating the offset of the stream at which the
blocking occurred.</dd>
        </dl>
      </section>
      <section anchor="frame-streams-blocked" numbered="true" toc="default">
        <name>STREAMS_BLOCKED Frames</name>
        <t>A sender SHOULD send a STREAMS_BLOCKED frame (type=0x16 or 0x17) when it wishes
to open a stream, but is unable to due to the maximum stream limit set by its
peer (see <xref target="frame-max-streams" format="default"/>).  A STREAMS_BLOCKED frame of type 0x16 is used
to indicate reaching the bidirectional stream limit, and a STREAMS_BLOCKED frame
of type 0x17 indicates reaching the unidirectional stream limit.</t>
        <t>A STREAMS_BLOCKED frame does not open the stream, but informs the peer that a
new stream was needed and the stream limit prevented the creation of the stream.</t>
        <t>The STREAMS_BLOCKED frames are shown in <xref target="fig-streams-blocked" format="default"/>.</t>
        <figure anchor="fig-streams-blocked">
          <name>STREAMS_BLOCKED Frame Format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Stream Limit (i)                     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>STREAMS_BLOCKED frames contain the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Stream Limit:</dt>
          <dd>
  A variable-length integer indicating the stream limit at the time the frame
was sent.  Stream IDs cannot exceed 2^62-1, as it is not possible to encode
stream IDs larger than this value.  Receipt of a frame that encodes a larger
stream ID MUST be treated as a STREAM_LIMIT_ERROR or a FRAME_ENCODING_ERROR.</dd>
        </dl>
      </section>
      <section anchor="frame-new-connection-id" numbered="true" toc="default">
        <name>NEW_CONNECTION_ID Frame</name>
        <t>An endpoint sends a NEW_CONNECTION_ID frame (type=0x18) to provide its peer with
alternative connection IDs that can be used to break linkability when migrating
connections (see <xref target="migration-linkability" format="default"/>).</t>
        <t>The NEW_CONNECTION_ID frame is shown in <xref target="fig-new-connection-id" format="default"/>.</t>
        <figure anchor="fig-new-connection-id">
          <name>NEW_CONNECTION_ID Frame Format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                      Sequence Number (i)                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                      Retire Prior To (i)                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|   Length (8)  |                                               |
+-+-+-+-+-+-+-+-+       Connection ID (8..160)                  +
|                                                             ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                                                               +
|                                                               |
+                   Stateless Reset Token (128)                 +
|                                                               |
+                                                               +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>NEW_CONNECTION_ID frames contain the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Sequence Number:</dt>
          <dd>
  The sequence number assigned to the connection ID by the sender.  See
<xref target="issue-cid" format="default"/>.</dd>
          <dt>Retire Prior To:</dt>
          <dd>
  A variable-length integer indicating which connection IDs should be retired.
See <xref target="retiring-cids" format="default"/>.</dd>
          <dt>Length:</dt>
          <dd>
  An 8-bit unsigned integer containing the length of the connection ID.  Values
less than 1 and greater than 20 are invalid and MUST be treated as a
connection error of type FRAME_ENCODING_ERROR.</dd>
          <dt>Connection ID:</dt>
          <dd>
  A connection ID of the specified length.</dd>
          <dt>Stateless Reset Token:</dt>
          <dd>
  A 128-bit value that will be used for a stateless reset when the associated
connection ID is used (see <xref target="stateless-reset" format="default"/>).</dd>
        </dl>
        <t>An endpoint MUST NOT send this frame if it currently requires that its peer send
packets with a zero-length Destination Connection ID.  Changing the length of a
connection ID to or from zero-length makes it difficult to identify when the
value of the connection ID changed.  An endpoint that is sending packets with a
zero-length Destination Connection ID MUST treat receipt of a NEW_CONNECTION_ID
frame as a connection error of type PROTOCOL_VIOLATION.</t>
        <t>Transmission errors, timeouts and retransmissions might cause the same
NEW_CONNECTION_ID frame to be received multiple times.  Receipt of the same
frame multiple times MUST NOT be treated as a connection error.  A receiver can
use the sequence number supplied in the NEW_CONNECTION_ID frame to identify new
connection IDs from old ones.</t>
        <t>If an endpoint receives a NEW_CONNECTION_ID frame that repeats a previously
issued connection ID with a different Stateless Reset Token or a different
sequence number, or if a sequence number is used for different connection
IDs, the endpoint MAY treat that receipt as a connection error of type
PROTOCOL_VIOLATION.</t>
        <t>The Retire Prior To field counts connection IDs established during connection
setup and the preferred_address transport parameter (see <xref target="retiring-cids" format="default"/>). The
Retire Prior To field MUST be less than or equal to the Sequence Number field.
Receiving a value greater than the Sequence Number MUST be treated as a
connection error of type FRAME_ENCODING_ERROR.</t>
        <t>Once a sender indicates a Retire Prior To value, smaller values sent in
subsequent NEW_CONNECTION_ID frames have no effect. A receiver MUST ignore any
Retire Prior To fields that do not increase the largest received Retire Prior To
value.</t>
        <t>An endpoint that receives a NEW_CONNECTION_ID frame with a sequence number
smaller than the Retire Prior To field of a previously received
NEW_CONNECTION_ID frame MUST immediately send a corresponding
RETIRE_CONNECTION_ID frame that retires the newly received connection ID.</t>
      </section>
      <section anchor="frame-retire-connection-id" numbered="true" toc="default">
        <name>RETIRE_CONNECTION_ID Frame</name>
        <t>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.  Sending a RETIRE_CONNECTION_ID
frame also serves as a request to the peer to send additional connection IDs for
future use (see <xref target="connection-id" format="default"/>).  New connection IDs can be delivered to a
peer using the NEW_CONNECTION_ID frame (<xref target="frame-new-connection-id" format="default"/>).</t>
        <t>Retiring a connection ID invalidates the stateless reset token associated with
that connection ID.</t>
        <t>The RETIRE_CONNECTION_ID frame is shown in <xref target="fig-retire-connection-id" format="default"/>.</t>
        <figure anchor="fig-retire-connection-id">
          <name>RETIRE_CONNECTION_ID Frame Format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                      Sequence Number (i)                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>RETIRE_CONNECTION_ID frames contain the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Sequence Number:</dt>
          <dd>
  The sequence number of the connection ID being retired.  See
<xref target="retiring-cids" format="default"/>.</dd>
        </dl>
        <t>Receipt of a RETIRE_CONNECTION_ID frame containing a sequence number greater
than any previously sent to the peer MUST be treated as a connection error of
type PROTOCOL_VIOLATION.</t>
        <t>The sequence number specified in a RETIRE_CONNECTION_ID frame MUST NOT refer
to the Destination Connection ID field of the packet in which the frame is
contained.  The peer MAY treat this as a connection error of type
FRAME_ENCODING_ERROR.</t>
        <t>An endpoint cannot send this frame if it was provided with a zero-length
connection ID by its peer.  An endpoint that provides a zero-length connection
ID MUST treat receipt of a RETIRE_CONNECTION_ID frame as a connection error of
type PROTOCOL_VIOLATION.</t>
      </section>
      <section anchor="frame-path-challenge" numbered="true" toc="default">
        <name>PATH_CHALLENGE Frame</name>
        <t>Endpoints can use PATH_CHALLENGE frames (type=0x1a) to check reachability to the
peer and for path validation during connection migration.</t>
        <t>The PATH_CHALLENGE frame is shown in <xref target="fig-path-challenge" format="default"/>.</t>
        <figure anchor="fig-path-challenge">
          <name>PATH_CHALLENGE Frame Format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                           Data (64)                           +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>PATH_CHALLENGE frames contain the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Data:</dt>
          <dd>
  This 8-byte field contains arbitrary data.</dd>
        </dl>
        <t>A PATH_CHALLENGE frame containing 8 bytes that are hard to guess is sufficient
to ensure that it is easier to receive the packet than it is to guess the value
correctly.</t>
        <t>The recipient of this frame MUST generate a PATH_RESPONSE frame
(<xref target="frame-path-response" format="default"/>) containing the same Data.</t>
      </section>
      <section anchor="frame-path-response" numbered="true" toc="default">
        <name>PATH_RESPONSE Frame</name>
        <t>The PATH_RESPONSE frame (type=0x1b) is sent in response to a PATH_CHALLENGE
frame.  Its format is identical to the PATH_CHALLENGE frame
(<xref target="frame-path-challenge" format="default"/>).</t>
        <t>If the content of a PATH_RESPONSE frame does not match the content of a
PATH_CHALLENGE frame previously sent by the endpoint, the endpoint MAY generate
a connection error of type PROTOCOL_VIOLATION.</t>
      </section>
      <section anchor="frame-connection-close" numbered="true" toc="default">
        <name>CONNECTION_CLOSE Frames</name>
        <t>An endpoint sends a CONNECTION_CLOSE frame (type=0x1c or 0x1d) to notify its
peer that the connection is being closed.  The CONNECTION_CLOSE with a frame
type of 0x1c is used to signal errors at only the QUIC layer, or the absence of
errors (with the NO_ERROR code).  The CONNECTION_CLOSE frame with a type of 0x1d
is used to signal an error with the application that uses QUIC.</t>
        <t>If there are open streams that haven't been explicitly closed, they are
implicitly closed when the connection is closed.</t>
        <t>The CONNECTION_CLOSE frames are shown in <xref target="fig-connection-close" format="default"/>.</t>
        <figure anchor="fig-connection-close">
          <name>CONNECTION_CLOSE Frame Format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         Error Code (i)                      ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                       [ Frame Type (i) ]                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    Reason Phrase Length (i)                 ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Reason Phrase (*)                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>CONNECTION_CLOSE frames contain the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Error Code:</dt>
          <dd>
  A variable length integer error code which indicates the reason for
closing this connection.  A CONNECTION_CLOSE frame of type 0x1c uses codes
from the space defined in <xref target="error-codes" format="default"/>.  A CONNECTION_CLOSE frame of
type 0x1d uses codes from the application protocol error code space;
see <xref target="app-error-codes" format="default"/></dd>
          <dt>Frame Type:</dt>
          <dd>
  A variable-length integer encoding the type of frame that triggered the error.
A value of 0 (equivalent to the mention of the PADDING frame) is used when the
frame type is unknown.  The application-specific variant of CONNECTION_CLOSE
(type 0x1d) does not include this field.</dd>
          <dt>Reason Phrase Length:</dt>
          <dd>
  A variable-length integer specifying the length of the reason phrase in bytes.
Because a CONNECTION_CLOSE frame cannot be split between packets, any limits
on packet size will also limit the space available for a reason phrase.</dd>
          <dt>Reason Phrase:</dt>
          <dd>
  A human-readable explanation for why the connection was closed.  This can be
zero length if the sender chooses to not give details beyond the Error Code.
This SHOULD be a UTF-8 encoded string <xref target="RFC3629" format="default"/>.</dd>
        </dl>
        <t>The application-specific variant of CONNECTION_CLOSE (type 0x1d) can only be
sent using an 1-RTT packet (<xref target="QUIC-TLS" format="default"/>, Section 4).  When an application
wishes to abandon a connection during the handshake, an endpoint can send a
CONNECTION_CLOSE frame (type 0x1c) with an error code of 0x15a ("user_canceled"
alert; see <xref target="TLS13" format="default"/>) in an Initial or a Handshake packet.</t>
      </section>
      <section anchor="frame-handshake-done" numbered="true" toc="default">
        <name>HANDSHAKE_DONE frame</name>
        <t>The server uses the HANDSHAKE_DONE frame (type=0x1e) to signal confirmation of
the handshake to the client.  The HANDSHAKE_DONE frame contains no additional
fields.</t>
        <t>This frame can only be sent by the server. Servers MUST NOT send a
HANDSHAKE_DONE frame before completing the handshake.  A server MUST treat
receipt of a HANDSHAKE_DONE frame as a connection error of type
PROTOCOL_VIOLATION.</t>
      </section>
      <section anchor="extension-frames" numbered="true" toc="default">
        <name>Extension Frames</name>
        <t>QUIC frames do not use a self-describing encoding.  An endpoint therefore needs
to understand the syntax of all frames before it can successfully process a
packet.  This allows for efficient encoding of frames, but it means that an
endpoint cannot send a frame of a type that is unknown to its peer.</t>
        <t>An extension to QUIC that wishes to use a new type of frame MUST first ensure
that a peer is able to understand the frame.  An endpoint can use a transport
parameter to signal its willingness to receive one or more extension frame types
with the one transport parameter.</t>
        <t>Extensions that modify or replace core protocol functionality (including frame
types) will be difficult to combine with other extensions which modify or
replace the same functionality unless the behavior of the combination is
explicitly defined.  Such extensions SHOULD define their interaction with
previously-defined extensions modifying the same protocol components.</t>
        <t>Extension frames MUST be congestion controlled and MUST cause an ACK frame to
be sent.  The exception is extension frames that replace or supplement the ACK
frame.  Extension frames are not included in flow control unless specified
in the extension.</t>
        <t>An IANA registry is used to manage the assignment of frame types; see
<xref target="iana-frames" format="default"/>.</t>
      </section>
    </section>
    <section anchor="error-codes" numbered="true" toc="default">
      <name>Transport Error Codes</name>
      <t>QUIC error codes are 62-bit unsigned integers.</t>
      <t>This section lists the defined QUIC transport error codes that may be used in a
CONNECTION_CLOSE frame.  These errors apply to the entire connection.</t>
      <dl newline="false" spacing="normal">
        <dt>NO_ERROR (0x0):</dt>
        <dd>
  An endpoint uses this with CONNECTION_CLOSE to signal that the connection is
being closed abruptly in the absence of any error.</dd>
        <dt>INTERNAL_ERROR (0x1):</dt>
        <dd>
  The endpoint encountered an internal error and cannot continue with the
connection.</dd>
        <dt>SERVER_BUSY (0x2):</dt>
        <dd>
  The server is currently busy and does not accept any new connections.</dd>
        <dt>FLOW_CONTROL_ERROR (0x3):</dt>
        <dd>
  An endpoint received more data than it permitted in its advertised data limits
(see <xref target="flow-control" format="default"/>).</dd>
        <dt>STREAM_LIMIT_ERROR (0x4):</dt>
        <dd>
  An endpoint received a frame for a stream identifier that exceeded its
advertised stream limit for the corresponding stream type.</dd>
        <dt>STREAM_STATE_ERROR (0x5):</dt>
        <dd>
  An endpoint received a frame for a stream that was not in a state that
permitted that frame (see <xref target="stream-states" format="default"/>).</dd>
        <dt>FINAL_SIZE_ERROR (0x6):</dt>
        <dd>
  An endpoint received a STREAM frame containing data that exceeded the
previously established final size.  Or an endpoint received a STREAM frame or
a RESET_STREAM frame containing a final size that was lower than the size of
stream data that was already received.  Or an endpoint received a STREAM frame
or a RESET_STREAM frame containing a different final size to the one already
established.</dd>
        <dt>FRAME_ENCODING_ERROR (0x7):</dt>
        <dd>
  An endpoint received a frame that was badly formatted.  For instance, a frame
of an unknown type, or an ACK frame that has more acknowledgment ranges than
the remainder of the packet could carry.</dd>
        <dt>TRANSPORT_PARAMETER_ERROR (0x8):</dt>
        <dd>
  An endpoint received transport parameters that were badly formatted, included
an invalid value, was absent even though it is mandatory, was present though
it is forbidden, or is otherwise in error.</dd>
        <dt>CONNECTION_ID_LIMIT_ERROR (0x9):</dt>
        <dd>
  The number of connection IDs provided by the peer exceeds the advertised
active_connection_id_limit.</dd>
        <dt>PROTOCOL_VIOLATION (0xA):</dt>
        <dd>
  An endpoint detected an error with protocol compliance that was not covered by
more specific error codes.</dd>
        <dt>INVALID_TOKEN (0xB):</dt>
        <dd>
  A server received a Retry Token in a client Initial that is invalid.</dd>
        <dt>CRYPTO_BUFFER_EXCEEDED (0xD):</dt>
        <dd>
  An endpoint has received more data in CRYPTO frames than it can buffer.</dd>
        <dt>CRYPTO_ERROR (0x1XX):</dt>
        <dd>
  The cryptographic handshake failed.  A range of 256 values is reserved for
carrying error codes specific to the cryptographic handshake that is used.
Codes for errors occurring when TLS is used for the crypto handshake are
described in Section 4.8 of <xref target="QUIC-TLS" format="default"/>.</dd>
      </dl>
      <t>See <xref target="iana-error-codes" format="default"/> for details of registering new error codes.</t>
      <t>In defining these error codes, several principles are applied.  Error conditions
that might require specific action on the part of a recipient are given unique
codes.  Errors that represent common conditions are given specific codes.
Absent either of these conditions, error codes are used to identify a general
function of the stack, like flow control or transport parameter handling.
Finally, generic errors are provided for conditions where implementations are
unable or unwilling to use more specific codes.</t>
      <section anchor="app-error-codes" numbered="true" toc="default">
        <name>Application Protocol Error Codes</name>
        <t>Application protocol error codes are 62-bit unsigned integers, but the
management of application error codes is left to application protocols.
Application protocol error codes are used for the RESET_STREAM frame
(<xref target="frame-reset-stream" format="default"/>), the STOP_SENDING frame (<xref target="frame-stop-sending" format="default"/>), and
the CONNECTION_CLOSE frame with a type of 0x1d (<xref target="frame-connection-close" format="default"/>).</t>
      </section>
    </section>
    <section anchor="security-considerations" numbered="true" toc="default">
      <name>Security Considerations</name>
      <section anchor="handshake-dos" numbered="true" toc="default">
        <name>Handshake Denial of Service</name>
        <t>As an encrypted and authenticated transport QUIC provides a range of protections
against denial of service.  Once the cryptographic handshake is complete, QUIC
endpoints discard most packets that are not authenticated, greatly limiting the
ability of an attacker to interfere with existing connections.</t>
        <t>Once a connection is established QUIC endpoints might accept some
unauthenticated ICMP packets (see <xref target="icmp-pmtud" format="default"/>), but the use of these packets
is extremely limited.  The only other type of packet that an endpoint might
accept is a stateless reset (<xref target="stateless-reset" format="default"/>) which relies on the token
being kept secret until it is used.</t>
        <t>During the creation of a connection, QUIC only provides protection against
attack from off the network path.  All QUIC packets contain proof that the
recipient saw a preceding packet from its peer.</t>
        <t>Addresses cannot change during the handshake, so endpoints can discard packets
that are received on a different network path.</t>
        <t>The Source and Destination Connection ID fields are the primary means of
protection against off-path attack during the handshake.  These are required to
match those set by a peer.  Except for an Initial and stateless reset packets,
an endpoint only accepts packets that include a Destination Connection ID field
that matches a value the endpoint previously chose.  This is the only protection
offered for Version Negotiation packets.</t>
        <t>The Destination Connection ID field in an Initial packet is selected by a client
to be unpredictable, which serves an additional purpose.  The packets that carry
the cryptographic handshake are protected with a key that is derived from this
connection ID and salt specific to the QUIC version.  This allows endpoints to
use the same process for authenticating packets that they receive as they use
after the cryptographic handshake completes.  Packets that cannot be
authenticated are discarded.  Protecting packets in this fashion provides a
strong assurance that the sender of the packet saw the Initial packet and
understood it.</t>
        <t>These protections are not intended to be effective against an attacker that is
able to receive QUIC packets prior to the connection being established.  Such an
attacker can potentially send packets that will be accepted by QUIC endpoints.
This version of QUIC attempts to detect this sort of attack, but it expects that
endpoints will fail to establish a connection rather than recovering.  For the
most part, the cryptographic handshake protocol <xref target="QUIC-TLS" format="default"/> is responsible for
detecting tampering during the handshake.</t>
        <t>Endpoints are permitted to use other methods to detect and attempt to recover
from interference with the handshake.  Invalid packets may be identified and
discarded using other methods, but no specific method is mandated in this
document.</t>
      </section>
      <section anchor="amplification-attack" numbered="true" toc="default">
        <name>Amplification Attack</name>
        <t>An attacker might be able to receive an address validation token
(<xref target="address-validation" format="default"/>) from a server and then release the IP address it used
to acquire that token.  At a later time, the attacker may initiate a 0-RTT
connection with a server by spoofing this same address, which might now address
a different (victim) endpoint.  The attacker can thus potentially cause the
server to send an initial congestion window's worth of data towards the victim.</t>
        <t>Servers SHOULD provide mitigations for this attack by limiting the usage and
lifetime of address validation tokens (see <xref target="validate-future" format="default"/>).</t>
      </section>
      <section anchor="optimistic-ack-attack" numbered="true" toc="default">
        <name>Optimistic ACK Attack</name>
        <t>An endpoint that acknowledges packets it has not received might cause a
congestion controller to permit sending at rates beyond what the network
supports.  An endpoint MAY skip packet numbers when sending packets to detect
this behavior.  An endpoint can then immediately close the connection with a
connection error of type PROTOCOL_VIOLATION (see <xref target="immediate-close" format="default"/>).</t>
      </section>
      <section anchor="slowloris-attacks" numbered="true" toc="default">
        <name>Slowloris Attacks</name>
        <t>The attacks commonly known as Slowloris <xref target="SLOWLORIS" format="default"/> try to keep many
connections to the target endpoint open and hold them open as long as possible.
These attacks can be executed against a QUIC endpoint by generating the minimum
amount of activity necessary to avoid being closed for inactivity.  This might
involve sending small amounts of data, gradually opening flow control windows in
order to control the sender rate, or manufacturing ACK frames that simulate a
high loss rate.</t>
        <t>QUIC deployments SHOULD provide mitigations for the Slowloris attacks, such as
increasing the maximum number of clients the server will allow, limiting the
number of connections a single IP address is allowed to make, imposing
restrictions on the minimum transfer speed a connection is allowed to have, and
restricting the length of time an endpoint is allowed to stay connected.</t>
      </section>
      <section anchor="stream-fragmentation-and-reassembly-attacks" numbered="true" toc="default">
        <name>Stream Fragmentation and Reassembly Attacks</name>
        <t>An adversarial sender might intentionally send fragments of stream data in
order to cause disproportionate receive buffer memory commitment and/or
creation of a large and inefficient data structure.</t>
        <t>An adversarial receiver might intentionally not acknowledge packets
containing stream data in order to force the sender to store the
unacknowledged stream data for retransmission.</t>
        <t>The attack on receivers is mitigated if flow control windows correspond to
available memory.  However, some receivers will over-commit memory and
advertise flow control offsets in the aggregate that exceed actual available
memory.  The over-commitment strategy can lead to better performance when
endpoints are well behaved, but renders endpoints vulnerable to the stream
fragmentation attack.</t>
        <t>QUIC deployments SHOULD provide mitigations against stream fragmentation
attacks.  Mitigations could consist of avoiding over-committing memory,
limiting the size of tracking data structures, delaying reassembly
of STREAM frames, implementing heuristics based on the age and
duration of reassembly holes, or some combination.</t>
      </section>
      <section anchor="stream-commitment-attack" numbered="true" toc="default">
        <name>Stream Commitment Attack</name>
        <t>An adversarial endpoint can open lots of streams, exhausting state on an
endpoint.  The adversarial endpoint could repeat the process on a large number
of connections, in a manner similar to SYN flooding attacks in TCP.</t>
        <t>Normally, clients will open streams sequentially, as explained in <xref target="stream-id" format="default"/>.
However, when several streams are initiated at short intervals, loss or
reordering may cause STREAM frames that open streams to be received out of
sequence.  On receiving a higher-numbered stream ID, a receiver is required to
open all intervening streams of the same type (see <xref target="stream-recv-states" format="default"/>).
Thus, on a new connection, opening stream 4000000 opens 1 million and 1
client-initiated bidirectional streams.</t>
        <t>The number of active streams is limited by the initial_max_streams_bidi and
initial_max_streams_uni transport parameters, as explained in
<xref target="controlling-concurrency" format="default"/>.  If chosen judiciously, these limits mitigate the
effect of the stream commitment attack.  However, setting the limit too low
could affect performance when applications expect to open large number of
streams.</t>
      </section>
      <section anchor="useless" numbered="true" toc="default">
        <name>Peer Denial of Service</name>
        <t>QUIC and TLS both contain messages that have legitimate uses in some contexts,
but that can be abused to cause a peer to expend processing resources without
having any observable impact on the state of the connection.</t>
        <t>Messages can also be used to change and revert state in small or inconsequential
ways, such as by sending small increments to flow control limits.</t>
        <t>If processing costs are disproportionately large in comparison to bandwidth
consumption or effect on state, then this could allow a malicious peer to
exhaust processing capacity.</t>
        <t>While there are legitimate uses for all messages, implementations SHOULD track
cost of processing relative to progress and treat excessive quantities of any
non-productive packets as indicative of an attack.  Endpoints MAY respond to
this condition with a connection error, or by dropping packets.</t>
      </section>
      <section anchor="security-ecn" numbered="true" toc="default">
        <name>Explicit Congestion Notification Attacks</name>
        <t>An on-path attacker could manipulate the value of ECN codepoints in the IP
header to influence the sender's rate. <xref target="RFC3168" format="default"/> discusses manipulations and
their effects in more detail.</t>
        <t>An on-the-side attacker can duplicate and send packets with modified ECN
codepoints to affect the sender's rate.  If duplicate packets are discarded by a
receiver, an off-path attacker will need to race the duplicate packet against
the original to be successful in this attack.  Therefore, QUIC endpoints ignore
the ECN codepoint field on an IP packet unless at least one QUIC packet in that
IP packet is successfully processed; see <xref target="ecn" format="default"/>.</t>
      </section>
      <section anchor="reset-oracle" numbered="true" toc="default">
        <name>Stateless Reset Oracle</name>
        <t>Stateless resets create a possible denial of service attack analogous to a TCP
reset injection. This attack is possible if an attacker is able to cause a
stateless reset token to be generated for a connection with a selected
connection ID. An attacker that can cause this token to be generated can reset
an active connection with the same connection ID.</t>
        <t>If a packet can be routed to different instances that share a static key, for
example by changing an IP address or port, then an attacker can cause the server
to send a stateless reset.  To defend against this style of denial service,
endpoints that share a static key for stateless reset (see <xref target="reset-token" format="default"/>) MUST
be arranged so that packets with a given connection ID always arrive at an
instance that has connection state, unless that connection is no longer active.</t>
        <t>In the case of a cluster that uses dynamic load balancing, it's possible that a
change in load balancer configuration could happen while an active instance
retains connection state; even if an instance retains connection state, the
change in routing and resulting stateless reset will result in the connection
being terminated.  If there is no chance in the packet being routed to the
correct instance, it is better to send a stateless reset than wait for
connections to time out.  However, this is acceptable only if the routing cannot
be influenced by an attacker.</t>
      </section>
      <section anchor="version-downgrade" numbered="true" toc="default">
        <name>Version Downgrade</name>
        <t>This document defines QUIC Version Negotiation packets in
<xref target="version-negotiation" format="default"/>, which can be used to negotiate the QUIC version used
between two endpoints. However, this document does not specify how this
negotiation will be performed between this version and subsequent future
versions.  In particular, Version Negotiation packets do not contain any
mechanism to prevent version downgrade attacks.  Future versions of QUIC that
use Version Negotiation packets MUST define a mechanism that is robust against
version downgrade attacks.</t>
      </section>
      <section anchor="targeted-attacks-by-routing" numbered="true" toc="default">
        <name>Targeted Attacks by Routing</name>
        <t>Deployments should limit the ability of an attacker to target a new connection
to a particular server instance.  This means that client-controlled fields, such
as the initial Destination Connection ID used on Initial and 0-RTT packets
SHOULD NOT be used by themselves to make routing decisions.  Ideally, routing
decisions are made independently of client-selected values; a Source Connection
ID can be selected to route later packets to the same server.</t>
      </section>
      <section anchor="security-properties" numbered="true" toc="default">
        <name>Overview of Security Properties</name>
        <t>A complete security analysis of QUIC is outside the scope of this document.
This section provides an informal description of the desired security properties
as an aid to implementors and to help guide protocol analysis.</t>
        <t>QUIC assumes the threat model described in <xref target="SEC-CONS" format="default"/> and provides
protections against many of the attacks that arise from that model.</t>
        <t>For this purpose, attacks are divided into passive and active attacks.  Passive
attackers have the capability to read packets from the network, while active
attackers also have the capability to write packets into the network.  However,
a passive attack may involve an attacker with the ability to cause a routing
change or other modification in the path taken by packets that comprise a
connection.</t>
        <t>Attackers are additionally categorized as either on-path attackers or off-path
attackers; see Section 3.5 of <xref target="SEC-CONS" format="default"/>.  An on-path attacker can read,
modify, or remove any packet it observes such that it no longer reaches its
destination, while an off-path attacker observes the packets, but cannot prevent
the original packet from reaching its intended destination.  An off-path
attacker can also transmit arbitrary packets.</t>
        <t>Properties of the handshake, protected packets, and connection migration are
considered separately.</t>
        <section anchor="handshake-properties" numbered="true" toc="default">
          <name>Handshake</name>
          <t>The QUIC handshake incorporates the TLS 1.3 handshake and enjoys the
cryptographic properties described in Appendix E.1 of <xref target="TLS13" format="default"/>.</t>
          <t>In addition to those properties, the handshake is intended to provide some
defense against DoS attacks on the handshake, as described below.</t>
          <section anchor="anti-amplification" numbered="true" toc="default">
            <name>Anti-Amplification</name>
            <t>Address validation (<xref target="address-validation" format="default"/>) is used to verify that an entity
that claims a given address is able to receive packets at that address. Address
validation limits amplification attack targets to addresses for which an
attacker is either on-path or off-path.</t>
            <t>Prior to validation, endpoints are limited in what they are able to send.
During the handshake, a server cannot send more than three times the data it
receives; clients that initiate new connections or migrate to a new network
path are limited.</t>
          </section>
          <section anchor="server-side-dos" numbered="true" toc="default">
            <name>Server-Side DoS</name>
            <t>Computing the server's first flight for a full handshake is potentially
expensive, requiring both a signature and a key exchange computation. In order
to prevent computational DoS attacks, the Retry packet provides a cheap token
exchange mechanism which allows servers to validate a client's IP address prior
to doing any expensive computations at the cost of a single round trip. After a
successful handshake, servers can issue new tokens to a client which will allow
new connection establishment without incurring this cost.</t>
          </section>
          <section anchor="on-path-handshake-termination" numbered="true" toc="default">
            <name>On-Path Handshake Termination</name>
            <t>An on-path or off-path attacker can force a handshake to fail by replacing or
racing Initial packets. Once valid Initial packets have been exchanged,
subsequent Handshake packets are protected with the handshake keys and an
on-path attacker cannot force handshake failure other than by dropping packets
to cause endpoints to abandon the attempt.</t>
            <t>An on-path attacker can also replace the addresses of packets on either side and
therefore cause the client or server to have an incorrect view of the remote
addresses. Such an attack is indistinguishable from the functions performed by a
NAT.</t>
          </section>
          <section anchor="parameter-negotiation" numbered="true" toc="default">
            <name>Parameter Negotiation</name>
            <t>The entire handshake is cryptographically protected, with the Initial packets
being encrypted with per-version keys and the Handshake and later packets being
encrypted with keys derived from the TLS key exchange.  Further, parameter
negotiation is folded into the TLS transcript and thus provides the same
security guarantees as ordinary TLS negotiation.  Thus, an attacker can observe
the client's transport parameters (as long as it knows the version-specific
salt) but cannot observe the server's transport parameters and cannot influence
parameter negotiation.</t>
            <t>Connection IDs are unencrypted but integrity protected in all packets.</t>
            <t>This version of QUIC does not incorporate a version negotiation mechanism;
implementations of incompatible versions will simply fail to establish a
connection.</t>
          </section>
        </section>
        <section anchor="protected-packet-properties" numbered="true" toc="default">
          <name>Protected Packets</name>
          <t>Packet protection (<xref target="packet-protected" format="default"/>) provides authentication and encryption
of all packets except Version Negotiation packets, though Initial and Retry
packets have limited encryption and authentication based on version-specific
keys; see <xref target="QUIC-TLS" format="default"/> for more details. This section considers passive and
active attacks against protected packets.</t>
          <t>Both on-path and off-path attackers can mount a passive attack in which they
save observed packets for an offline attack against packet protection at a
future time; this is true for any observer of any packet on any network.</t>
          <t>A blind attacker, one who injects packets without being able to observe valid
packets for a connection, is unlikely to be successful, since packet protection
ensures that valid packets are only generated by endpoints which possess the
key material established during the handshake; see <xref target="handshake" format="default"/> and
<xref target="handshake-properties" format="default"/>. Similarly, any active attacker that observes packets
and attempts to insert new data or modify existing data in those packets should
not be able to generate packets deemed valid by the receiving endpoint.</t>
          <t>A spoofing attack, in which an active attacker rewrites unprotected parts of a
packet that it forwards or injects, such as the source or destination
address, is only effective if the attacker can forward packets to the original
endpoint.  Packet protection ensures that the packet payloads can only be
processed by the endpoints that completed the handshake, and invalid
packets are ignored by those endpoints.</t>
          <t>An attacker can also modify the boundaries between packets and UDP datagrams,
causing multiple packets to be coalesced into a single datagram, or splitting
coalesced packets into multiple datagrams. Aside from datagrams containing
Initial packets, which require padding, modification of how packets are
arranged in datagrams has no functional effect on a connection, although it
might change some performance characteristics.</t>
        </section>
        <section anchor="migration-properties" numbered="true" toc="default">
          <name>Connection Migration</name>
          <t>Connection Migration (<xref target="migration" format="default"/>) provides endpoints with the ability to
transition between IP addresses and ports on multiple paths, using one path at a
time for transmission and receipt of non-probing frames.  Path validation
(<xref target="migrate-validate" format="default"/>) establishes that a peer is both willing and able
to receive packets sent on a particular path.  This helps reduce the effects of
address spoofing by limiting the number of packets sent to a spoofed address.</t>
          <t>This section describes the intended security properties of connection migration
when under various types of DoS attacks.</t>
          <section anchor="on-path-active-attacks" numbered="true" toc="default">
            <name>On-Path Active Attacks</name>
            <t>An attacker that can cause a packet it observes to no longer reach its intended
destination is considered an on-path attacker. When an attacker is present
between a client and server, endpoints are required to send packets through the
attacker to establish connectivity on a given path.</t>
            <t>An on-path attacker can:</t>
            <ul spacing="normal">
              <li>Inspect packets</li>
              <li>Modify IP and UDP packet headers</li>
              <li>Inject new packets</li>
              <li>Delay packets</li>
              <li>Reorder packets</li>
              <li>Drop packets</li>
              <li>Split and merge datagrams along packet boundaries</li>
            </ul>
            <t>An on-path attacker cannot:</t>
            <ul spacing="normal">
              <li>Modify an authenticated portion of a packet and cause the recipient to accept
that packet</li>
            </ul>
            <t>An on-path attacker has the opportunity to modify the packets that it observes,
however any modifications to an authenticated portion of a packet will cause it
to be dropped by the receiving endpoint as invalid, as packet payloads are both
authenticated and encrypted.</t>
            <t>In the presence of an on-path attacker, QUIC aims to provide the following
properties:</t>
            <ol spacing="normal" type="1">
              <li>An on-path attacker can prevent use of a path for a connection, causing
it to fail if it cannot use a different path that does not contain the
attacker. This can be achieved by dropping all packets, modifying them so
that they fail to decrypt, or other methods.</li>
              <li>An on-path attacker can prevent migration to a new path for which the
attacker is also on-path by causing path validation to fail on the new path.</li>
              <li>An on-path attacker cannot prevent a client from migrating to a path for
which the attacker is not on-path.</li>
              <li>An on-path attacker can reduce the throughput of a connection by delaying
packets or dropping them.</li>
              <li>An on-path attacker cannot cause an endpoint to accept a packet for which it
has modified an authenticated portion of that packet.</li>
            </ol>
          </section>
          <section anchor="off-path-active-attacks" numbered="true" toc="default">
            <name>Off-Path Active Attacks</name>
            <t>An off-path attacker is not directly on the path between a client and server,
but could be able to obtain copies of some or all packets sent between the
client and the server. It is also able to send copies of those packets to
either endpoint.</t>
            <t>An off-path attacker can:</t>
            <ul spacing="normal">
              <li>Inspect packets</li>
              <li>Inject new packets</li>
              <li>Reorder injected packets</li>
            </ul>
            <t>An off-path attacker cannot:</t>
            <ul spacing="normal">
              <li>Modify any part of a packet</li>
              <li>Delay packets</li>
              <li>Drop packets</li>
              <li>Reorder original packets</li>
            </ul>
            <t>An off-path attacker can modify packets that it has observed and inject them
back into the network, potentially with spoofed source and destination
addresses.</t>
            <t>For the purposes of this discussion, it is assumed 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, an 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.</t>
            <t>It is also assumed that an attacker has the resources necessary to affect NAT
state, potentially both causing an endpoint to lose its NAT binding, and an
attacker to obtain the same port for use with its traffic.</t>
            <t>In the presence of an off-path attacker, QUIC aims to provide the following
properties:</t>
            <ol spacing="normal" type="1">
              <li>An off-path attacker can race packets and attempt to become a "limited"
on-path attacker.</li>
              <li>An off-path attacker can cause path validation to succeed for forwarded
packets with the source address listed as the off-path attacker as long as
it can provide improved connectivity between the client and the server.</li>
              <li>An off-path attacker cannot cause a connection to close once the handshake
has completed.</li>
              <li>An off-path attacker cannot cause migration to a new path to fail if it
cannot observe the new path.</li>
              <li>An off-path attacker can become a limited on-path attacker during migration
to a new path for which it is also an off-path attacker.</li>
              <li>An off-path attacker can become a limited on-path attacker by affecting
shared NAT state such that it sends packets to the server from the same IP
address and port that the client originally used.</li>
            </ol>
          </section>
          <section anchor="limited-on-path-active-attacks" numbered="true" toc="default">
            <name>Limited On-Path Active Attacks</name>
            <t>A limited on-path attacker is an off-path attacker that has offered improved
routing of packets by duplicating and forwarding original packets between the
server and the client, causing those packets to arrive before the original
copies such that the original packets are dropped by the destination endpoint.</t>
            <t>A limited on-path attacker differs from an on-path attacker in that it is not on
the original path between endpoints, and therefore the original packets sent by
an endpoint are still reaching their destination.  This means that a future
failure to route copied packets to the destination faster than their original
path will not prevent the original packets from reaching the destination.</t>
            <t>A limited on-path attacker can:</t>
            <ul spacing="normal">
              <li>Inspect packets</li>
              <li>Inject new packets</li>
              <li>Modify unencrypted packet headers</li>
              <li>Reorder packets</li>
            </ul>
            <t>A limited on-path attacker cannot:</t>
            <ul spacing="normal">
              <li>Delay packets so that they arrive later than packets sent on the original path</li>
              <li>Drop packets</li>
              <li>Modify the authenticated and encrypted portion of a packet and cause the
 recipient to accept that packet</li>
            </ul>
            <t>A limited on-path attacker can only delay packets up to the point that the
original packets arrive before the duplicate packets, meaning that it cannot
offer routing with worse latency than the original path.  If a limited on-path
attacker drops packets, the original copy will still arrive at the destination
endpoint.</t>
            <t>In the presence of a limited on-path attacker, QUIC aims to provide the
following properties:</t>
            <ol spacing="normal" type="1">
              <li>A limited on-path attacker cannot cause a connection to close once the
handshake has completed.</li>
              <li>A limited on-path attacker cannot cause an idle connection to close if the
client is first to resume activity.</li>
              <li>A limited on-path attacker can cause an idle connection to be deemed lost if
the server is the first to resume activity.</li>
            </ol>
            <t>Note that these guarantees are the same guarantees provided for any NAT, for the
same reasons.</t>
          </section>
        </section>
      </section>
    </section>
    <section anchor="iana" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <t>This document establishes several registries for the management of codepoints in
QUIC.  These registries operate on a common set of policies as defined in
<xref target="iana-policy" format="default"/>.</t>
      <section anchor="iana-policy" numbered="true" toc="default">
        <name>Registration Policies for QUIC Registries</name>
        <t>All QUIC registries allow for both provisional and permanent registration of
codepoints.  This section documents policies that are common to these
registries.</t>
        <section anchor="iana-provisional" numbered="true" toc="default">
          <name>Provisional Registrations</name>
          <t>Provisional registration of codepoints are intended to allow for private use and
experimentation with extensions to QUIC.  Provisional registrations only require
the inclusion of the codepoint value and contact information.  However,
provisional registrations could be reclaimed and reassigned for another purpose.</t>
          <t>Provisional registrations require Expert Review, as defined in Section 4.5 of
<xref target="RFC8126" format="default"/>.  Designated expert(s) are advised that only registrations for an
excessive proportion of remaining codepoint space or the very first unassigned
value (see <xref target="iana-random" format="default"/>) can be rejected.</t>
          <t>Provisional registrations will include a date field that indicates when the
registration was last updated.  A request to update the date on any provisional
registration can be made without review from the designated expert(s).</t>
          <t>All QUIC registries include the following fields to support provisional
registration:</t>
          <dl newline="false" spacing="normal">
            <dt>Value:</dt>
            <dd>
  The assigned codepoint.</dd>
            <dt>Status:</dt>
            <dd>
  "Permanent" or "Provisional".</dd>
            <dt>Specification:</dt>
            <dd>
  A reference to a publicly available specification for the value.</dd>
            <dt>Date:</dt>
            <dd>
  The date of last update to the registration.</dd>
            <dt>Contact:</dt>
            <dd>
  Contact details for the registrant.</dd>
            <dt>Notes:</dt>
            <dd>
  Supplementary notes about the registration.</dd>
          </dl>
          <t>Provisional registrations MAY omit the Specification and Notes fields, plus any
additional fields that might be required for a permanent registration.  The Date
field is not required as part of requesting a registration as it is set to the
date the registration is created or updated.</t>
        </section>
        <section anchor="iana-random" numbered="true" toc="default">
          <name>Selecting Codepoints</name>
          <t>New uses of codepoints from QUIC registries SHOULD use a randomly selected
codepoint that excludes both existing allocations and the first unallocated
codepoint in the selected space.  Requests for multiple codepoints MAY use a
contiguous range.  This minimizes the risk that differing semantics are
attributed to the same codepoint by different implementations.  Use of the first
codepoint in a range is intended for use by specifications that are developed
through the standards process <xref target="STD" format="default"/> and its allocation MUST be
negotiated with IANA before use.</t>
          <t>For codepoints that are encoded in variable-length integers
(<xref target="integer-encoding" format="default"/>), such as frame types, codepoints that encode to four or
eight bytes (that is, values 2^14 and above) SHOULD be used unless the usage is
especially sensitive to having a longer encoding.</t>
          <t>Applications to register codepoints in QUIC registries MAY include a codepoint
as part of the registration.  IANA MUST allocate the selected codepoint unless
that codepoint is already assigned or the codepoint is the first unallocated
codepoint in the registry.</t>
        </section>
        <section anchor="reclaiming-provisional-codepoints" numbered="true" toc="default">
          <name>Reclaiming Provisional Codepoints</name>
          <t>A request might be made to remove an unused provisional registration from the
registry to reclaim space in a registry, or portion of the registry (such as the
64-16383 range for codepoints that use variable-length encodings).  This SHOULD
be done only for the codepoints with the earliest recorded date and entries that
have been updated less than a year prior SHOULD NOT be reclaimed.</t>
          <t>A request to remove a codepoint MUST be reviewed by the designated expert(s).
The expert(s) MUST attempt to determine whether the codepoint is still in use.
Experts are advised to contact the listed contacts for the registration, plus as
wide a set of protocol implementers as possible in order to determine whether
any use of the codepoint is known.  The expert(s) are advised to allow at least
four weeks for responses.</t>
          <t>If any use of the codepoints is identified by this search or a request to update
the registration is made, the codepoint MUST NOT be reclaimed.  Instead, the
date on the registration is updated.  A note might be added for the registration
recording relevant information that was learned.</t>
          <t>If no use of the codepoint was identified and no request was made to update the
registration, the codepoint MAY be removed from the registry.</t>
          <t>This process also applies to requests to change a provisional registration into
a permanent registration, except that the goal is not to determine whether there
is no use of the codepoint, but to determine that the registration is an
accurate representation of any deployed usage.</t>
        </section>
        <section anchor="iana-permanent" numbered="true" toc="default">
          <name>Permanent Registrations</name>
          <t>Permanent registrations in QUIC registries use the Specification Required policy
<xref target="RFC8126" format="default"/>, unless otherwise specified.  The designated expert(s) verify that
a specification exists and is readily accessible.  Expert(s) are encouraged to
be biased towards approving registrations unless they are abusive, frivolous, or
actively harmful (not merely aesthetically displeasing, or architecturally
dubious).  The creation of a registry MAY specify additional constraints on
permanent registrations.</t>
          <t>The creation of a registries MAY identify a range of codepoints where
registrations are governed by a different registration policy.  For instance,
the registries for 62-bit codepoints in this document have stricter policies for
codepoints in the range from 0 to 63.</t>
          <t>Any stricter requirements for permanent registrations do not prevent provisional
registrations for affected codepoints.  For instance, a provisional registration
for a frame type <xref target="iana-frames" format="default"/> of 61 could be requested.</t>
          <t>All registrations made by Standards Track publications MUST be permanent.</t>
          <t>All registrations in this document are assigned a permanent status and list as
contact both the IESG (ietf@ietf.org) and the QUIC working group
(quic@ietf.org).</t>
        </section>
      </section>
      <section anchor="iana-transport-parameters" numbered="true" toc="default">
        <name>QUIC Transport Parameter Registry</name>
        <t>IANA [SHALL add/has added] a registry for "QUIC Transport Parameters" under a
"QUIC" heading.</t>
        <t>The "QUIC Transport Parameters" registry governs a 16-bit space.  This registry
follows the registration policy from <xref target="iana-policy" format="default"/>.  Permanent registrations
in this registry are assigned using the Specification Required policy
<xref target="RFC8126" format="default"/>.</t>
        <t>In addition to the fields in <xref target="iana-provisional" format="default"/>, permanent registrations in
this registry MUST include the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Parameter Name:</dt>
          <dd>
  A short mnemonic for the parameter.</dd>
        </dl>
        <t>The initial contents of this registry are shown in <xref target="iana-tp-table" format="default"/>.</t>
        <table anchor="iana-tp-table" align="center">
          <name>Initial QUIC Transport Parameters Entries</name>
          <thead>
            <tr>
              <th align="left">Value</th>
              <th align="left">Parameter Name</th>
              <th align="left">Specification</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0x0000</td>
              <td align="left">original_connection_id</td>
              <td align="left">
                <xref target="transport-parameter-definitions" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x0001</td>
              <td align="left">max_idle_timeout</td>
              <td align="left">
                <xref target="transport-parameter-definitions" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x0002</td>
              <td align="left">stateless_reset_token</td>
              <td align="left">
                <xref target="transport-parameter-definitions" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x0003</td>
              <td align="left">max_packet_size</td>
              <td align="left">
                <xref target="transport-parameter-definitions" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x0004</td>
              <td align="left">initial_max_data</td>
              <td align="left">
                <xref target="transport-parameter-definitions" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x0005</td>
              <td align="left">initial_max_stream_data_bidi_local</td>
              <td align="left">
                <xref target="transport-parameter-definitions" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x0006</td>
              <td align="left">initial_max_stream_data_bidi_remote</td>
              <td align="left">
                <xref target="transport-parameter-definitions" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x0007</td>
              <td align="left">initial_max_stream_data_uni</td>
              <td align="left">
                <xref target="transport-parameter-definitions" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x0008</td>
              <td align="left">initial_max_streams_bidi</td>
              <td align="left">
                <xref target="transport-parameter-definitions" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x0009</td>
              <td align="left">initial_max_streams_uni</td>
              <td align="left">
                <xref target="transport-parameter-definitions" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x000a</td>
              <td align="left">ack_delay_exponent</td>
              <td align="left">
                <xref target="transport-parameter-definitions" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x000b</td>
              <td align="left">max_ack_delay</td>
              <td align="left">
                <xref target="transport-parameter-definitions" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x000c</td>
              <td align="left">disable_active_migration</td>
              <td align="left">
                <xref target="transport-parameter-definitions" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x000d</td>
              <td align="left">preferred_address</td>
              <td align="left">
                <xref target="transport-parameter-definitions" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x000e</td>
              <td align="left">active_connection_id_limit</td>
              <td align="left">
                <xref target="transport-parameter-definitions" format="default"/></td>
            </tr>
          </tbody>
        </table>
        <t>Additionally, each value of the format <tt>31 * N + 27</tt> for integer values of N
(that is, <tt>27</tt>, <tt>58</tt>, <tt>89</tt>, ...) are reserved and MUST NOT be assigned by IANA.</t>
      </section>
      <section anchor="iana-frames" numbered="true" toc="default">
        <name>QUIC Frame Type Registry</name>
        <t>IANA [SHALL add/has added] a registry for "QUIC Frame Types" under a
"QUIC" heading.</t>
        <t>The "QUIC Frame Types" registry governs a 62-bit space.  This registry follows
the registration policy from <xref target="iana-policy" format="default"/>.  Permanent registrations in this
registry are assigned using the Specification Required policy <xref target="RFC8126" format="default"/>,
except for values between 0x00 and 0x3f (in hexadecimal; inclusive), which are
assigned using Standards Action or IESG Approval as defined in Section 4.9 and
4.10 of <xref target="RFC8126" format="default"/>.</t>
        <t>In addition to the fields in <xref target="iana-provisional" format="default"/>, permanent registrations in
this registry MUST include the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Frame Name:</dt>
          <dd>
  A short mnemonic for the frame type.</dd>
        </dl>
        <t>In addition to the advice in <xref target="iana-policy" format="default"/>, specifications for new permanent
registrations SHOULD describe the means by which an endpoint might determine
that it can send the identified type of frame.  An accompanying transport
parameter registration (see <xref target="iana-transport-parameters" format="default"/>) is expected for most
registrations.  Specifications for permanent registrations also needs to
describe the format and assigned semantics of any fields in the frame.</t>
        <t>The initial contents of this registry are tabulated in <xref target="frame-types" format="default"/>.</t>
      </section>
      <section anchor="iana-error-codes" numbered="true" toc="default">
        <name>QUIC Transport Error Codes Registry</name>
        <t>IANA [SHALL add/has added] a registry for "QUIC Transport Error Codes" under a
"QUIC" heading.</t>
        <t>The "QUIC Transport Error Codes" registry governs a 62-bit space.  This space is
split into three spaces that are governed by different policies.  Permanent
registrations in this registry are assigned using the Specification Required
policy <xref target="RFC8126" format="default"/>, except for values between 0x00 and 0x3f (in hexadecimal;
inclusive), which are assigned using Standards Action or IESG Approval as
defined in Section 4.9 and 4.10 of <xref target="RFC8126" format="default"/>.</t>
        <t>In addition to the fields in <xref target="iana-provisional" format="default"/>, permanent registrations in
this registry MUST include the following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>Code:</dt>
          <dd>
  A short mnemonic for the parameter.</dd>
          <dt>Description:</dt>
          <dd>
  A brief description of the error code semantics, which MAY be a summary if a
specification reference is provided.</dd>
        </dl>
        <t>The initial contents of this registry are shown in <xref target="iana-error-table" format="default"/>.</t>
        <table anchor="iana-error-table" align="center">
          <name>Initial QUIC Transport Error Codes Entries</name>
          <thead>
            <tr>
              <th align="left">Value</th>
              <th align="left">Error</th>
              <th align="left">Description</th>
              <th align="left">Specification</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0x0</td>
              <td align="left">NO_ERROR</td>
              <td align="left">No error</td>
              <td align="left">
                <xref target="error-codes" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x1</td>
              <td align="left">INTERNAL_ERROR</td>
              <td align="left">Implementation error</td>
              <td align="left">
                <xref target="error-codes" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x2</td>
              <td align="left">SERVER_BUSY</td>
              <td align="left">Server currently busy</td>
              <td align="left">
                <xref target="error-codes" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x3</td>
              <td align="left">FLOW_CONTROL_ERROR</td>
              <td align="left">Flow control error</td>
              <td align="left">
                <xref target="error-codes" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x4</td>
              <td align="left">STREAM_LIMIT_ERROR</td>
              <td align="left">Too many streams opened</td>
              <td align="left">
                <xref target="error-codes" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x5</td>
              <td align="left">STREAM_STATE_ERROR</td>
              <td align="left">Frame received in invalid stream state</td>
              <td align="left">
                <xref target="error-codes" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x6</td>
              <td align="left">FINAL_SIZE_ERROR</td>
              <td align="left">Change to final size</td>
              <td align="left">
                <xref target="error-codes" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x7</td>
              <td align="left">FRAME_ENCODING_ERROR</td>
              <td align="left">Frame encoding error</td>
              <td align="left">
                <xref target="error-codes" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x8</td>
              <td align="left">TRANSPORT_PARAMETER_ERROR</td>
              <td align="left">Error in transport parameters</td>
              <td align="left">
                <xref target="error-codes" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0x9</td>
              <td align="left">CONNECTION_ID_LIMIT_ERROR</td>
              <td align="left">Too many connection IDs received</td>
              <td align="left">
                <xref target="error-codes" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0xA</td>
              <td align="left">PROTOCOL_VIOLATION</td>
              <td align="left">Generic protocol violation</td>
              <td align="left">
                <xref target="error-codes" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0xB</td>
              <td align="left">INVALID_TOKEN</td>
              <td align="left">Invalid Token Received</td>
              <td align="left">
                <xref target="error-codes" format="default"/></td>
            </tr>
            <tr>
              <td align="left">0xD</td>
              <td align="left">CRYPTO_BUFFER_EXCEEDED</td>
              <td align="left">CRYPTO data buffer overflowed</td>
              <td align="left">
                <xref target="error-codes" format="default"/></td>
            </tr>
          </tbody>
        </table>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="QUIC-RECOVERY">
          <front>
            <title>QUIC Loss Detection and Congestion Control</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-quic-recovery-26"/>
            <author initials="J." surname="Iyengar" fullname="Jana Iyengar" role="editor">
              <organization>Fastly</organization>
            </author>
            <author initials="I." surname="Swett" fullname="Ian Swett" role="editor">
              <organization>Google</organization>
            </author>
            <date year="2020" month="February" day="21"/>
          </front>
        </reference>
        <reference anchor="QUIC-TLS">
          <front>
            <title>Using Transport Layer Security (TLS) to Secure QUIC</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-quic-tls-26"/>
            <author initials="M." surname="Thomson" fullname="Martin Thomson" role="editor">
              <organization>Mozilla</organization>
            </author>
            <author initials="S." surname="Turner" fullname="Sean Turner" role="editor">
              <organization>sn3rd</organization>
            </author>
            <date year="2020" month="February" day="21"/>
          </front>
        </reference>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <seriesInfo name="DOI" value="10.17487/RFC2119"/>
            <seriesInfo name="RFC" value="2119"/>
            <seriesInfo name="BCP" value="14"/>
            <author initials="S." surname="Bradner" fullname="S. Bradner">
              <organization/>
            </author>
            <date year="1997" month="March"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC8174" target="https://www.rfc-editor.org/info/rfc8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <seriesInfo name="DOI" value="10.17487/RFC8174"/>
            <seriesInfo name="RFC" value="8174"/>
            <seriesInfo name="BCP" value="14"/>
            <author initials="B." surname="Leiba" fullname="B. Leiba">
              <organization/>
            </author>
            <date year="2017" month="May"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC6437" target="https://www.rfc-editor.org/info/rfc6437">
          <front>
            <title>IPv6 Flow Label Specification</title>
            <seriesInfo name="DOI" value="10.17487/RFC6437"/>
            <seriesInfo name="RFC" value="6437"/>
            <author initials="S." surname="Amante" fullname="S. Amante">
              <organization/>
            </author>
            <author initials="B." surname="Carpenter" fullname="B. Carpenter">
              <organization/>
            </author>
            <author initials="S." surname="Jiang" fullname="S. Jiang">
              <organization/>
            </author>
            <author initials="J." surname="Rajahalme" fullname="J. Rajahalme">
              <organization/>
            </author>
            <date year="2011" month="November"/>
            <abstract>
              <t>This document specifies the IPv6 Flow Label field and the minimum requirements for IPv6 nodes labeling flows, IPv6 nodes forwarding labeled packets, and flow state establishment methods.  Even when mentioned as examples of possible uses of the flow labeling, more detailed requirements for specific use cases are out of the scope for this document.</t>
              <t>The usage of the Flow Label field enables efficient IPv6 flow classification based only on IPv6 main header fields in fixed positions.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC4086" target="https://www.rfc-editor.org/info/rfc4086">
          <front>
            <title>Randomness Requirements for Security</title>
            <seriesInfo name="DOI" value="10.17487/RFC4086"/>
            <seriesInfo name="RFC" value="4086"/>
            <seriesInfo name="BCP" value="106"/>
            <author initials="D." surname="Eastlake 3rd" fullname="D. Eastlake 3rd">
              <organization/>
            </author>
            <author initials="J." surname="Schiller" fullname="J. Schiller">
              <organization/>
            </author>
            <author initials="S." surname="Crocker" fullname="S. Crocker">
              <organization/>
            </author>
            <date year="2005" month="June"/>
            <abstract>
              <t>Security systems are built on strong cryptographic algorithms that foil pattern analysis attempts.  However, the security of these systems is dependent on generating secret quantities for passwords, cryptographic keys, and similar quantities.  The use of pseudo-random processes to generate secret quantities can result in pseudo-security. A sophisticated attacker may find it easier to reproduce the environment that produced the secret quantities and to search the resulting small set of possibilities than to locate the quantities in the whole of the potential number space.</t>
              <t>Choosing random quantities to foil a resourceful and motivated adversary is surprisingly difficult.  This document points out many pitfalls in using poor entropy sources or traditional pseudo-random number generation techniques for generating such quantities.  It recommends the use of truly random hardware techniques and shows that the existing hardware on many systems can be used for this purpose. It provides suggestions to ameliorate the problem when a hardware solution is not available, and it gives examples of how large such quantities need to be for some applications.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC5116" target="https://www.rfc-editor.org/info/rfc5116">
          <front>
            <title>An Interface and Algorithms for Authenticated Encryption</title>
            <seriesInfo name="DOI" value="10.17487/RFC5116"/>
            <seriesInfo name="RFC" value="5116"/>
            <author initials="D." surname="McGrew" fullname="D. McGrew">
              <organization/>
            </author>
            <date year="2008" month="January"/>
            <abstract>
              <t>This document defines algorithms for Authenticated Encryption with Associated Data (AEAD), and defines a uniform interface and a registry for such algorithms.  The interface and registry can be used as an application-independent set of cryptoalgorithm suites.  This approach provides advantages in efficiency and security, and promotes the reuse of crypto implementations.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC3168" target="https://www.rfc-editor.org/info/rfc3168">
          <front>
            <title>The Addition of Explicit Congestion Notification (ECN) to IP</title>
            <seriesInfo name="DOI" value="10.17487/RFC3168"/>
            <seriesInfo name="RFC" value="3168"/>
            <author initials="K." surname="Ramakrishnan" fullname="K. Ramakrishnan">
              <organization/>
            </author>
            <author initials="S." surname="Floyd" fullname="S. Floyd">
              <organization/>
            </author>
            <author initials="D." surname="Black" fullname="D. Black">
              <organization/>
            </author>
            <date year="2001" month="September"/>
            <abstract>
              <t>This memo specifies the incorporation of ECN (Explicit Congestion Notification) to TCP and IP, including ECN's use of two bits in the IP header.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC8311" target="https://www.rfc-editor.org/info/rfc8311">
          <front>
            <title>Relaxing Restrictions on Explicit Congestion Notification (ECN) Experimentation</title>
            <seriesInfo name="DOI" value="10.17487/RFC8311"/>
            <seriesInfo name="RFC" value="8311"/>
            <author initials="D." surname="Black" fullname="D. Black">
              <organization/>
            </author>
            <date year="2018" month="January"/>
            <abstract>
              <t>This memo updates RFC 3168, which specifies Explicit Congestion Notification (ECN) as an alternative to packet drops for indicating network congestion to endpoints.  It relaxes restrictions in RFC 3168 that hinder experimentation towards benefits beyond just removal of loss.  This memo summarizes the anticipated areas of experimentation and updates RFC 3168 to enable experimentation in these areas.  An Experimental RFC in the IETF document stream is required to take advantage of any of these enabling updates.  In addition, this memo makes related updates to the ECN specifications for RTP in RFC 6679 and for the Datagram Congestion Control Protocol (DCCP) in RFCs 4341, 4342, and 5622.  This memo also records the conclusion of the ECN nonce experiment in RFC 3540 and provides the rationale for reclassification of RFC 3540 from Experimental to Historic; this reclassification enables new experimental use of the ECT(1) codepoint.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="IPv4" target="https://www.rfc-editor.org/info/rfc791">
          <front>
            <title>Internet Protocol</title>
            <seriesInfo name="DOI" value="10.17487/RFC0791"/>
            <seriesInfo name="RFC" value="791"/>
            <seriesInfo name="STD" value="5"/>
            <author initials="J." surname="Postel" fullname="J. Postel">
              <organization/>
            </author>
            <date year="1981" month="September"/>
          </front>
        </reference>
        <reference anchor="RFC8085" target="https://www.rfc-editor.org/info/rfc8085">
          <front>
            <title>UDP Usage Guidelines</title>
            <seriesInfo name="DOI" value="10.17487/RFC8085"/>
            <seriesInfo name="RFC" value="8085"/>
            <seriesInfo name="BCP" value="145"/>
            <author initials="L." surname="Eggert" fullname="L. Eggert">
              <organization/>
            </author>
            <author initials="G." surname="Fairhurst" fullname="G. Fairhurst">
              <organization/>
            </author>
            <author initials="G." surname="Shepherd" fullname="G. Shepherd">
              <organization/>
            </author>
            <date year="2017" month="March"/>
            <abstract>
              <t>The User Datagram Protocol (UDP) provides a minimal message-passing transport that has no inherent congestion control mechanisms.  This document provides guidelines on the use of UDP for the designers of applications, tunnels, and other protocols that use UDP.  Congestion control guidelines are a primary focus, but the document also provides guidance on other topics, including message sizes, reliability, checksums, middlebox traversal, the use of Explicit Congestion Notification (ECN), Differentiated Services Code Points (DSCPs), and ports.</t>
              <t>Because congestion control is critical to the stable operation of the Internet, applications and other protocols that choose to use UDP as an Internet transport must employ mechanisms to prevent congestion collapse and to establish some degree of fairness with concurrent traffic.  They may also need to implement additional mechanisms, depending on how they use UDP.</t>
              <t>Some guidance is also applicable to the design of other protocols (e.g., protocols layered directly on IP or via IP-based tunnels), especially when these protocols do not themselves provide congestion control.</t>
              <t>This document obsoletes RFC 5405 and adds guidelines for multicast UDP usage.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="DPLPMTUD" target="http://www.ietf.org/internet-drafts/draft-ietf-tsvwg-datagram-plpmtud-08.txt">
          <front>
            <title>Packetization Layer Path MTU Discovery for Datagram Transports</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-tsvwg-datagram-plpmtud-08"/>
            <author initials="G" surname="Fairhurst" fullname="Gorry Fairhurst">
              <organization/>
            </author>
            <author initials="T" surname="Jones" fullname="Tom Jones">
              <organization/>
            </author>
            <author initials="M" surname="Tuexen" fullname="Michael Tuexen">
              <organization/>
            </author>
            <author initials="I" surname="Ruengeler" fullname="Irene Ruengeler">
              <organization/>
            </author>
            <author initials="T" surname="Voelker" fullname="Timo Voelker">
              <organization/>
            </author>
            <date month="June" day="5" year="2019"/>
            <abstract>
              <t>This document describes a robust method for Path MTU Discovery (PMTUD) for datagram Packetization Layers (PLs).  It describes an extension to RFC 1191 and RFC 8201, which specifies ICMP-based Path MTU Discovery for IPv4 and IPv6.  The method allows a PL, or a datagram application that uses a PL, to discover whether a network path can support the current size of datagram.  This can be used to detect and reduce the message size when a sender encounters a network black hole (where packets are discarded).  The method can probe a network path with progressively larger packets to discover whether the maximum packet size can be increased.  This allows a sender to determine an appropriate packet size, providing functionally for datagram transports that is equivalent to the Packetization Layer PMTUD specification for TCP, specified in RFC 4821.  The document also provides implementation notes for incorporating Datagram PMTUD into IETF datagram transports or applications that use datagram transports.  When published, this specification updates RFC 4821.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC1191" target="https://www.rfc-editor.org/info/rfc1191">
          <front>
            <title>Path MTU discovery</title>
            <seriesInfo name="DOI" value="10.17487/RFC1191"/>
            <seriesInfo name="RFC" value="1191"/>
            <author initials="J.C." surname="Mogul" fullname="J.C. Mogul">
              <organization/>
            </author>
            <author initials="S.E." surname="Deering" fullname="S.E. Deering">
              <organization/>
            </author>
            <date year="1990" month="November"/>
            <abstract>
              <t>This memo describes a technique for dynamically discovering the maximum transmission unit (MTU) of an arbitrary internet path.  It specifies a small change to the way routers generate one type of ICMP message.  For a path that passes through a router that has not been so changed, this technique might not discover the correct Path MTU, but it will always choose a Path MTU as accurate as, and in many cases more accurate than, the Path MTU that would be chosen by current practice.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC8201" target="https://www.rfc-editor.org/info/rfc8201">
          <front>
            <title>Path MTU Discovery for IP version 6</title>
            <seriesInfo name="DOI" value="10.17487/RFC8201"/>
            <seriesInfo name="RFC" value="8201"/>
            <seriesInfo name="STD" value="87"/>
            <author initials="J." surname="McCann" fullname="J. McCann">
              <organization/>
            </author>
            <author initials="S." surname="Deering" fullname="S. Deering">
              <organization/>
            </author>
            <author initials="J." surname="Mogul" fullname="J. Mogul">
              <organization/>
            </author>
            <author initials="R." surname="Hinden" fullname="R. Hinden" role="editor">
              <organization/>
            </author>
            <date year="2017" month="July"/>
            <abstract>
              <t>This document describes Path MTU Discovery (PMTUD) for IP version 6. It is largely derived from RFC 1191, which describes Path MTU Discovery for IP version 4.  It obsoletes RFC 1981.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="TLS13" target="https://www.rfc-editor.org/info/rfc8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <seriesInfo name="DOI" value="10.17487/RFC8446"/>
            <seriesInfo name="RFC" value="8446"/>
            <author initials="E." surname="Rescorla" fullname="E. Rescorla">
              <organization/>
            </author>
            <date year="2018" month="August"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC3629" target="https://www.rfc-editor.org/info/rfc3629">
          <front>
            <title>UTF-8, a transformation format of ISO 10646</title>
            <seriesInfo name="DOI" value="10.17487/RFC3629"/>
            <seriesInfo name="RFC" value="3629"/>
            <seriesInfo name="STD" value="63"/>
            <author initials="F." surname="Yergeau" fullname="F. Yergeau">
              <organization/>
            </author>
            <date year="2003" month="November"/>
            <abstract>
              <t>ISO/IEC 10646-1 defines a large character set called the Universal Character Set (UCS) which encompasses most of the world's writing systems.  The originally proposed encodings of the UCS, however, were not compatible with many current applications and protocols, and this has led to the development of UTF-8, the object of this memo.  UTF-8 has the characteristic of preserving the full US-ASCII range, providing compatibility with file systems, parsers and other software that rely on US-ASCII values but are transparent to other values.  This memo obsoletes and replaces RFC 2279.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC8126" target="https://www.rfc-editor.org/info/rfc8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <seriesInfo name="DOI" value="10.17487/RFC8126"/>
            <seriesInfo name="RFC" value="8126"/>
            <seriesInfo name="BCP" value="26"/>
            <author initials="M." surname="Cotton" fullname="M. Cotton">
              <organization/>
            </author>
            <author initials="B." surname="Leiba" fullname="B. Leiba">
              <organization/>
            </author>
            <author initials="T." surname="Narten" fullname="T. Narten">
              <organization/>
            </author>
            <date year="2017" month="June"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters.  To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper.  For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed.  This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="QUIC-INVARIANTS">
          <front>
            <title>Version-Independent Properties of QUIC</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-quic-invariants-07"/>
            <author initials="M." surname="Thomson" fullname="Martin Thomson">
              <organization>Mozilla</organization>
            </author>
            <date year="2020" month="February" day="21"/>
          </front>
        </reference>
        <reference anchor="EARLY-DESIGN" target="https://goo.gl/dMVtFi">
          <front>
            <title>QUIC: Multiplexed Transport Over UDP</title>
            <author initials="J." surname="Roskind">
              <organization/>
            </author>
            <date year="2013" month="December" day="02"/>
          </front>
        </reference>
        <reference anchor="SLOWLORIS" target="https://web.archive.org/web/20150315054838/http://ha.ckers.org/slowloris/">
          <front>
            <title>Welcome to Slowloris...</title>
            <author initials="R." surname="RSnake Hansen">
              <organization/>
            </author>
            <date year="2009" month="June"/>
          </front>
        </reference>
        <reference anchor="RFC2360" target="https://www.rfc-editor.org/info/rfc2360">
          <front>
            <title>Guide for Internet Standards Writers</title>
            <seriesInfo name="DOI" value="10.17487/RFC2360"/>
            <seriesInfo name="RFC" value="2360"/>
            <seriesInfo name="BCP" value="22"/>
            <author initials="G." surname="Scott" fullname="G. Scott">
              <organization/>
            </author>
            <date year="1998" month="June"/>
            <abstract>
              <t>This document is a guide for Internet standard writers.  It defines those characteristics that make standards coherent, unambiguous, and easy to interpret.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="HTTP2" target="https://www.rfc-editor.org/info/rfc7540">
          <front>
            <title>Hypertext Transfer Protocol Version 2 (HTTP/2)</title>
            <seriesInfo name="DOI" value="10.17487/RFC7540"/>
            <seriesInfo name="RFC" value="7540"/>
            <author initials="M." surname="Belshe" fullname="M. Belshe">
              <organization/>
            </author>
            <author initials="R." surname="Peon" fullname="R. Peon">
              <organization/>
            </author>
            <author initials="M." surname="Thomson" fullname="M. Thomson" role="editor">
              <organization/>
            </author>
            <date year="2015" month="May"/>
            <abstract>
              <t>This specification describes an optimized expression of the semantics of the Hypertext Transfer Protocol (HTTP), referred to as HTTP version 2 (HTTP/2).  HTTP/2 enables a more efficient use of network resources and a reduced perception of latency by introducing header field compression and allowing multiple concurrent exchanges on the same connection.  It also introduces unsolicited push of representations from servers to clients.</t>
              <t>This specification is an alternative to, but does not obsolete, the HTTP/1.1 message syntax.  HTTP's existing semantics remain unchanged.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC7301" target="https://www.rfc-editor.org/info/rfc7301">
          <front>
            <title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
            <seriesInfo name="DOI" value="10.17487/RFC7301"/>
            <seriesInfo name="RFC" value="7301"/>
            <author initials="S." surname="Friedl" fullname="S. Friedl">
              <organization/>
            </author>
            <author initials="A." surname="Popov" fullname="A. Popov">
              <organization/>
            </author>
            <author initials="A." surname="Langley" fullname="A. Langley">
              <organization/>
            </author>
            <author initials="E." surname="Stephan" fullname="E. Stephan">
              <organization/>
            </author>
            <date year="2014" month="July"/>
            <abstract>
              <t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC2104" target="https://www.rfc-editor.org/info/rfc2104">
          <front>
            <title>HMAC: Keyed-Hashing for Message Authentication</title>
            <seriesInfo name="DOI" value="10.17487/RFC2104"/>
            <seriesInfo name="RFC" value="2104"/>
            <author initials="H." surname="Krawczyk" fullname="H. Krawczyk">
              <organization/>
            </author>
            <author initials="M." surname="Bellare" fullname="M. Bellare">
              <organization/>
            </author>
            <author initials="R." surname="Canetti" fullname="R. Canetti">
              <organization/>
            </author>
            <date year="1997" month="February"/>
            <abstract>
              <t>This document describes HMAC, a mechanism for message authentication using cryptographic hash functions. HMAC can be used with any iterative cryptographic hash function, e.g., MD5, SHA-1, in combination with a secret shared key.  The cryptographic strength of HMAC depends on the properties of the underlying hash function.  This memo provides information for the Internet community.  This memo does not specify an Internet standard of any kind</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC5869" target="https://www.rfc-editor.org/info/rfc5869">
          <front>
            <title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
            <seriesInfo name="DOI" value="10.17487/RFC5869"/>
            <seriesInfo name="RFC" value="5869"/>
            <author initials="H." surname="Krawczyk" fullname="H. Krawczyk">
              <organization/>
            </author>
            <author initials="P." surname="Eronen" fullname="P. Eronen">
              <organization/>
            </author>
            <date year="2010" month="May"/>
            <abstract>
              <t>This document specifies a simple Hashed Message Authentication Code (HMAC)-based key derivation function (HKDF), which can be used as a building block in various protocols and applications.  The key derivation function (KDF) is intended to support a wide range of applications and requirements, and is conservative in its use of cryptographic hash functions.  This document is not an Internet  Standards Track specification; it is published for informational  purposes.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC4303" target="https://www.rfc-editor.org/info/rfc4303">
          <front>
            <title>IP Encapsulating Security Payload (ESP)</title>
            <seriesInfo name="DOI" value="10.17487/RFC4303"/>
            <seriesInfo name="RFC" value="4303"/>
            <author initials="S." surname="Kent" fullname="S. Kent">
              <organization/>
            </author>
            <date year="2005" month="December"/>
            <abstract>
              <t>This document describes an updated version of the Encapsulating Security Payload (ESP) protocol, which is designed to provide a mix of security services in IPv4 and IPv6.  ESP is used to provide confidentiality, data origin authentication, connectionless integrity, an anti-replay service (a form of partial sequence integrity), and limited traffic flow confidentiality.  This document obsoletes RFC 2406 (November 1998).  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC5681" target="https://www.rfc-editor.org/info/rfc5681">
          <front>
            <title>TCP Congestion Control</title>
            <seriesInfo name="DOI" value="10.17487/RFC5681"/>
            <seriesInfo name="RFC" value="5681"/>
            <author initials="M." surname="Allman" fullname="M. Allman">
              <organization/>
            </author>
            <author initials="V." surname="Paxson" fullname="V. Paxson">
              <organization/>
            </author>
            <author initials="E." surname="Blanton" fullname="E. Blanton">
              <organization/>
            </author>
            <date year="2009" month="September"/>
            <abstract>
              <t>This document defines TCP's four intertwined congestion control algorithms: slow start, congestion avoidance, fast retransmit, and fast recovery.  In addition, the document specifies how TCP should begin transmission after a relatively long idle period, as well as discussing various acknowledgment generation methods.  This document obsoletes RFC 2581.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC8200" target="https://www.rfc-editor.org/info/rfc8200">
          <front>
            <title>Internet Protocol, Version 6 (IPv6) Specification</title>
            <seriesInfo name="DOI" value="10.17487/RFC8200"/>
            <seriesInfo name="RFC" value="8200"/>
            <seriesInfo name="STD" value="86"/>
            <author initials="S." surname="Deering" fullname="S. Deering">
              <organization/>
            </author>
            <author initials="R." surname="Hinden" fullname="R. Hinden">
              <organization/>
            </author>
            <date year="2017" month="July"/>
            <abstract>
              <t>This document specifies version 6 of the Internet Protocol (IPv6). It obsoletes RFC 2460.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC1812" target="https://www.rfc-editor.org/info/rfc1812">
          <front>
            <title>Requirements for IP Version 4 Routers</title>
            <seriesInfo name="DOI" value="10.17487/RFC1812"/>
            <seriesInfo name="RFC" value="1812"/>
            <author initials="F." surname="Baker" fullname="F. Baker" role="editor">
              <organization/>
            </author>
            <date year="1995" month="June"/>
            <abstract>
              <t>This memo defines and discusses requirements for devices that perform the network layer forwarding function of the Internet protocol suite. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC4443" target="https://www.rfc-editor.org/info/rfc4443">
          <front>
            <title>Internet Control Message Protocol (ICMPv6) for the Internet Protocol Version 6 (IPv6) Specification</title>
            <seriesInfo name="DOI" value="10.17487/RFC4443"/>
            <seriesInfo name="RFC" value="4443"/>
            <seriesInfo name="STD" value="89"/>
            <author initials="A." surname="Conta" fullname="A. Conta">
              <organization/>
            </author>
            <author initials="S." surname="Deering" fullname="S. Deering">
              <organization/>
            </author>
            <author initials="M." surname="Gupta" fullname="M. Gupta" role="editor">
              <organization/>
            </author>
            <date year="2006" month="March"/>
            <abstract>
              <t>This document describes the format of a set of control messages used in ICMPv6 (Internet Control Message Protocol).  ICMPv6 is the Internet Control Message Protocol for Internet Protocol version 6 (IPv6).  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="QUIC-MANAGEABILITY" target="http://www.ietf.org/internet-drafts/draft-ietf-quic-manageability-05.txt">
          <front>
            <title>Manageability of the QUIC Transport Protocol</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-quic-manageability-05"/>
            <author initials="M" surname="Kuehlewind" fullname="Mirja Kuehlewind">
              <organization/>
            </author>
            <author initials="B" surname="Trammell" fullname="Brian Trammell">
              <organization/>
            </author>
            <date month="July" day="5" year="2019"/>
            <abstract>
              <t>This document discusses manageability of the QUIC transport protocol, focusing on caveats impacting network operations involving QUIC traffic.  Its intended audience is network operators, as well as content providers that rely on the use of QUIC-aware middleboxes, e.g. for load balancing.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC4787" target="https://www.rfc-editor.org/info/rfc4787">
          <front>
            <title>Network Address Translation (NAT) Behavioral Requirements for Unicast UDP</title>
            <seriesInfo name="DOI" value="10.17487/RFC4787"/>
            <seriesInfo name="RFC" value="4787"/>
            <seriesInfo name="BCP" value="127"/>
            <author initials="F." surname="Audet" fullname="F. Audet" role="editor">
              <organization/>
            </author>
            <author initials="C." surname="Jennings" fullname="C. Jennings">
              <organization/>
            </author>
            <date year="2007" month="January"/>
            <abstract>
              <t>This document defines basic terminology for describing different types of Network Address Translation (NAT) behavior when handling Unicast UDP and also defines a set of requirements that would allow many applications, such as multimedia communications or online gaming, to work consistently.  Developing NATs that meet this set of requirements will greatly increase the likelihood that these applications will function properly.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC2018" target="https://www.rfc-editor.org/info/rfc2018">
          <front>
            <title>TCP Selective Acknowledgment Options</title>
            <seriesInfo name="DOI" value="10.17487/RFC2018"/>
            <seriesInfo name="RFC" value="2018"/>
            <author initials="M." surname="Mathis" fullname="M. Mathis">
              <organization/>
            </author>
            <author initials="J." surname="Mahdavi" fullname="J. Mahdavi">
              <organization/>
            </author>
            <author initials="S." surname="Floyd" fullname="S. Floyd">
              <organization/>
            </author>
            <author initials="A." surname="Romanow" fullname="A. Romanow">
              <organization/>
            </author>
            <date year="1996" month="October"/>
            <abstract>
              <t>This memo proposes an implementation of SACK and discusses its performance and related issues.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="SEC-CONS" target="https://www.rfc-editor.org/info/rfc3552">
          <front>
            <title>Guidelines for Writing RFC Text on Security Considerations</title>
            <seriesInfo name="DOI" value="10.17487/RFC3552"/>
            <seriesInfo name="RFC" value="3552"/>
            <seriesInfo name="BCP" value="72"/>
            <author initials="E." surname="Rescorla" fullname="E. Rescorla">
              <organization/>
            </author>
            <author initials="B." surname="Korver" fullname="B. Korver">
              <organization/>
            </author>
            <date year="2003" month="July"/>
            <abstract>
              <t>All RFCs are required to have a Security Considerations section. Historically, such sections have been relatively weak.  This document provides guidelines to RFC authors on how to write a good Security Considerations section.   This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="STD" target="https://www.rfc-editor.org/info/rfc2026">
          <front>
            <title>The Internet Standards Process -- Revision 3</title>
            <seriesInfo name="DOI" value="10.17487/RFC2026"/>
            <seriesInfo name="RFC" value="2026"/>
            <seriesInfo name="BCP" value="9"/>
            <author initials="S." surname="Bradner" fullname="S. Bradner">
              <organization/>
            </author>
            <date year="1996" month="October"/>
            <abstract>
              <t>This memo documents the process used by the Internet community for the standardization of protocols and procedures.  It defines the stages in the standardization process, the requirements for moving a document between stages and the types of documents used during this process. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
        </reference>
      </references>
    </references>
    <section anchor="sample-packet-number-decoding" numbered="true" toc="default">
      <name>Sample Packet Number Decoding Algorithm</name>
      <t>The pseudo-code in <xref target="alg-decode-pn" format="default"/> shows how an implementation can decode
packet numbers after header protection has been removed.</t>
      <figure anchor="alg-decode-pn">
        <name>Sample Packet Number Decoding Algorithm</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
DecodePacketNumber(largest_pn, truncated_pn, pn_nbits):
   expected_pn  = largest_pn + 1
   pn_win       = 1 << pn_nbits
   pn_hwin      = pn_win / 2
   pn_mask      = pn_win - 1
   // The incoming packet number should be greater than
   // expected_pn - pn_hwin and less than or equal to
   // expected_pn + pn_hwin
   //
   // This means we can't just strip the trailing bits from
   // expected_pn and add the truncated_pn because that might
   // yield a value outside the window.
   //
   // The following code calculates a candidate value and
   // makes sure it's within the packet number window.
   // Note the extra checks to prevent overflow and underflow.
   candidate_pn = (expected_pn & ~pn_mask) | truncated_pn
   if candidate_pn <= expected_pn - pn_hwin and
      candidate_pn < (1 << 62) - pn_win:
      return candidate_pn + pn_win
   if candidate_pn > expected_pn + pn_hwin and
      candidate_pn >= pn_win:
      return candidate_pn - pn_win
   return candidate_pn
]]></artwork>
      </figure>
    </section>
    <section anchor="ecn-alg" numbered="true" toc="default">
      <name>Sample ECN Validation Algorithm</name>
      <t>Each time an endpoint commences sending on a new network path, it determines
whether the path supports ECN; see <xref target="ecn" format="default"/>.  If the path supports ECN, the goal
is to use ECN.  Endpoints might also periodically reassess a path that was
determined to not support ECN.</t>
      <t>This section describes one method for testing new paths.  This algorithm is
intended to show how a path might be tested for ECN support.  Endpoints can
implement different methods.</t>
      <t>The path is assigned an ECN state that is one of "testing", "unknown", "failed",
or "capable".  On paths with a "testing" or "capable" state the endpoint sends
packets with an ECT marking, by default ECT(0); otherwise, the endpoint sends
unmarked packets.</t>
      <t>To start testing a path, the ECN state is set to "testing" and existing ECN
counts are remembered as a baseline.</t>
      <t>The testing period runs for a number of packets or round-trip times, as
determined by the endpoint.  The goal is not to limit the duration of the
testing period, but to ensure that enough marked packets are sent for received
ECN counts to provide a clear indication of how the path treats marked packets.
<xref target="ecn-ack" format="default"/> suggests limiting this to 10 packets or 3 round-trip times.</t>
      <t>After the testing period ends, the ECN state for the path becomes "unknown".
From the "unknown" state, successful validation of the ECN counts an ACK frame
(see <xref target="ecn-ack" format="default"/>) causes the ECN state for the path to become "capable", unless
no marked packet has been acknowledged.</t>
      <t>If validation of ECN counts fails at any time, the ECN state for the affected
path becomes "failed".  An endpoint can also mark the ECN state for a path as
"failed" if marked packets are all declared lost or if they are all CE marked.</t>
      <t>Following this algorithm ensures that ECN is rarely disabled for paths that
properly support ECN.  Any path that incorrectly modifies markings will cause
ECN to be disabled.  For those rare cases where marked packets are discarded by
the path, the short duration of the testing period limits the number of losses
incurred.</t>
    </section>
    <section anchor="change-log" numbered="true" toc="default">
      <name>Change Log</name>
      <ul empty="true" spacing="normal">
        <li>
          <strong>RFC Editor's Note:</strong> Please remove this section prior to publication of a
final version of this document.</li>
      </ul>
      <t>Issue and pull request numbers are listed with a leading octothorp.</t>
      <section anchor="since-draft-ietf-quic-transport-24" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-24</name>
        <ul spacing="normal">
          <li>Added HANDSHAKE_DONE to signal handshake confirmation (#2863, #3142, #3145)</li>
          <li>Add integrity check to Retry packets (#3014, #3274, #3120)</li>
          <li>Specify handling of reordered NEW_CONNECTION_ID frames (#3194, #3202)</li>
          <li>Require checking of sequence numbers in RETIRE_CONNECTION_ID (#3037, #3036)</li>
          <li>active_connection_id_limit is enforced (#3193, #3197, #3200, #3201)</li>
          <li>Correct overflow in packet number decode algorithm (#3187, #3188)</li>
          <li>Allow use of CRYPTO_BUFFER_EXCEEDED for CRYPTO frame errors (#3258, #3186)</li>
          <li>Define applicability and scope of NEW_TOKEN (#3150, #3152, #3155, #3156)</li>
          <li>Tokens from Retry and NEW_TOKEN must be differentiated (#3127, #3128)</li>
          <li>Allow CONNECTION_CLOSE in response to invalid token (#3168, #3107)</li>
          <li>Treat an invalid CONNECTION_CLOSE as an invalid frame (#2475, #3230, #3231)</li>
          <li>Throttle when sending CONNECTION_CLOSE after discarding state (#3095, #3157)</li>
          <li>Application-variant of CONNECTION_CLOSE can only be sent in 0-RTT or 1-RTT
packets (#3158, #3164)</li>
          <li>Advise sending while blocked to avoid idle timeout (#2744, #3266)</li>
          <li>Define error codes for invalid frames (#3027, #3042)</li>
          <li>Idle timeout is symmetric (#2602, #3099)</li>
          <li>Prohibit IP fragmentation (#3243, #3280)</li>
          <li>Define the use of provisional registration for all registries (#3109, #3020,
#3102, #3170)</li>
          <li>Packets on one path must not adjust values for a different path (#2909,
#3139)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-23" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-23</name>
        <ul spacing="normal">
          <li>Allow ClientHello to span multiple packets (#2928, #3045)</li>
          <li>Client Initial size constraints apply to UDP datagram payload (#3053, #3051)</li>
          <li>
            <t>Stateless reset changes (#2152, #2993)
            </t>
            <ul spacing="normal">
              <li>tokens need to be compared in constant time</li>
              <li>detection uses UDP datagrams, not packets</li>
              <li>tokens cannot be reused (#2785, #2968)</li>
            </ul>
          </li>
          <li>Clearer rules for sharing of UDP ports and use of connection IDs when doing so
(#2844, #2851)</li>
          <li>A new connection ID is necessary when responding to migration (#2778, #2969)</li>
          <li>Stronger requirements for connection ID retirement (#3046, #3096)</li>
          <li>NEW_TOKEN cannot be empty (#2978, #2977)</li>
          <li>PING can be sent at any encryption level (#3034, #3035)</li>
          <li>CONNECTION_CLOSE is not ack-eliciting (#3097, #3098)</li>
          <li>Frame encoding error conditions updated (#3027, #3042)</li>
          <li>Non-ack-eliciting packets cannot be sent in response to non-ack-eliciting
packets (#3100, #3104)</li>
          <li>Servers have to change connection IDs in Retry (#2837, #3147)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-22" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-22</name>
        <ul spacing="normal">
          <li>Rules for preventing correlation by connection ID tightened (#2084, #2929)</li>
          <li>Clarified use of CONNECTION_CLOSE in Handshake packets (#2151, #2541, #2688)</li>
          <li>Discourage regressions of largest acknowledged in ACK (#2205, #2752)</li>
          <li>Improved robustness of validation process for ECN counts (#2534, #2752)</li>
          <li>Require endpoints to ignore spurious migration attempts (#2342, #2893)</li>
          <li>Transport parameter for disabling migration clarified to allow NAT rebinding
(#2389, #2893)</li>
          <li>Document principles for defining new error codes (#2388, #2880)</li>
          <li>Reserve transport parameters for greasing (#2550, #2873)</li>
          <li>A maximum ACK delay of 0 is used for handshake packet number spaces (#2646,
#2638)</li>
          <li>Improved rules for use of congestion control state on new paths (#2685, #2918)</li>
          <li>Removed recommendation to coordinate spin for multiple connections that share
a path (#2763, #2882)</li>
          <li>Allow smaller stateless resets and recommend a smaller minimum on packets
that might trigger a stateless reset (#2770, #2869, #2927, #3007).</li>
          <li>Provide guidance around the interface to QUIC as used by application protocols
(#2805, #2857)</li>
          <li>Frames other than STREAM can cause STREAM_LIMIT_ERROR (#2825, #2826)</li>
          <li>Tighter rules about processing of rejected 0-RTT packets (#2829, #2840, #2841)</li>
          <li>Explanation of the effect of Retry on 0-RTT packets (#2842, #2852)</li>
          <li>Cryptographic handshake needs to provide server transport parameter encryption
(#2920, #2921)</li>
          <li>Moved ACK generation guidance from recovery draft to transport draft (#1860,
#2916).</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-21" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-21</name>
        <ul spacing="normal">
          <li>Connection ID lengths are now one octet, but limited in version 1 to 20 octets
of length (#2736, #2749)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-20" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-20</name>
        <ul spacing="normal">
          <li>Error codes are encoded as variable-length integers (#2672, #2680)</li>
          <li>NEW_CONNECTION_ID includes a request to retire old connection IDs (#2645,
#2769)</li>
          <li>Tighter rules for generating and explicitly eliciting ACK frames (#2546,
#2794)</li>
          <li>Recommend having only one packet per encryption level in a datagram (#2308,
#2747)</li>
          <li>More normative language about use of stateless reset (#2471, #2574)</li>
          <li>Allow reuse of stateless reset tokens (#2732, #2733)</li>
          <li>Allow, but not require, enforcing non-duplicate transport parameters (#2689,
#2691)</li>
          <li>Added an active_connection_id_limit transport parameter (#1994, #1998)</li>
          <li>max_ack_delay transport parameter defaults to 0 (#2638, #2646)</li>
          <li>When sending 0-RTT, only remembered transport parameters apply (#2458, #2360,
#2466, #2461)</li>
          <li>Define handshake completion and confirmation; define clearer rules when it
encryption keys should be discarded (#2214, #2267, #2673)</li>
          <li>Prohibit path migration prior to handshake confirmation (#2309, #2370)</li>
          <li>PATH_RESPONSE no longer needs to be received on the validated path (#2582,
#2580, #2579, #2637)</li>
          <li>PATH_RESPONSE frames are not stored and retransmitted (#2724, #2729)</li>
          <li>Document hack for enabling routing of ICMP when doing PMTU probing (#1243,
#2402)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-19" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-19</name>
        <ul spacing="normal">
          <li>Refine discussion of 0-RTT transport parameters (#2467, #2464)</li>
          <li>Fewer transport parameters need to be remembered for 0-RTT (#2624, #2467)</li>
          <li>Spin bit text incorporated (#2564)</li>
          <li>Close the connection when maximum stream ID in MAX_STREAMS exceeds 2^62 - 1
(#2499, #2487)</li>
          <li>New connection ID required for intentional migration (#2414, #2413)</li>
          <li>Connection ID issuance can be rate-limited (#2436, #2428)</li>
          <li>The "QUIC bit" is ignored in Version Negotiation (#2400, #2561)</li>
          <li>Initial packets from clients need to be padded to 1200 unless a Handshake
packet is sent as well (#2522, #2523)</li>
          <li>CRYPTO frames can be discarded if too much data is buffered (#1834, #2524)</li>
          <li>Stateless reset uses a short header packet (#2599, #2600)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-18" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-18</name>
        <ul spacing="normal">
          <li>Removed version negotiation; version negotiation, including authentication of
the result, will be addressed in the next version of QUIC (#1773, #2313)</li>
          <li>Added discussion of the use of IPv6 flow labels (#2348, #2399)</li>
          <li>A connection ID can't be retired in a packet that uses that connection ID
(#2101, #2420)</li>
          <li>Idle timeout transport parameter is in milliseconds (from seconds) (#2453,
#2454)</li>
          <li>Endpoints are required to use new connection IDs when they use new network
paths (#2413, #2414)</li>
          <li>Increased the set of permissible frames in 0-RTT (#2344, #2355)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-17" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-17</name>
        <ul spacing="normal">
          <li>Stream-related errors now use STREAM_STATE_ERROR (#2305)</li>
          <li>Endpoints discard initial keys as soon as handshake keys are available (#1951,
#2045)</li>
          <li>Expanded conditions for ignoring ICMP packet too big messages (#2108, #2161)</li>
          <li>Remove rate control from PATH_CHALLENGE/PATH_RESPONSE (#2129, #2241)</li>
          <li>Endpoints are permitted to discard malformed initial packets (#2141)</li>
          <li>Clarified ECN implementation and usage requirements (#2156, #2201)</li>
          <li>Disable ECN count verification for packets that arrive out of order (#2198,
#2215)</li>
          <li>Use Probe Timeout (PTO) instead of RTO (#2206, #2238)</li>
          <li>Loosen constraints on retransmission of ACK ranges (#2199, #2245)</li>
          <li>Limit Retry and Version Negotiation to once per datagram (#2259, #2303)</li>
          <li>Set a maximum value for max_ack_delay transport parameter (#2282, #2301)</li>
          <li>Allow server preferred address for both IPv4 and IPv6 (#2122, #2296)</li>
          <li>Corrected requirements for migration to a preferred address (#2146, #2349)</li>
          <li>ACK of non-existent packet is illegal (#2298, #2302)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-16" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-16</name>
        <ul spacing="normal">
          <li>Stream limits are defined as counts, not maximums (#1850, #1906)</li>
          <li>Require amplification attack defense after closing (#1905, #1911)</li>
          <li>Remove reservation of application error code 0 for STOPPING (#1804, #1922)</li>
          <li>Renumbered frames (#1945)</li>
          <li>Renumbered transport parameters (#1946)</li>
          <li>Numeric transport parameters are expressed as varints (#1608, #1947, #1955)</li>
          <li>Reorder the NEW_CONNECTION_ID frame (#1952, #1963)</li>
          <li>
            <t>Rework the first byte (#2006)
            </t>
            <ul spacing="normal">
              <li>Fix the 0x40 bit</li>
              <li>Change type values for long header</li>
              <li>Add spin bit to short header (#631, #1988)</li>
              <li>Encrypt the remainder of the first byte (#1322)</li>
              <li>Move packet number length to first byte</li>
              <li>Move ODCIL to first byte of retry packets</li>
              <li>Simplify packet number protection (#1575)</li>
            </ul>
          </li>
          <li>Allow STOP_SENDING to open a remote bidirectional stream (#1797, #2013)</li>
          <li>Added mitigation for off-path migration attacks (#1278, #1749, #2033)</li>
          <li>Don't let the PMTU to drop below 1280 (#2063, #2069)</li>
          <li>Require peers to replace retired connection IDs (#2085)</li>
          <li>Servers are required to ignore Version Negotiation packets (#2088)</li>
          <li>Tokens are repeated in all Initial packets (#2089)</li>
          <li>Clarified how PING frames are sent after loss (#2094)</li>
          <li>Initial keys are discarded once Handshake are available (#1951, #2045)</li>
          <li>ICMP PTB validation clarifications (#2161, #2109, #2108)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-15" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-15</name>
        <t>Substantial editorial reorganization; no technical changes.</t>
      </section>
      <section anchor="since-draft-ietf-quic-transport-14" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-14</name>
        <ul spacing="normal">
          <li>Merge ACK and ACK_ECN (#1778, #1801)</li>
          <li>Explicitly communicate max_ack_delay (#981, #1781)</li>
          <li>Validate original connection ID after Retry packets (#1710, #1486, #1793)</li>
          <li>Idle timeout is optional and has no specified maximum (#1765)</li>
          <li>Update connection ID handling; add RETIRE_CONNECTION_ID type (#1464, #1468,
#1483, #1484, #1486, #1495, #1729, #1742, #1799, #1821)</li>
          <li>Include a Token in all Initial packets (#1649, #1794)</li>
          <li>Prevent handshake deadlock (#1764, #1824)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-13" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-13</name>
        <ul spacing="normal">
          <li>Streams open when higher-numbered streams of the same type open (#1342, #1549)</li>
          <li>Split initial stream flow control limit into 3 transport parameters (#1016,
#1542)</li>
          <li>All flow control transport parameters are optional (#1610)</li>
          <li>Removed UNSOLICITED_PATH_RESPONSE error code (#1265, #1539)</li>
          <li>Permit stateless reset in response to any packet (#1348, #1553)</li>
          <li>Recommended defense against stateless reset spoofing (#1386, #1554)</li>
          <li>Prevent infinite stateless reset exchanges (#1443, #1627)</li>
          <li>Forbid processing of the same packet number twice (#1405, #1624)</li>
          <li>Added a packet number decoding example (#1493)</li>
          <li>More precisely define idle timeout (#1429, #1614, #1652)</li>
          <li>Corrected format of Retry packet and prevented looping (#1492, #1451, #1448,
#1498)</li>
          <li>Permit 0-RTT after receiving Version Negotiation or Retry (#1507, #1514,
#1621)</li>
          <li>Permit Retry in response to 0-RTT (#1547, #1552)</li>
          <li>Looser verification of ECN counters to account for ACK loss (#1555, #1481,
#1565)</li>
          <li>Remove frame type field from APPLICATION_CLOSE (#1508, #1528)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-12" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-12</name>
        <ul spacing="normal">
          <li>
            <t>Changes to integration of the TLS handshake (#829, #1018, #1094, #1165, #1190,
#1233, #1242, #1252, #1450, #1458)
            </t>
            <ul spacing="normal">
              <li>The cryptographic handshake uses CRYPTO frames, not stream 0</li>
              <li>QUIC packet protection is used in place of TLS record protection</li>
              <li>Separate QUIC packet number spaces are used for the handshake</li>
              <li>Changed Retry to be independent of the cryptographic handshake</li>
              <li>Added NEW_TOKEN frame and Token fields to Initial packet</li>
              <li>Limit the use of HelloRetryRequest to address TLS needs (like key shares)</li>
            </ul>
          </li>
          <li>Enable server to transition connections to a preferred address (#560, #1251,
#1373)</li>
          <li>Added ECN feedback mechanisms and handling; new ACK_ECN frame (#804, #805,
#1372)</li>
          <li>Changed rules and recommendations for use of new connection IDs (#1258, #1264,
#1276, #1280, #1419, #1452, #1453, #1465)</li>
          <li>Added a transport parameter to disable intentional connection migration
(#1271, #1447)</li>
          <li>Packets from different connection ID can't be coalesced (#1287, #1423)</li>
          <li>Fixed sampling method for packet number encryption; the length field in long
headers includes the packet number field in addition to the packet payload
(#1387, #1389)</li>
          <li>Stateless Reset is now symmetric and subject to size constraints (#466, #1346)</li>
          <li>Added frame type extension mechanism (#58, #1473)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-11" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-11</name>
        <ul spacing="normal">
          <li>Enable server to transition connections to a preferred address (#560, #1251)</li>
          <li>Packet numbers are encrypted (#1174, #1043, #1048, #1034, #850, #990, #734,
#1317, #1267, #1079)</li>
          <li>Packet numbers use a variable-length encoding (#989, #1334)</li>
          <li>STREAM frames can now be empty (#1350)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-10" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-10</name>
        <ul spacing="normal">
          <li>Swap payload length and packed number fields in long header (#1294)</li>
          <li>Clarified that CONNECTION_CLOSE is allowed in Handshake packet (#1274)</li>
          <li>Spin bit reserved (#1283)</li>
          <li>Coalescing multiple QUIC packets in a UDP datagram (#1262, #1285)</li>
          <li>A more complete connection migration (#1249)</li>
          <li>Refine opportunistic ACK defense text (#305, #1030, #1185)</li>
          <li>A Stateless Reset Token isn't mandatory (#818, #1191)</li>
          <li>Removed implicit stream opening (#896, #1193)</li>
          <li>An empty STREAM frame can be used to open a stream without sending data (#901,
#1194)</li>
          <li>Define stream counts in transport parameters rather than a maximum stream ID
(#1023, #1065)</li>
          <li>STOP_SENDING is now prohibited before streams are used (#1050)</li>
          <li>Recommend including ACK in Retry packets and allow PADDING (#1067, #882)</li>
          <li>Endpoints now become closing after an idle timeout (#1178, #1179)</li>
          <li>Remove implication that Version Negotiation is sent when a packet of the wrong
version is received (#1197)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-09" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-09</name>
        <ul spacing="normal">
          <li>Added PATH_CHALLENGE and PATH_RESPONSE frames to replace PING with Data and
PONG frame. Changed ACK frame type from 0x0e to 0x0d. (#1091, #725, #1086)</li>
          <li>A server can now only send 3 packets without validating the client address
(#38, #1090)</li>
          <li>Delivery order of stream data is no longer strongly specified (#252, #1070)</li>
          <li>Rework of packet handling and version negotiation (#1038)</li>
          <li>Stream 0 is now exempt from flow control until the handshake completes (#1074,
#725, #825, #1082)</li>
          <li>Improved retransmission rules for all frame types: information is
retransmitted, not packets or frames (#463, #765, #1095, #1053)</li>
          <li>Added an error code for server busy signals (#1137)</li>
          <li>Endpoints now set the connection ID that their peer uses.  Connection IDs are
variable length.  Removed the omit_connection_id transport parameter and the
corresponding short header flag. (#1089, #1052, #1146, #821, #745, #821,
#1166, #1151)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-08" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-08</name>
        <ul spacing="normal">
          <li>Clarified requirements for BLOCKED usage (#65,  #924)</li>
          <li>BLOCKED frame now includes reason for blocking (#452, #924, #927, #928)</li>
          <li>GAP limitation in ACK Frame (#613)</li>
          <li>Improved PMTUD description (#614, #1036)</li>
          <li>Clarified stream state machine (#634, #662, #743, #894)</li>
          <li>Reserved versions don't need to be generated deterministically (#831, #931)</li>
          <li>You don't always need the draining period (#871)</li>
          <li>Stateless reset clarified as version-specific (#930, #986)</li>
          <li>initial_max_stream_id_x transport parameters are optional (#970, #971)</li>
          <li>Ack Delay assumes a default value during the handshake (#1007, #1009)</li>
          <li>Removed transport parameters from NewSessionTicket (#1015)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-07" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-07</name>
        <ul spacing="normal">
          <li>The long header now has version before packet number (#926, #939)</li>
          <li>Rename and consolidate packet types (#846, #822, #847)</li>
          <li>Packet types are assigned new codepoints and the Connection ID Flag is
inverted (#426, #956)</li>
          <li>Removed type for Version Negotiation and use Version 0 (#963, #968)</li>
          <li>
            <t>Streams are split into unidirectional and bidirectional (#643, #656, #720,
#872, #175, #885)
            </t>
            <ul spacing="normal">
              <li>Stream limits now have separate uni- and bi-directional transport parameters
(#909, #958)</li>
              <li>Stream limit transport parameters are now optional and default to 0 (#970,
#971)</li>
            </ul>
          </li>
          <li>The stream state machine has been split into read and write (#634, #894)</li>
          <li>Employ variable-length integer encodings throughout (#595)</li>
          <li>
            <t>Improvements to connection close
            </t>
            <ul spacing="normal">
              <li>Added distinct closing and draining states (#899, #871)</li>
              <li>Draining period can terminate early (#869, #870)</li>
              <li>Clarifications about stateless reset (#889, #890)</li>
            </ul>
          </li>
          <li>Address validation for connection migration (#161, #732, #878)</li>
          <li>Clearly defined retransmission rules for BLOCKED (#452, #65, #924)</li>
          <li>negotiated_version is sent in server transport parameters (#710, #959)</li>
          <li>Increased the range over which packet numbers are randomized (#864, #850,
#964)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-06" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-06</name>
        <ul spacing="normal">
          <li>Replaced FNV-1a with AES-GCM for all "Cleartext" packets (#554)</li>
          <li>Split error code space between application and transport (#485)</li>
          <li>Stateless reset token moved to end (#820)</li>
          <li>1-RTT-protected long header types removed (#848)</li>
          <li>No acknowledgments during draining period (#852)</li>
          <li>Remove "application close" as a separate close type (#854)</li>
          <li>Remove timestamps from the ACK frame (#841)</li>
          <li>Require transport parameters to only appear once (#792)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-05" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-05</name>
        <ul spacing="normal">
          <li>Stateless token is server-only (#726)</li>
          <li>Refactor section on connection termination (#733, #748, #328, #177)</li>
          <li>Limit size of Version Negotiation packet (#585)</li>
          <li>Clarify when and what to ack (#736)</li>
          <li>Renamed STREAM_ID_NEEDED to STREAM_ID_BLOCKED</li>
          <li>Clarify Keep-alive requirements (#729)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-04" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-04</name>
        <ul spacing="normal">
          <li>Introduce STOP_SENDING frame, RESET_STREAM only resets in one direction (#165)</li>
          <li>Removed GOAWAY; application protocols are responsible for graceful shutdown
(#696)</li>
          <li>Reduced the number of error codes (#96, #177, #184, #211)</li>
          <li>Version validation fields can't move or change (#121)</li>
          <li>Removed versions from the transport parameters in a NewSessionTicket message
(#547)</li>
          <li>Clarify the meaning of "bytes in flight" (#550)</li>
          <li>Public reset is now stateless reset and not visible to the path (#215)</li>
          <li>Reordered bits and fields in STREAM frame (#620)</li>
          <li>Clarifications to the stream state machine (#572, #571)</li>
          <li>Increased the maximum length of the Largest Acknowledged field in ACK frames
to 64 bits (#629)</li>
          <li>truncate_connection_id is renamed to omit_connection_id (#659)</li>
          <li>CONNECTION_CLOSE terminates the connection like TCP RST (#330, #328)</li>
          <li>Update labels used in HKDF-Expand-Label to match TLS 1.3 (#642)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-03" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-03</name>
        <ul spacing="normal">
          <li>Change STREAM and RESET_STREAM layout</li>
          <li>Add MAX_STREAM_ID settings</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-02" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-02</name>
        <ul spacing="normal">
          <li>The size of the initial packet payload has a fixed minimum (#267, #472)</li>
          <li>Define when Version Negotiation packets are ignored (#284, #294, #241, #143,
#474)</li>
          <li>The 64-bit FNV-1a algorithm is used for integrity protection of unprotected
packets (#167, #480, #481, #517)</li>
          <li>Rework initial packet types to change how the connection ID is chosen (#482,
#442, #493)</li>
          <li>No timestamps are forbidden in unprotected packets (#542, #429)</li>
          <li>Cryptographic handshake is now on stream 0 (#456)</li>
          <li>Remove congestion control exemption for cryptographic handshake (#248, #476)</li>
          <li>Version 1 of QUIC uses TLS; a new version is needed to use a different
handshake protocol (#516)</li>
          <li>STREAM frames have a reduced number of offset lengths (#543, #430)</li>
          <li>
            <t>Split some frames into separate connection- and stream- level frames
(#443)
            </t>
            <ul spacing="normal">
              <li>WINDOW_UPDATE split into MAX_DATA and MAX_STREAM_DATA (#450)</li>
              <li>BLOCKED split to match WINDOW_UPDATE split (#454)</li>
              <li>Define STREAM_ID_NEEDED frame (#455)</li>
            </ul>
          </li>
          <li>A NEW_CONNECTION_ID frame supports connection migration without linkability
(#232, #491, #496)</li>
          <li>
            <t>Transport parameters for 0-RTT are retained from a previous connection (#405,
#513, #512)
            </t>
            <ul spacing="normal">
              <li>A client in 0-RTT no longer required to reset excess streams (#425, #479)</li>
            </ul>
          </li>
          <li>Expanded security considerations (#440, #444, #445, #448)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-01" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-01</name>
        <ul spacing="normal">
          <li>Defined short and long packet headers (#40, #148, #361)</li>
          <li>Defined a versioning scheme and stable fields (#51, #361)</li>
          <li>Define reserved version values for "greasing" negotiation (#112, #278)</li>
          <li>The initial packet number is randomized (#35, #283)</li>
          <li>Narrow the packet number encoding range requirement (#67, #286, #299, #323,
#356)</li>
          <li>Defined client address validation (#52, #118, #120, #275)</li>
          <li>Define transport parameters as a TLS extension (#49, #122)</li>
          <li>SCUP and COPT parameters are no longer valid (#116, #117)</li>
          <li>Transport parameters for 0-RTT are either remembered from before, or assume
default values (#126)</li>
          <li>The server chooses connection IDs in its final flight (#119, #349, #361)</li>
          <li>The server echoes the Connection ID and packet number fields when sending a
Version Negotiation packet (#133, #295, #244)</li>
          <li>Defined a minimum packet size for the initial handshake packet from the client
(#69, #136, #139, #164)</li>
          <li>Path MTU Discovery (#64, #106)</li>
          <li>The initial handshake packet from the client needs to fit in a single packet
(#338)</li>
          <li>Forbid acknowledgment of packets containing only ACK and PADDING (#291)</li>
          <li>Require that frames are processed when packets are acknowledged (#381, #341)</li>
          <li>Removed the STOP_WAITING frame (#66)</li>
          <li>Don't require retransmission of old timestamps for lost ACK frames (#308)</li>
          <li>Clarified that frames are not retransmitted, but the information in them can
be (#157, #298)</li>
          <li>Error handling definitions (#335)</li>
          <li>Split error codes into four sections (#74)</li>
          <li>Forbid the use of Public Reset where CONNECTION_CLOSE is possible (#289)</li>
          <li>Define packet protection rules (#336)</li>
          <li>Require that stream be entirely delivered or reset, including acknowledgment
of all STREAM frames or the RESET_STREAM, before it closes (#381)</li>
          <li>Remove stream reservation from state machine (#174, #280)</li>
          <li>Only stream 1 does not contribute to connection-level flow control (#204)</li>
          <li>Stream 1 counts towards the maximum concurrent stream limit (#201, #282)</li>
          <li>Remove connection-level flow control exclusion for some streams (except 1)
(#246)</li>
          <li>RESET_STREAM affects connection-level flow control (#162, #163)</li>
          <li>Flow control accounting uses the maximum data offset on each stream, rather
than bytes received (#378)</li>
          <li>Moved length-determining fields to the start of STREAM and ACK (#168, #277)</li>
          <li>Added the ability to pad between frames (#158, #276)</li>
          <li>Remove error code and reason phrase from GOAWAY (#352, #355)</li>
          <li>GOAWAY includes a final stream number for both directions (#347)</li>
          <li>Error codes for RESET_STREAM and CONNECTION_CLOSE are now at a consistent
offset (#249)</li>
          <li>Defined priority as the responsibility of the application protocol (#104,
#303)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-transport-00" numbered="true" toc="default">
        <name>Since draft-ietf-quic-transport-00</name>
        <ul spacing="normal">
          <li>Replaced DIVERSIFICATION_NONCE flag with KEY_PHASE flag</li>
          <li>Defined versioning</li>
          <li>Reworked description of packet and frame layout</li>
          <li>Error code space is divided into regions for each component</li>
          <li>Use big endian for all numeric values</li>
        </ul>
      </section>
      <section anchor="since-draft-hamilton-quic-transport-protocol-01" numbered="true" toc="default">
        <name>Since draft-hamilton-quic-transport-protocol-01</name>
        <ul spacing="normal">
          <li>Adopted as base for draft-ietf-quic-tls</li>
          <li>Updated authors/editors list</li>
          <li>Added IANA Considerations section</li>
          <li>Moved Contributors and Acknowledgments to appendices</li>
        </ul>
      </section>
    </section>
    <section numbered="false" anchor="contributors" toc="default">
      <name>Contributors</name>
      <t>The original design and rationale behind this protocol draw significantly from
work by Jim Roskind <xref target="EARLY-DESIGN" format="default"/>.</t>
      <t>The IETF QUIC Working Group received an enormous amount of support from many
people. The following people provided substantive contributions to this
document:
Alessandro Ghedini,
Alyssa Wilk,
Antoine Delignat-Lavaud,
Brian Trammell,
Christian Huitema,
Colin Perkins,
David Schinazi,
Dmitri Tikhonov,
Eric Kinnear,
Eric Rescorla,
Gorry Fairhurst,
Ian Swett,
Igor Lubashev, <contact asciiFullname="Kazuho Oku" fullname="奥 一穂"/>,
Lucas Pardue,
Magnus Westerlund,
Marten Seemann,
Martin Duke,
Mike Bishop, <contact fullname="Mikkel Fahnøe Jørgensen"/>, <contact fullname="Mirja Kühlewind"/>,
Nick Banks,
Nick Harper,
Patrick McManus,
Roberto Peon,
Ryan Hamilton,
Subodh Iyengar,
Tatsuhiro Tsujikawa,
Ted Hardie,
Tom Jones,
and Victor Vasiliev.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIADagT14AA8y9aXscx5Um+j1+RV7qg0l3FUhKbnc31ctAJGRhTJG8ACSP
r+3hJKoSQDarKsuZWQTLtPq3z9njRGRUkepl5nqeaRFAZmQsJ87ynm0+n4ex
HVfNs+rB//vD+fNn1Wn1w4s382/qoVlW3+9WY7tdNR/g3/VmWV02i13fVFd9
vRm2XT8+CPX1dd+8f1bhu/H31Zu+G7tFtwrLbrGp1zD6sq9vxnnbjDfzP+/a
xXzUZ+df/jos6xEe+fLJl0/mT76cf/k0LOAXt12/f1YN4zK02/5ZNfa7Yfzy
yZN/ePJlqPumfhY/F+67/t1t3+22PJEQhhGm+7ZedRsYd98MYds+q/4AU5pV
A7zQNzcD/Gu/5n/AJNf1dttubv8UQr0b77r+WaiqOfz/qmo3w7Pqv59U5/tm
c1v39Dte0n+vN3Xy666/fVZ9Ww/jak8/N+u6XT2r/rVvT3Dh/+0Wfz5ZdGv6
a9/hrjfLduz69Gvfn1RXd9166Dbua9/X/dhukj/Q977v/tKuVrX/4Hr8b6vu
vtmMfbfdn2yacfq9sOn6dT2275tnAf6Kuza/OHv++sezi98/o8c9VVQvu2Go
XjRjsxjbbkO08Lzb3DYD/Qj/hE+tHtB7k7PEXw5N3zZDu7npePCqOt+MTQ9T
m79AwpjSR98suvdNv0fywOfjseD/5vLf8vEcOaLSMRUOo/CN85Pq8r4Zx+wL
5/Um+z0N/5uuu1015eF1v69eXqZb/QPs0K27RS/rfdPzpWvHffUQXnhUjZ1e
QxzkP3XPx9XwWdud0edRGi3S6eft+CV8ZgfzzQ/1soE9z/5Cnxg2X/XLA3uO
+zCh+PNXP55enJ++usoO4semH4Cw5+ebZbNt4P9siKVtG1heM1TdzX/+3reb
93Xf1ptxmD/5u//iI4Dfnp1evPz9/MXZ5flvXk3v+7OE80eCfA03EsXDg9IE
7SpedMO7drNMdufpV/OnX8IG8afq/raBPXhwN47b4dnjx7ddd3K7erz8/sfx
2/YBzu/y5evfvXx9cZ4dzO+aFbDPhi4BsLhV17fDycnJkflcwHwuN/W7pvoO
VtFsklk9+Yf5k1/7KfG7Nq/75vqk7hd3QDQnsIP482NYy98++Qr+/9/+6u+/
+vvH+Cg8eVefLN4B1dBjg07tMawlzOfzqr4eQOAtxhCu7toBBc5ujUS1bG7a
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
UHG1B96foAXBj0DwY7pPqGfJtlCwK97EmY/5GSnagF4KtrntEPVsoBiJYDCa
YAzxEwAtSEQE79jTxuYVkjd7qvWuwiEO5CWCq7nm0EoUVR/EorkuLBVIlWMj
RBRthAWIAyAno4HC/eiNwa0hMIi+KaO2E6WYHk2wCNkdsirajQc92JyLFuT5
CxgRY/rVDa/7LZEKGFmxcvrZ+2Yi4GnySbAs3tIqBoLFYDxmFLAHGI0ZzScL
OBBkQKy6QQMNUBPCiIZaQmfZMkfQV20U5hwHB8Rn1WbEmMcrMBRu7zx5pXcX
NZzN0ngnrBAkLu2k6ioalIChFmO2a5tfjMkI5qTIbXJ2Cqa/RAd5vZHANQzc
di4Zf+dq9sHif5FfXDdgK7ToN6OQzaEFxZtc+ySj6/wrYhvp74ZkDWrEiCp0
iJk6lhTQEGpv5yVuRdFeSt00hLLCXPDypPDlIRi0I/6O8G//9m+azNTpP/5a
PSecT6f4UKb8KD7wBmUSPzVkUCa/pI++x3/8jYCnfxPo5QtSI/5KO5GoJvxn
+cYBAPYkGbAM6FZ/jTM9/D/3EM1E1KPHR0fih96+OL06ffvNy9fPf3v24ud/
Ltm9o58rbW186P2nPvdZ+yTLLx2If0jeKJ/KP3/+59zqPvWQP5a/IW148tCx
LXj/qTlldEnIWHEbkGZRN4v7NRa34p/tbz/r0z9jSy5AuahOVyuMK0xpR//2
/Lf/lXtTmFy6NziJ5cEH6W+f/2nkTui/KDPB6MYw/qfM9U2N2jIwQbHgH/yk
rrTUDvUc0kdpqdcQ0XyWek8Ciswv6SvsKwC9/inJ0a9YVyRXzPCIw4a8ayEB
+ElHekAs8IHIHhf3RokSoBioo8XPDxV7wQ04lE9w4L5jEz39zKWDsteobaHE
ZajdW+6jhD7CDDDQnZGirg+yURROyFs2mjdFLgVud4Ebsj0lylc9tfxVpYNl
NIh40MAP8CuyHyXxLUuIQPuyIZ8Bw3CJfomepi7+uAOlYlW1IgCnq+DpcoYY
BvG7fbF4dgpl0RCA62Yco68khelOylRWlx1Q0UlMYQBk5xG1VU9YFw5MUzPW
OJ+KgszU9wjn2I8W1J2SlJmZqT0eUI1h0oKpnm8mez9L4PloN83FxI6/QVCg
oWjtfl/N9VA1CCNxSYn3wBlOiFlJks8B3Dg43Him2Q1w0Dv2cMkFcCG41fen
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
vc5DshlOaAvblBlTOxv4O5oPM7fSGCvEkWHX+2Cb7uvo6b1Yd8sYnIjwdb0a
4i+u97ZIYEPS27E03gzsagRoyUBWHZY23UI/YHA6QVdwIXgVPsbRFxPfKdB5
lZSbkyikQbAyjYIrrhd7h5BOxRa/9mLnvDC6a3KT2XC6b1aruVbrYalgHlTe
6OuYXxY8ThHzEpw2oyFqO7qS7N4WO0t6wxDIErwEin0MKGYf6xmkcM7D8zcc
eQKX+xGZ2wp/zxQoCMz7qVwfJ6H1+wxTThuQKtcpqGRJro1E6L9BkNnd+49f
TKL5MVwXHipkoHwqN6BKyoVRN5KPH63gxly2AXmlEIo8TUntkpCES+FWHxRv
q13q0VMdKI2P8R1KLKVUf6cDUXx/MvWZq3kzNmQmxkGDwjm1FF1tF+mQlZTC
1j9y2Sk1QRjHibZWEJh2vO/m404KbuOJu8Eoa3W6wTg1TcgXwfXwzenVd2+f
f3f68uXZq9+cPVL7nrI8LFUHdtjMAX7j4uzyzetXl/CCbBRNutPOfOMd7lOW
HG61soKpozqNaR3SwpmJHsP+r1qj7kOaMlRYtocsKGNmz04axF0UgLDia5kG
6vKHtZKk9QSURVsfcYw4J1eBduyg1mF6LOQWQ+ISn1gFPAr7FHBgUOEu4Fqt
0SclYL86xSpeNQppoB7rN3eiAAOyHNeFzsK6iYLMvjJkIoZ+kD3Jc8ZvXLdk
38o5aU5q8vWZ+sesCatak9S40ZRL2SDR20OelqTIM9eBvGOAREpcaVXIjVIs
EtWZTR6mE+JmIH8aPMg07DeLu77btH/h6dm+OA1MCgKRFhao60pWrgw9Ljtq
gJdeE7pkyT2Y9OzQfLmQsQrpbkm745xGaRUVNwfsVYG9u3U/grXfqPNJ4XG+
+f7qB7J1UczvY/ydG01WVId0AVrfhYIu05EVGcLUAf4yN03G+L1kdI6iZ2A5
UZ4tO5pQnk0Qf0gWr6dV9mglGgQxcA2gpEsTJVOgzvz89atXZ8+x4sBbHEBP
xe2JVbww+0ndJ75LedBcuuLESAKiAmITFAWMlnTvK2zUVu1SJCEDZ8TIMqEI
qkZXWfP5iUTxG6shJKXFuVjeUKuqKwk9niF7m0GysnJa52QrtRPKO0n6NsUp
iKIoZIlO0hPsu9tQDk09LcoX07mOf4Ei2JO+EOUif66OYDYQ5Yvd9Iz5Yy2P
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
GalTE+e3BdJjAR/1pqHAMLeFo+qAHiuxABVzcU/AvBRoMnaL+ZgTSEB2NBzY
xNR7myeFJRugupGtbJaybAYKXNHtBD5yE9bYa1LeK7drCdxE2jsfRLEUU6mv
cWSiiwVd1avyBAn+M2/i2fNXrIYR1zg4o0DRJmgTpy8UGjM1iw193nG4BMJm
lZhgLhIOESzjmZL+QFAQkDAWgWZo0TxDuYzXl6PkjRgew+j599c15RbEAtsb
aTTJBV2w5s6El5YEtCtIgeGR8Up8ziCZv+n093iBhUqo72DZsVpWVLKxhTNd
RIcZ3IBPgUFzlQA/pdLJ64UCUnlDLfFzTBhPOCS60LDwFnfGmrIqUEkRl4Kn
jsrZGUecVsMJUU/LzEzgSJKAf2C/y5ZYiAFYjlmA+gsK+127VQDIpzTExRX9
1lZIYZO8lQZTIZahRQglCDCYI1szPCyIfHo3ZaC52uwWfiaJ1e4PubWK83wH
K0tbtNXpdhL0Ey3KWBx60ArRSNzTiJGs3DZfHwbrQrRb55kZyjFJbA3TuaNF
SOY0zGzYgshCn1hEpgIuYEuUOg3Q5Z5JmBJPaUgdJTRYVOlm6RkxmZOBc5mo
QRHTAJnyNfX/WwPhWct3KS2dHrzrRsv4ZV7RmDU1V2di2pM33AFXhznNOQO6
KdmHaaBIlRdddt0iMCjFfQ59zqtldr6S1FkPFhgTDcK+oXqfSZHXUzoiWqYK
Vlds1xL1ea0F4za564LxqONMeXZe0JiVN5/O8DPYmSH+OFXv28R4LYOTErNA
VxkLNdUF3KCUScUmfZRdqYuHQogfxksb/8g2vrOsNWT9DS5F49YvFZj7+MXk
3mtife5wtYhAfZeKSqZFzQ0R9EejSBBCIzAkKmxUIyZ2e1DeprrdXTeMMRku
NVCCKzaDhnIsV24FAnSC3AqxCB9Z2o1WyuDcCmbZ77vVjnv/xiAAX90Pb7fF
eBugIiXbqVRgxlsLgvSnVFR5r15it6ty4+McODMMcX4vYdIAzanq8wMhPDag
C5pYNs1aAyYKEpTziEbO1SNtWy9n4MupZ8jJpjGhahIUVIhdQYtg06536+CY
KGj+y+4eJnkP6vKdHcQW41nhiTXnAWbe6YfvvueRfkdvz0LqAJl4iR+xrCG+
Yz1wKl/G2hNx3w7vNFnINQxYNhtqM39D1xczhaSkttW6R7oedhgBTYJIqSRX
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
rpraruxCVMdfYhVnb95wmgrHCO0zPlNDMPx9/predVEk6fKK3cS3TD64KehZ
8vqQ9YroyZB4bx5m+LNB++MClK4mrSg4UJW7NE83nknC8auLkFm5+Rm4XGwi
9xQRRIxnAvO2rlePybYoQRwbfmffHp/6nR192s4KB6fipdrGKhq1tJ3XLgu8
vgiAtrFnSRrtmmSBUc9lLoiveQo8RFH7J4c9KVeqf1TnqtshKhy2Y7jRQsUy
JlzGAJFpZaTYi/YQRw3kXjqXR7mc/pPA6yOoiC6/yFMB4peGhoO3O/mE0HDM
pJCeW/d0/7MEhF/k5P7cSuK/Bd/Q36y44N+Covy3moPlHT+jbygOR3cEoj9L
CLoWYK06fPuvQ7dChPkKafL2s7ig7MIVgaXOiUMupsr8wjTNGaoA7ha6Pesy
oQTOn8TZ1ZRFwdn1cctSgWuEkyxKRVTjARGYzTlQLeN6Ljnq9Aij43CQntWE
KEFs09NT5IrjJ30NqdMTirtFFL6FKu+9VW4YARxtTukeunDYvEF8HjybWiZR
Yp6Q/QbGSgDfe4/mFwGB9CpShmrUd8/VvJFXL33K+5Z8jPctfdL7RhnBCR8e
/fZQVmzmGN9NBNjpVPlpoQ0hqT8na+7Wg6e6+xMevHrwvNMWSTo8eOmbt2dA
yb26cHaKSTIPDRJjJ5bvkshn4Z+KvVbDQYiuuTOKVh6gv0Cfec6wnvcf2/Ex
MgJp7e/vy5nWWtTm1fRihW6P//j6yTeyrywUf5YMZbvFKhVrFBXkYnxYz0pG
u5yPE47PE5h2lC61cmVVRF5Sn4pU2VykA2o9BBtPDNm6pEfm7ap8T+mg4QoL
dzIsRxhVEjJDwYOQhUqsXnN6+qbzjM3zYYV+Jpk97jG4+cnjIcyKPsI2fDZ1
LHBVVFxrFBoXtbq1fFpMlJ4jzrMmCxHew7hs3jIBLJ9uOFtLUeNY0yC24KSh
qEW5os/QVCuBwzbdaMBBFHZaOgBL7gCVzS1XBijEpA/UUaCb3M6CQAfm0kCO
Drxv+BLex6leiZz7R3C+KA2sfSYvyQRjjEdohS9K/Wr/0t9z9tcTM/74BLDk
JSZx+xfbZU8ELf6PL4L+tmlgQQRG5mHbTD6PGDSnbaVhk/HEQrFBTB9pNZoA
Z8MgVOzgDH293PWzkDh1gQrkKYjUzSB/6xbF5xPDjeKLdjEM2wTCFhEFjFmX
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
Jf5pbDFpY4vpp7LFpJUt1mfzEraYdLPF9O+ULRJlvNzAPArgzvLSjVNQbttA
n7mHLgKy/pbq9oq3PEur9XxOCR3UiyBJa17TkKJShFTFH2Xl8n1sGrp/lWvS
ar+mZtGtv9et4GDxPmXSPmfuNn8XzRTfPD27Pr64OLtom89pKZvfsZ7vv7d8
STXeIX47Ob06vjg9eNsc3f0WJS3Uv9E17oj36Pji2+OL69/8/vJPzf0T4FL0
baPyuZt19fjsuFv47c3bsz9cH56dXl2c1ebsfrOtuho70jXumOeEDoHXb0++
Obmqj3tVlgwK7pv1PeR06Z8ed9uOe3l1cHXcmO8yC61KwUOkiF/b0HGZTtcH
dniQEzq9y5P/dVw/wr+mhxxYovwIpIjHboSucXd53IuDb9yQp4dnRyenv7Vj
68Q1xv1Swtjjzbw4OL08P7u4uj4/oE848pPB9VKSqGhD5usad5/XenZ6enxI
zbqvT46iczQHOInx+vzWdw19gKFb+oH7pf6WEKwY4pnjyO+KchYZtG3j/kbu
3rcHb91kr85+d3ya2n/cb0IJV/AhXehEn9niI96Kiz+dX525u/fmDW3uHw+P
j4+Oj1LzG4N0SWtiEum33GS5bVxvzhpm+oxFa1UkY9ImjqelVMFMqeWX3NFI
gK1OGbTmKBeSOpgRSPvqfk5NDvCk4gsyvI0zuiVZiMXDQ5WvpyVmzew/m93x
M+7FhVsHSYYK0EuUjh8zNnQ3w7NaJazt6DNA50oTNgO+RYocci4k/utEy3/9
138lmH7OS+IVvUb3v2p1/UAR5OV6gcQZ/NfD4nrhNLFq40vK/Fel2v2Upr9O
w2vOsh+i9nNx7QS5nP+v02H6P/6HH0J+v/cP/Fof/1U6kh/nWfVd7cc+j/yr
X6UsYZ2tEABlFUdImohQZywkF3JdkLxnZ933U0AQxSehUEvD/1ijz1rLW/+i
b/Fvfj6+8us9QcoufrFK/7LmJsTFA9QNCiMCaYk2AEZ6y+iwHaZTeSHsPlVP
SpmR5nXK24/I1MzU12I6ZHAn6s3aPK2OBeqbZLMJLArAQ7sJMNCzT1aXN6kx
CZX/UXY9AZ5S3k/c/Ej2P/psKjUflE/iNoDgp9GdIuBY62XG0mE43M7kdT8Z
2oBfp6/tRv3f6X8JjWw4JmC3CpXCt/HL/+PX3SefMJHFz6evQa87ow1+2D37
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

-->
</rfc>
