<?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.1.2 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc docmapping="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-quic-transport-09" category="std">

  <front>
    <title abbrev="QUIC Transport Protocol">QUIC: A UDP-Based Multiplexed and Secure Transport</title>

    <author initials="J." surname="Iyengar" fullname="Jana Iyengar" role="editor">
      <organization>Google</organization>
      <address>
        <email>jri@google.com</email>
      </address>
    </author>
    <author initials="M." surname="Thomson" fullname="Martin Thomson" role="editor">
      <organization>Mozilla</organization>
      <address>
        <email>martin.thomson@gmail.com</email>
      </address>
    </author>

    <date year="2018" month="January"/>

    <area>Transport</area>
    <workgroup>QUIC</workgroup>
    

    <abstract>


<t>This document defines the core of the QUIC transport protocol.  This document
describes connection establishment, packet format, multiplexing and reliability.
Accompanying documents describe the cryptographic handshake and loss detection.</t>



    </abstract>


    <note title="Note to Readers">


<t>Discussion of this draft takes place on the QUIC working group mailing list
(quic@ietf.org), which is archived at
<eref target="https://mailarchive.ietf.org/arch/search/?email_list=quic">https://mailarchive.ietf.org/arch/search/?email_list=quic</eref>.</t>

<t>Working Group information can be found at <eref target="https://github.com/quicwg">https://github.com/quicwg</eref>; source
code and issues list for this draft can be found at
<eref target="https://github.com/quicwg/base-drafts/labels/-transport">https://github.com/quicwg/base-drafts/labels/-transport</eref>.</t>


    </note>


  </front>

  <middle>


<section anchor="introduction" title="Introduction">

<t>QUIC is a multiplexed and secure transport protocol that runs on top of UDP.
QUIC aims to provide a flexible set of features that allow it to be a
general-purpose transport for multiple applications.</t>

<t>QUIC implements techniques learned from experience with TCP, SCTP and other
transport protocols.  QUIC uses UDP as substrate so as to not require changes to
legacy client operating systems and middleboxes to be deployable.  QUIC
authenticates all of its headers and encrypts most of the data it exchanges,
including its signaling.  This allows the protocol to evolve without incurring a
dependency on upgrades to middleboxes.  This document describes the core QUIC
protocol, including the conceptual design, wire format, and mechanisms of the
QUIC protocol for connection establishment, stream multiplexing, stream and
connection-level flow control, and data reliability.</t>

<t>Accompanying documents describe QUIC’s loss detection and congestion control
<xref target="QUIC-RECOVERY"/>, and the use of TLS 1.3 for key negotiation <xref target="QUIC-TLS"/>.</t>

</section>
<section anchor="conventions-and-definitions" title="Conventions and Definitions">

<t>The key words “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"/> <xref target="RFC8174"/>
when, and only when, they appear in all capitals, as shown here.</t>

<t>Definitions of terms that are used in this document:</t>

<t><list style="hanging">
  <t hangText='Client:'>
  The endpoint initiating a QUIC connection.</t>
  <t hangText='Server:'>
  The endpoint accepting incoming QUIC connections.</t>
  <t hangText='Endpoint:'>
  The client or server end of a connection.</t>
  <t hangText='Stream:'>
  A logical, bi-directional channel of ordered bytes within a QUIC connection.</t>
  <t hangText='Connection:'>
  A conversation between two QUIC endpoints with a single encryption context
that multiplexes streams within it.</t>
  <t hangText='Connection ID:'>
  The 64-bit unsigned number used as an identifier for a QUIC connection.</t>
  <t hangText='QUIC packet:'>
  A well-formed UDP payload that can be parsed by a QUIC receiver.</t>
</list></t>

<section anchor="notational-conventions" title="Notational Conventions">

<t>Packet and frame diagrams use the format described in Section 3.1 of
<xref target="RFC2360"/>, with the following additional conventions:</t>

<t><list style="hanging">
  <t hangText='[x]'>
  Indicates that x is optional</t>
  <t hangText='x (A)'>
  Indicates that x is A bits long</t>
  <t hangText='x (A/B/C) …'>
  Indicates that x is one of A, B, or C bits long</t>
  <t hangText='x (i) …'>
  Indicates that x uses the variable-length encoding in <xref target="integer-encoding"/></t>
  <t hangText='x (*) …'>
  Indicates that x is variable-length</t>
</list></t>

</section>
</section>
<section anchor="a-quic-overview" title="A QUIC Overview">

<t>This section briefly describes QUIC’s key mechanisms and benefits.  Key
strengths of QUIC include:</t>

<t><list style="symbols">
  <t>Low-latency connection establishment</t>
  <t>Multiplexing without head-of-line blocking</t>
  <t>Authenticated and encrypted header and payload</t>
  <t>Rich signaling for congestion control and loss recovery</t>
  <t>Stream and connection flow control</t>
  <t>Connection migration and resilience to NAT rebinding</t>
  <t>Version negotiation</t>
</list></t>

<section anchor="low-latency-connection-establishment" title="Low-Latency Connection Establishment">

<t>QUIC relies on a combined cryptographic and transport handshake for
setting up a secure transport connection.  QUIC connections are
expected to commonly use 0-RTT handshakes, meaning that for most QUIC
connections, data can be sent immediately following the client
handshake packet, without waiting for a reply from the server.  QUIC
provides a dedicated stream (Stream ID 0) to be used for performing
the cryptographic handshake and QUIC options negotiation.  The format
of the QUIC options and parameters used during negotiation are
described in this document, but the handshake protocol that runs on
Stream ID 0 is described in the accompanying cryptographic handshake
draft <xref target="QUIC-TLS"/>.</t>

</section>
<section anchor="stream-multiplexing" title="Stream Multiplexing">

<t>When application messages are transported over TCP, independent application
messages can suffer from head-of-line blocking.  When an application multiplexes
many streams atop TCP’s single-bytestream abstraction, a loss of a TCP segment
results in blocking of all subsequent segments until a retransmission arrives,
irrespective of the application streams that are encapsulated in subsequent
segments.  QUIC ensures that lost packets carrying data for an individual stream
only impact that specific stream.  Data received on other streams can continue
to be reassembled and delivered to the application.</t>

</section>
<section anchor="rich-signaling-for-congestion-control-and-loss-recovery" title="Rich Signaling for Congestion Control and Loss Recovery">

<t>QUIC’s packet framing and acknowledgments carry rich information that help both
congestion control and loss recovery in fundamental ways.  Each QUIC packet
carries a new packet number, including those carrying retransmitted data.  This
obviates the need for a separate mechanism to distinguish acknowledgments for
retransmissions from those for original transmissions, avoiding TCP’s
retransmission ambiguity problem.  QUIC acknowledgments also explicitly encode
the delay between the receipt of a packet and its acknowledgment being sent, and
together with the monotonically-increasing packet numbers, this allows for
precise network roundtrip-time (RTT) calculation.  QUIC’s ACK frames support
multiple ACK blocks, so QUIC is more resilient to reordering than TCP with SACK
support, as well as able to keep more bytes on the wire when there is reordering
or loss.</t>

</section>
<section anchor="stream-and-connection-flow-control" title="Stream and Connection Flow Control">

<t>QUIC implements stream- and connection-level flow control.  At a high level, a
QUIC receiver advertises the maximum amount of data that it is willing to
receive on each stream.  As data is sent, received, and delivered on a
particular stream, the receiver sends MAX_STREAM_DATA frames that increase the
advertised limit for that stream, allowing the peer to send more data on that
stream.</t>

<t>In addition to this stream-level flow control, QUIC implements connection-level
flow control to limit the aggregate buffer that a QUIC receiver is willing to
allocate to all streams on a connection.  Connection-level flow control works in
the same way as stream-level flow control, but the bytes delivered and the
limits are aggregated across all streams.</t>

</section>
<section anchor="authenticated-and-encrypted-header-and-payload" title="Authenticated and Encrypted Header and Payload">

<t>TCP headers appear in plaintext on the wire and are not authenticated, causing a
plethora of injection and header manipulation issues for TCP, such as
receive-window manipulation and sequence-number overwriting.  While some of
these are mechanisms used by middleboxes to improve TCP performance, others are
active attacks.  Even “performance-enhancing” middleboxes that routinely
interpose on the transport state machine end up limiting the evolvability of the
transport protocol, as has been observed in the design of MPTCP <xref target="RFC6824"/> and
in its subsequent deployability issues.</t>

<t>Generally, QUIC packets are always authenticated and the payload is typically
fully encrypted.  The parts of the packet header which are not encrypted are
still authenticated by the receiver, so as to thwart any packet injection or
manipulation by third parties.  Some early handshake packets, such as the
Version Negotiation packet, are not encrypted, but information sent in these
unencrypted handshake packets is later verified as part of cryptographic
processing.</t>

</section>
<section anchor="connection-migration-and-resilience-to-nat-rebinding" title="Connection Migration and Resilience to NAT Rebinding">

<t>QUIC connections are identified by a Connection ID, a 64-bit unsigned number
randomly generated by the server.  QUIC’s consistent connection ID allows
connections to survive changes to the client’s IP and port, such as those caused
by NAT rebindings or by the client changing network connectivity to a new
address. QUIC provides automatic cryptographic verification of a rebound client,
since the client continues to use the same session key for encrypting and
decrypting packets. The consistent connection ID can be used to allow migration
of the connection to a new server IP address as well, since the Connection ID
remains consistent across changes in the client’s and the server’s network
addresses.</t>

</section>
<section anchor="benefit-version-negotiation" title="Version Negotiation">

<t>QUIC version negotiation allows for multiple versions of the protocol to be
deployed and used concurrently. Version negotiation is described in
<xref target="version-negotiation"/>.</t>

</section>
</section>
<section anchor="versions" title="Versions">

<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>Version 0x00000001 of QUIC uses TLS as a cryptographic handshake protocol, as
described in <xref target="QUIC-TLS"/>.</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 octets is 1010 (in binary).  A client or server MAY advertise
support for any of these reserved versions.</t>

<t>Reserved version numbers will probably 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
<eref target="https://github.com/quicwg/base-drafts/wiki/QUIC-Versions">github wiki</eref>.</t>

</section>
<section anchor="packet-types-and-formats" title="Packet Types and Formats">

<t>We first describe QUIC’s packet types and their formats, since some are
referenced in subsequent mechanisms.</t>

<t>All numeric values are encoded in network byte order (that is, big-endian) and
all field sizes are in bits.  When discussing individual bits of fields, the
least significant bit is referred to as bit 0.  Hexadecimal notation is used for
describing the value of fields.</t>

<t>Any QUIC packet has either a long or a short header, as indicated by the Header
Form bit. Long headers are expected to be used early in the connection before
version negotiation and establishment of 1-RTT keys.  Short headers are minimal
version-specific headers, which are used after version negotiation and 1-RTT
keys are established.</t>

<section anchor="long-header" title="Long Header">

<figure title="Long Header Format" anchor="fig-long-header"><artwork><![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|   Type (7)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                       Connection ID (64)                      +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         Version (32)                          |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                       Packet Number (32)                      |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Payload (*)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>Long headers are used for packets that are sent prior to the completion of
version negotiation and establishment of 1-RTT keys. Once both conditions are
met, a sender switches to sending packets using the short header
(<xref target="short-header"/>).  The long form allows for special packets - such as the
Version Negotiation packet - to be represented in this uniform fixed-length
packet format. A long header contains the following fields:</t>

<t><list style="hanging">
  <t hangText='Header Form:'>
  The most significant bit (0x80) of octet 0 (the first octet) is set to 1 for
long headers.</t>
  <t hangText='Long Packet Type:'>
  The remaining seven bits of octet 0 contain the packet type.  This field can
indicate one of 128 packet types.  The types specified for this version are
listed in <xref target="long-packet-types"/>.</t>
  <t hangText='Connection ID:'>
  Octets 1 through 8 contain the connection ID. <xref target="connection-id"/> describes the
use of this field in more detail.</t>
  <t hangText='Version:'>
  Octets 9 to 12 contain the selected protocol version.  This field indicates
which version of QUIC is in use and determines how the rest of the protocol
fields are interpreted.</t>
  <t hangText='Packet Number:'>
  Octets 13 to 16 contain the packet number.  <xref target="packet-numbers"/> describes the
use of packet numbers.</t>
  <t hangText='Payload:'>
  Octets from 17 onwards (the rest of QUIC packet) are the payload of the
packet.</t>
</list></t>

<t>The following packet types are defined:</t>

<texttable title="Long Header Packet Types" anchor="long-packet-types">
      <ttcol align='left'>Type</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Section</ttcol>
      <c>0x7F</c>
      <c>Initial</c>
      <c><xref target="packet-initial"/></c>
      <c>0x7E</c>
      <c>Retry</c>
      <c><xref target="packet-retry"/></c>
      <c>0x7D</c>
      <c>Handshake</c>
      <c><xref target="packet-handshake"/></c>
      <c>0x7C</c>
      <c>0-RTT Protected</c>
      <c><xref target="packet-protected"/></c>
</texttable>

<t>The header form, packet type, connection ID, packet number and version fields of
a long header packet are version-independent. The types of packets defined in
<xref target="long-packet-types"/> are version-specific.  See <xref target="version-specific"/> 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.  Type-specific semantics for this version are described in the
following sections.</t>

</section>
<section anchor="short-header" title="Short Header">

<figure title="Short Header Format" anchor="fig-short-header"><artwork><![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|C|K| Type (5)|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                     [Connection ID (64)]                      +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                      Packet Number (8/16/32)                ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                     Protected Payload (*)                   ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The short header can be used after the version and 1-RTT keys are negotiated.
This header form has the following fields:</t>

<t><list style="hanging">
  <t hangText='Header Form:'>
  The most significant bit (0x80) of octet 0 is set to 0 for the short header.</t>
  <t hangText='Omit Connection ID Flag:'>
  The second bit (0x40) of octet 0 indicates whether the Connection ID field is
omitted.  If set to 0, then the Connection ID field is present; if set to 1,
the Connection ID field is omitted.  The Connection ID field can
only be omitted if the omit_connection_id transport parameter
(<xref target="transport-parameter-definitions"/>) is specified by the intended recipient
of the packet.</t>
  <t hangText='Key Phase Bit:'>
  The third bit (0x20) of octet 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"/> for details.</t>
  <t hangText='Short Packet Type:'>
  The remaining 5 bits of octet 0 include one of 32 packet types.
<xref target="short-packet-types"/> lists the types that are defined for short packets.</t>
  <t hangText='Connection ID:'>
  If the Omit Connection ID Flag is not set, a connection ID occupies octets
1 through 8 of the packet.  See <xref target="connection-id"/> for more details.</t>
  <t hangText='Packet Number:'>
  The length of the packet number field depends on the packet type.  This field
can be 1, 2 or 4 octets long depending on the short packet type.</t>
  <t hangText='Protected Payload:'>
  Packets with a short header always include a 1-RTT protected payload.</t>
</list></t>

<t>The packet type in a short header currently determines only the size of the
packet number field.  Additional types can be used to signal the presence of
other fields.</t>

<texttable title="Short Header Packet Types" anchor="short-packet-types">
      <ttcol align='left'>Type</ttcol>
      <ttcol align='left'>Packet Number Size</ttcol>
      <c>0x1F</c>
      <c>1 octet</c>
      <c>0x1E</c>
      <c>2 octets</c>
      <c>0x1D</c>
      <c>4 octets</c>
</texttable>

<t>The header form, omit connection ID flag, and connection ID of a short header
packet are version-independent.  The remaining fields are specific to the
selected QUIC version.  See <xref target="version-specific"/> for details on how packets
from different versions of QUIC are interpreted.</t>

</section>
<section anchor="packet-version" title="Version Negotiation Packet">

<t>A Version Negotiation packet is inherently not version-specific, and does not
use the packet headers defined above. Upon receipt by a client, it will appear
to be a packet using the long header, but will be identified as a Version
Negotiation packet based on the Version field.</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 title="Version Negotiation Packet" anchor="version-negotiation-format"><artwork><![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) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                       Connection ID (64)                      +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Version (32)                         |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    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. The Connection
ID field echoes the corresponding value from the triggering client packet.  This
allows clients some assurance that the server received the packet and that the
Version Negotiation packet is in fact from the server.  The Version field MUST
be set to 0x00000000.  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>See <xref target="version-negotiation"/> for a description of the version negotiation
process.</t>

</section>
<section anchor="handshake-packets" title="Cryptographic Handshake Packets">

<t>Once version negotiation is complete, the cryptographic handshake is used to
agree on cryptographic keys.  The cryptographic handshake is carried in Initial
(<xref target="packet-initial"/>), Retry (<xref target="packet-retry"/>) and Handshake
(<xref target="packet-handshake"/>) packets.</t>

<t>All these packets use the long header and contain the current QUIC version in
the version field.</t>

<t>In order to prevent tampering by version-unaware middleboxes, handshake packets
are protected with a connection- and version-specific key, as described in
<xref target="QUIC-TLS"/>. This protection does not provide confidentiality or integrity
against on-path attackers, but provides some level of protection against
off-path attackers.</t>

<section anchor="packet-initial" title="Initial Packet">

<t>The Initial packet uses long headers with a type value of 0x7F.  It carries the
first cryptographic handshake message sent by the client.</t>

<t>The client populates the connection ID field with randomly selected values,
unless it has received a packet from the server.  If the client has received a
packet from the server, the connection ID field uses the value provided by the
server.</t>

<t>The first Initial packet that is sent by a client contains a randomized packet
number.  All subsequent packets contain a packet number that is incremented by
one, see (<xref target="packet-numbers"/>).</t>

<t>The payload of a Initial packet consists of a STREAM frame (or frames)
for stream 0 containing a cryptographic handshake message, with enough PADDING
frames that the packet is at least 1200 octets (see <xref target="packetization"/>).  The
stream in this packet always starts at an offset of 0 (see <xref target="stateless-retry"/>)
and the complete cryptographic handshake message MUST fit in a single packet
(see <xref target="handshake"/>).</t>

<t>The client uses 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, this includes
the packets sent after receiving a Version Negotiation (<xref target="packet-version"/>) or
Retry packet (<xref target="packet-retry"/>).</t>

</section>
<section anchor="packet-retry" title="Retry Packet">

<t>A Retry packet uses long headers with a type value of 0x7E.  It carries
cryptographic handshake messages and acknowledgments.  It is used by a server
that wishes to perform a stateless retry (see <xref target="stateless-retry"/>).</t>

<t>The server includes a connection ID of its choice in the connection ID field.
The client MUST use this connection ID for any subsequent packets that it sends.</t>

<t>The packet number field echoes the packet number field from the triggering
client packet.</t>

<t>A Retry packet is never explicitly acknowledged in an ACK frame
by a client.  Receiving another Initial packet implicitly acknowledges a Retry
packet.</t>

<t>After receiving a Retry packet, the client uses a new
Initial packet containing the next cryptographic handshake message.  The client
retains the state of its cryptographic handshake, but discards all transport
state.  The Initial packet that is generated in response to a Retry packet
includes STREAM frames on stream 0 that start again at an offset of 0.</t>

<t>Continuing the cryptographic handshake is necessary to ensure that an attacker
cannot force a downgrade of any cryptographic parameters.  In addition to
continuing the cryptographic handshake, the client MUST remember the results of
any version negotiation that occurred (see <xref target="version-negotiation"/>).  The client
MAY also retain any observed RTT or congestion state that it has accumulated for
the flow, but other transport state MUST be discarded.</t>

<t>The payload of the Retry packet contains a single STREAM frame
on stream 0 with offset 0 containing the server’s cryptographic stateless retry
material. It MUST NOT contain any other frames. The next STREAM frame sent by
the server will also start at stream offset 0.</t>

</section>
<section anchor="packet-handshake" title="Handshake Packet">

<t>A Handshake packet uses long headers with a type value of 0x7D.  It is
used to carry acknowledgments and cryptographic handshake messages from the
server and client.</t>

<t>The connection ID field in a Handshake packet contains a connection ID
that is chosen by the server (see <xref target="connection-id"/>).</t>

<t>The first Handshake packet sent by a server contains a randomized packet number.
This value is increased for each subsequent packet sent by the server as
described in <xref target="packet-numbers"/>.  The client increments the packet number from
its previous packet by one for each Handshake packet that it sends (which might
be an Initial, 0-RTT Protected, or Handshake packet).</t>

<t>The payload of this packet contains STREAM frames and could contain PADDING and
ACK frames.</t>

</section>
</section>
<section anchor="packet-protected" title="Protected Packets">

<t>Packets that are protected with 0-RTT keys are sent with long headers; all
packets protected with 1-RTT keys are sent with short headers.  The different
packet types explicitly indicate the encryption level and therefore the keys
that are used to remove packet protection.</t>

<t>Packets protected with 0-RTT keys use a type value of 0x7C.  The connection ID
field for a 0-RTT packet is selected by the client.</t>

<t>The client can send 0-RTT packets after receiving a Handshake packet
(<xref target="packet-handshake"/>), if that packet does not complete the handshake.  Even if
the client receives a different connection ID in the Handshake packet, it MUST
continue to use the connection ID selected by the client for 0-RTT packets, see
<xref target="connection-id"/>.</t>

<t>The version field for protected packets is the current QUIC version.</t>

<t>The packet number field contains a packet number, which increases with each
packet sent, see <xref target="packet-numbers"/> for details.</t>

<t>The payload is protected using authenticated encryption.  <xref target="QUIC-TLS"/> describes
packet protection in detail.  After decryption, the plaintext consists of a
sequence of frames, as described in <xref target="frames"/>.</t>

</section>
<section anchor="connection-id" title="Connection ID">

<t>QUIC connections are identified by their 64-bit Connection ID.  All long headers
contain a Connection ID.  Short headers indicate the presence of a Connection ID
using the Omit Connection ID flag.  When present, the Connection ID is in the
same location in all packet headers, making it straightforward for middleboxes,
such as load balancers, to locate and use it.</t>

<t>The client MUST choose a random connection ID and use it in Initial packets
(<xref target="packet-initial"/>) and 0-RTT packets (<xref target="packet-protected"/>).</t>

<t>When the server receives a Initial packet and decides to proceed with the
handshake, it chooses a new value for the connection ID and sends that in a
Retry (<xref target="packet-retry"/>) or Handshake (<xref target="packet-handshake"/>) packet.  The server
MAY choose to use the value that the client initially selects.</t>

<t>Once the client receives the connection ID that the server has chosen, it MUST
use it for all subsequent Handshake (<xref target="packet-handshake"/>) and 1-RTT
(<xref target="packet-protected"/>) packets but not for 0-RTT packets (<xref target="packet-protected"/>).</t>

<t>Server’s Version Negotiation (<xref target="packet-version"/>) and Retry (<xref target="packet-retry"/>)
packets MUST use connection ID selected by the client.</t>

</section>
<section anchor="packet-numbers" title="Packet Numbers">

<t>The packet number is an integer in the range 0 to 2^62-1. The value is used in
determining the cryptographic nonce for packet encryption.  Each endpoint
maintains a separate packet number for sending and receiving.  The packet number
for sending MUST increase by at least one after sending any packet, unless
otherwise specified (see <xref target="initial-packet-number"/>).</t>

<t>A QUIC endpoint MUST NOT reuse a packet number within the same connection (that
is, under the same cryptographic keys).  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; a server MAY send a Stateless
Reset (<xref target="stateless-reset"/>) in response to further packets that it receives.</t>

<t>For the packet header, the number of bits required to represent the packet
number are reduced by including only the least significant bits of the packet
number.  The actual packet number for each packet is reconstructed at the
receiver based on the largest packet number received on a successfully
authenticated packet.</t>

<t>A 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 0xaa82f30e, then a packet containing a 16-bit
value of 0x1f94 will be decoded as 0xaa831f94.</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 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 0x6afa2f,
sending a packet with a number of 0x6b4264 requires a 16-bit or larger packet
number encoding; whereas a 32-bit packet number is needed to send a packet with
a number of 0x6bc107.</t>

<t>Version Negotiation (<xref target="packet-version"/>) and Retry (<xref target="packet-retry"/>) packets
have special rules for populating the packet number field.</t>

<section anchor="initial-packet-number" title="Initial Packet Number">

<t>The initial value for packet number MUST be selected randomly from a range
between 0 and 2^32 - 1025 (inclusive).  This value is selected so that Initial
and Handshake packets exercise as many possible values for the Packet Number
field as possible.</t>

<t>Limiting the range allows both for loss of packets and for any stateless
exchanges.  Packet numbers are incremented for subsequent packets, but packet
loss and stateless handling can both mean that the first packet sent by an
endpoint isn’t necessarily the first packet received by its peer.  The first
packet received by a peer cannot be 2^32 or greater or the recipient will
incorrectly assume a packet number that is 2^32 values lower and discard the
packet.</t>

<t>Use of a secure random number generator <xref target="RFC4086"/> is not necessary for
generating the initial packet number, nor is it necessary that the value be
uniformly distributed.</t>

</section>
</section>
<section anchor="version-specific" title="Handling Packets from Different Versions">

<t>Between different versions the following things are guaranteed to remain
constant:</t>

<t><list style="symbols">
  <t>the location of the header form flag,</t>
  <t>the location of the Omit Connection ID flag in short headers,</t>
  <t>the location and size of the Connection ID field in both header forms,</t>
  <t>the location and size of the Version field in long headers,</t>
  <t>the format and semantics of the Version Negotiation packet.</t>
</list></t>

<t>Implementations MUST assume that an unsupported version uses an unknown packet
format. All other fields MUST be ignored when processing a packet that contains
an unsupported version.</t>

</section>
</section>
<section anchor="frames" title="Frames and Frame Types">

<t>The payload of all packets, after removing packet protection, consists of a
sequence of frames, as shown in <xref target="packet-frames"/>.  Version Negotiation and
Stateless Reset do not contain frames.</t>

<figure title="Contents of Protected Payload" anchor="packet-frames"><artwork><![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>Protected payloads MUST contain at least one frame, and MAY contain multiple
frames and multiple frame types.</t>

<t>Frames MUST fit within a single QUIC packet and MUST NOT span a QUIC packet
boundary. Each frame begins with a Frame Type byte, indicating its type,
followed by additional type-dependent fields:</t>

<figure title="Generic Frame Layout" anchor="frame-layout"><artwork><![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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|   Type (8)    |           Type-Dependent Fields (*)         ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>Frame types are listed in <xref target="frame-types"/>. Note that the Frame Type byte in
STREAM and ACK frames is used to carry other frame-specific flags.  For all
other frames, the Frame Type byte simply identifies the frame.  These frames are
explained in more detail as they are referenced later in the document.</t>

<texttable title="Frame Types" anchor="frame-types">
      <ttcol align='left'>Type Value</ttcol>
      <ttcol align='left'>Frame Type Name</ttcol>
      <ttcol align='left'>Definition</ttcol>
      <c>0x00</c>
      <c>PADDING</c>
      <c><xref target="frame-padding"/></c>
      <c>0x01</c>
      <c>RST_STREAM</c>
      <c><xref target="frame-rst-stream"/></c>
      <c>0x02</c>
      <c>CONNECTION_CLOSE</c>
      <c><xref target="frame-connection-close"/></c>
      <c>0x03</c>
      <c>APPLICATION_CLOSE</c>
      <c><xref target="frame-application-close"/></c>
      <c>0x04</c>
      <c>MAX_DATA</c>
      <c><xref target="frame-max-data"/></c>
      <c>0x05</c>
      <c>MAX_STREAM_DATA</c>
      <c><xref target="frame-max-stream-data"/></c>
      <c>0x06</c>
      <c>MAX_STREAM_ID</c>
      <c><xref target="frame-max-stream-id"/></c>
      <c>0x07</c>
      <c>PING</c>
      <c><xref target="frame-ping"/></c>
      <c>0x08</c>
      <c>BLOCKED</c>
      <c><xref target="frame-blocked"/></c>
      <c>0x09</c>
      <c>STREAM_BLOCKED</c>
      <c><xref target="frame-stream-blocked"/></c>
      <c>0x0a</c>
      <c>STREAM_ID_BLOCKED</c>
      <c><xref target="frame-stream-id-blocked"/></c>
      <c>0x0b</c>
      <c>NEW_CONNECTION_ID</c>
      <c><xref target="frame-new-connection-id"/></c>
      <c>0x0c</c>
      <c>STOP_SENDING</c>
      <c><xref target="frame-stop-sending"/></c>
      <c>0x0d</c>
      <c>PONG</c>
      <c><xref target="frame-pong"/></c>
      <c>0x0e</c>
      <c>ACK</c>
      <c><xref target="frame-ack"/></c>
      <c>0x10 - 0x17</c>
      <c>STREAM</c>
      <c><xref target="frame-stream"/></c>
</texttable>

</section>
<section anchor="life-of-a-connection" title="Life of a Connection">

<t>A QUIC connection is a single conversation between two QUIC endpoints.  QUIC’s
connection establishment intertwines version negotiation with the cryptographic
and transport handshakes to reduce connection establishment latency, as
described in <xref target="handshake"/>.  Once established, a connection may migrate to a
different IP or port at either endpoint, due to NAT rebinding or mobility, as
described in <xref target="migration"/>.  Finally a connection may be terminated by either
endpoint, as described in <xref target="termination"/>.</t>

<section anchor="packet-handling" title="Matching Packets to Connections">

<t>Incoming packets are classified on receipt.  Packets can either be associated
with an existing connection, be discarded, or - for servers - potentially create
a new connection.</t>

<t>Packets that can be associated with an existing connection are handled according
to the current state of that connection.  Packets are associated with existing
connections using connection ID if it is present; this might include connection
IDs that were advertised using NEW_CONNECTION_ID (<xref target="frame-new-connection-id"/>).
Packets without connection IDs and long-form packets for connections that have
incomplete cryptographic handshakes are associated with an existing connection
using the tuple of source and destination IP addresses and ports.</t>

<t>A packet that uses the short header could be associated with an existing
connection with an incomplete cryptographic handshake.  Such a packet could be a
valid packet that has been reordered with respect to the long-form packets that
will complete the cryptographic handshake.  This might happen after the final
set of cryptographic handshake messages from either peer.  These packets are
expected to be correlated with a connection using the tuple of IP addresses and
ports.  Packets that might be reordered in this fashion SHOULD be buffered in
anticipation of the handshake completing.</t>

<t>0-RTT packets might be received prior to a Client Initial packet at a server.
If the version of these packets is acceptable to the server, it MAY buffer these
packets in anticipation of receiving a reordered Client Initial packet.</t>

<t>Buffering ensures that data is not lost, which improves performance; conversely,
discarding these packets could create false loss signals for the congestion
controllers.  However, limiting the number and size of buffered packets might be
needed to prevent exposure to denial of service.</t>

<t>For clients, any packet that cannot be associated with an existing connection
SHOULD be discarded if it is not buffered.  Discarded packets MAY be logged for
diagnostic or security purposes.</t>

<t>For servers, packets that aren’t associated with a connection potentially create
a new connection.  However, only packets that use the long packet header and
that are at least the minimum size defined for the protocol version can be
initial packets.  A server MAY discard packets with a short header or packets
that are smaller than the smallest minimum size for any version that the server
supports.  A server that discards a packet that cannot be associated with a
connection MAY also generate a stateless reset (<xref target="stateless-reset"/>).</t>

<t>This version of QUIC defines a minimum size for initial packets of 1200 octets
(see <xref target="packetization"/>).  Versions of QUIC that define smaller minimum initial
packet sizes need to be aware that initial packets will be discarded without
action by servers that only support versions with larger minimums.  Clients that
support multiple QUIC versions can avoid this problem by ensuring that they
increase the size of their initial packets to the largest minimum size across
all of the QUIC versions they support.  Servers need to recognize initial
packets that are the minimum size of all QUIC versions they support.</t>

</section>
<section anchor="version-negotiation" title="Version Negotiation">

<t>QUIC’s connection establishment begins with version negotiation, since all
communication between the endpoints, including packet and frame formats, relies
on the two endpoints agreeing on a version.</t>

<t>A QUIC connection begins with a client sending an Initial packet
(<xref target="packet-initial"/>). The details of the handshake mechanisms are described in
<xref target="handshake"/>, but any Initial packet sent from the client to the server MUST
use the long header format - which includes the version of the protocol being
used - and they MUST be padded to at least 1200 octets.</t>

<t>The server receives this packet and determines whether it potentially creates a
new connection (see <xref target="packet-handling"/>).  If the packet might generate a new
connection, the server then checks whether it understands the version that the
client has selected.</t>

<t>If the packet contains a version that is acceptable to the server, the server
proceeds with the handshake (<xref target="handshake"/>).  This commits the server to the
version that the client selected.</t>

<section anchor="send-vn" title="Sending Version Negotiation Packets">

<t>If the version selected by the client is not acceptable to the server, the
server responds with a Version Negotiation packet (<xref target="packet-version"/>).  This
includes a list of versions that the server will accept.</t>

<t>A server sends a Version Negotiation packet for any packet with an unacceptable
version if that packet could create a new connection.  This allows a server to
process packets with unsupported versions without retaining state.  Though
either the Client 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.</t>

</section>
<section anchor="handle-vn" title="Handling Version Negotiation Packets">

<t>When the client receives a Version Negotiation packet, it first checks that the
connection ID matches the connection ID 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 connection using that version.  Though the
contents of the Client Initial packet the client sends might not change in
response to version negotiation, a client MUST increase the packet number it
uses on every packet it sends.  Packets MUST continue to use long headers and
MUST include the new negotiated protocol version.</t>

<t>The client MUST use the long header format and include its selected version on
all packets until it has 1-RTT keys and it has received a packet from the server
which is not a Version Negotiation packet.</t>

<t>A client MUST NOT change the version it uses unless it is in response to a
Version Negotiation packet from the server.  Once a client receives a packet
from the server which is not a Version Negotiation packet, it MUST discard other
Version Negotiation packets on the same connection.  Similarly, a client MUST
ignore a Version Negotiation packet if it has already received and acted on a
Version Negotiation packet.</t>

<t>A client MUST ignore a Version Negotiation packet that lists the client’s chosen
version.</t>

<t>Version negotiation packets have no cryptographic protection. The
result of the negotiation MUST be revalidated as part of the
cryptographic handshake (see <xref target="version-validation"/>).</t>

</section>
<section anchor="using-reserved-versions" title="Using Reserved Versions">

<t>For a server to use a new version in the future, clients must correctly handle
unsupported versions. To help ensure this, a server SHOULD include a reserved
version (see <xref target="versions"/>) while 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. The validation of version
negotiation (see <xref target="version-validation"/>) only validates the result of version
negotiation, which is the same no matter which reserved version was sent.
A server MAY therefore send different reserved version numbers in the Version
Negotiation Packet and in its transport parameters.</t>

<t>A client MAY send a packet using a reserved version number.  This can be used to
solicit a list of supported versions from a server.</t>

</section>
</section>
<section anchor="handshake" title="Cryptographic and Transport Handshake">

<t>QUIC relies on a combined cryptographic and transport handshake to minimize
connection establishment latency.  QUIC allocates stream 0 for the cryptographic
handshake.  Version 0x00000001 of QUIC uses TLS 1.3 as described in
<xref target="QUIC-TLS"/>; a different QUIC version number could indicate that a different
cryptographic handshake protocol is in use.</t>

<t>QUIC provides this stream with reliable, ordered delivery of data.  In return,
the cryptographic handshake provides QUIC with:</t>

<t><list style="symbols">
  <t>authenticated key exchange, where  <list style="symbols">
      <t>a server is always authenticated,</t>
      <t>a client is optionally authenticated,</t>
      <t>every connection produces distinct and unrelated keys,</t>
      <t>keying material is usable for packet protection for both 0-RTT and 1-RTT
packets, and</t>
      <t>1-RTT keys have forward secrecy</t>
    </list></t>
  <t>authenticated values for the transport parameters of the peer (see
<xref target="transport-parameters"/>)</t>
  <t>authenticated confirmation of version negotiation (see <xref target="version-validation"/>)</t>
  <t>authenticated negotiation of an application protocol (TLS uses ALPN
<xref target="RFC7301"/> for this purpose)</t>
  <t>for the server, the ability to carry data that provides assurance that the
client can receive packets that are addressed with the transport address that
is claimed by the client (see <xref target="address-validation"/>)</t>
</list></t>

<t>The initial cryptographic handshake message MUST be sent in a single packet.
Any second attempt that is triggered by address validation MUST also be sent
within a single packet.  This avoids having to reassemble a message from
multiple packets.  Reassembling messages requires that a server maintain state
prior to establishing a connection, exposing the server to a denial of service
risk.</t>

<t>The first client packet of the cryptographic handshake protocol MUST fit within
a 1232 octet QUIC packet payload.  This includes overheads that reduce the space
available to the cryptographic handshake protocol.</t>

<t>Details of how TLS is integrated with QUIC is provided in more detail in
<xref target="QUIC-TLS"/>.</t>

</section>
<section anchor="transport-parameters" title="Transport Parameters">

<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 format of the transport parameters is the TransportParameters struct from
<xref target="figure-transport-parameters"/>.  This is described using the presentation
language from Section 3 of <xref target="I-D.ietf-tls-tls13"/>.</t>

<figure title="Definition of TransportParameters" anchor="figure-transport-parameters"><artwork><![CDATA[
   uint32 QuicVersion;

   enum {
      initial_max_stream_data(0),
      initial_max_data(1),
      initial_max_stream_id_bidi(2),
      idle_timeout(3),
      omit_connection_id(4),
      max_packet_size(5),
      stateless_reset_token(6),
      ack_delay_exponent(7),
      initial_max_stream_id_uni(8),
      (65535)
   } TransportParameterId;

   struct {
      TransportParameterId parameter;
      opaque value<0..2^16-1>;
   } TransportParameter;

   struct {
      select (Handshake.msg_type) {
         case client_hello:
            QuicVersion initial_version;

         case encrypted_extensions:
            QuicVersion negotiated_version;
            QuicVersion supported_versions<4..2^8-4>;
      };
      TransportParameter parameters<22..2^16-1>;
   } TransportParameters;
]]></artwork></figure>

<t>The <spanx style="verb">extension_data</spanx> field of the quic_transport_parameters extension defined in
<xref target="QUIC-TLS"/> contains a TransportParameters value.  TLS encoding rules are
therefore used to encode the transport parameters.</t>

<t>QUIC encodes transport parameters into a sequence of octets, which are then
included 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.  In particular, version negotiation
MUST be validated (see <xref target="version-validation"/>) before the connection
establishment is considered properly complete.</t>

<t>Definitions for each of the defined transport parameters are included in
<xref target="transport-parameter-definitions"/>.  Any given parameter MUST appear
at most once in a given transport parameters extension.  An endpoint MUST
treat receipt of duplicate transport parameters as a connection error of
type TRANSPORT_PARAMETER_ERROR.</t>

<section anchor="transport-parameter-definitions" title="Transport Parameter Definitions">

<t>An endpoint MUST include the following parameters in its encoded
TransportParameters:</t>

<t><list style="hanging">
  <t hangText='initial_max_stream_data (0x0000):'>
  The initial stream maximum data parameter contains the initial value for the
maximum data that can be sent on any newly created stream.  This parameter is
encoded as an unsigned 32-bit integer in units of octets.  This is equivalent
to an implicit MAX_STREAM_DATA frame (<xref target="frame-max-stream-data"/>) being sent on
all streams immediately after opening.</t>
  <t hangText='initial_max_data (0x0001):'>
  The initial maximum data parameter contains the initial value for the maximum
amount of data that can be sent on the connection.  This parameter is encoded
as an unsigned 32-bit integer in units of octets.  This is equivalent to
sending a MAX_DATA (<xref target="frame-max-data"/>) for the connection immediately after
completing the handshake.</t>
  <t hangText='idle_timeout (0x0003):'>
  The idle timeout is a value in seconds that is encoded as an unsigned 16-bit
integer.  The maximum value is 600 seconds (10 minutes).</t>
</list></t>

<t>A server MUST include the following transport parameters:</t>

<t><list style="hanging">
  <t hangText='stateless_reset_token (0x0006):'>
  The Stateless Reset Token is used in verifying a stateless reset, see
<xref target="stateless-reset"/>.  This parameter is a sequence of 16 octets.</t>
</list></t>

<t>A client MUST NOT include a stateless reset token.  A server MUST treat receipt
of a stateless_reset_token transport parameter as a connection error of type
TRANSPORT_PARAMETER_ERROR.</t>

<t>An endpoint MAY use the following transport parameters:</t>

<t><list style="hanging">
  <t hangText='initial_max_stream_id_bidi (0x0002):'>
  The initial maximum stream ID parameter contains the initial maximum stream
number the peer may initiate for bidirectional streams, encoded as an unsigned
32-bit integer.  This value MUST be a valid bidirectional stream ID for a
peer-initiated stream (that is, the two least significant bits are set to 0 by
a server and to 1 by a client).  If an invalid value is provided, the
recipient MUST generate a connection error of type TRANSPORT_PARAMETER_ERROR.
Setting this parameter is equivalent to sending a MAX_STREAM_ID
(<xref target="frame-max-stream-id"/>) immediately after completing the handshake.  The
maximum bidirectional stream ID is set to 0 if this parameter is absent,
preventing the creation of new bidirectional streams until a MAX_STREAM_ID
frame is sent.  Note that a default value of 0 does not prevent the
cryptographic handshake stream (that is, stream 0) from being used.</t>
  <t hangText='initial_max_stream_id_uni (0x0008):'>
  The initial maximum stream ID parameter contains the initial maximum stream
number the peer may initiate for unidirectional streams, encoded as an
unsigned 32-bit integer.  The value MUST be a valid unidirectional ID for the
recipient (that is, the two least significant bits are set to 2 by a server
and to 3 by a client).  If an invalid value is provided, the recipient MUST
generate a connection error of type TRANSPORT_PARAMETER_ERROR.  Setting this
parameter is equivalent to sending a MAX_STREAM_ID (<xref target="frame-max-stream-id"/>)
immediately after completing the handshake.  The maximum unidirectional stream
ID is set to 0 if this parameter is absent, preventing the creation of new
unidirectional streams until a MAX_STREAM_ID frame is sent.</t>
  <t hangText='omit_connection_id (0x0004):'>
  The omit connection identifier parameter indicates that packets sent to the
endpoint that advertises this parameter MAY omit the connection ID in packets
using short header format.  This can be used by an endpoint where it knows
that source and destination IP address and port are sufficient for it to
identify a connection.  This parameter is zero length.  Absence of this
parameter means that the connection ID MUST be present in every packet sent to
this endpoint.</t>
  <t hangText='max_packet_size (0x0005):'>
  The maximum packet size parameter places a limit on the size of packets that
the endpoint is willing to receive, encoded as an unsigned 16-bit integer.
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"/>).</t>
  <t hangText='ack_delay_exponent (0x0007):'>
  An 8-bit unsigned integer value indicating an exponent used to decode the ACK
Delay field in the ACK frame, see <xref target="frame-ack"/>.  If this value is absent, a
default value of 3 is assumed (indicating a multiplier of 8).  The default
value is also used for ACK frames that are sent in Initial, Handshake, and
Retry packets.  Values above 20 are invalid.</t>
</list></t>

</section>
<section anchor="zerortt-parameters" title="Values of Transport Parameters for 0-RTT">

<t>A client that attempts to send 0-RTT data MUST remember the transport parameters
used by the server.  The transport parameters that the server advertises during
connection establishment apply to all connections that are resumed using the
keying material established during that handshake.  Remembered transport
parameters apply to the new connection until the handshake completes and new
transport parameters from the server can be provided.</t>

<t>A server can remember the transport parameters that it advertised, 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>A server MAY accept 0-RTT and subsequently provide different values for
transport parameters for use in the new connection.  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 initial_max_data or
initial_max_stream_data that are smaller than the remembered value of those
parameters.  Similarly, a server MUST NOT reduce the value of
initial_max_stream_id_bidi or initial_max_stream_id_uni.</t>

<t>Omitting or setting a zero value for certain transport parameters can result in
0-RTT data being enabled, but not usable.  The following transport parameters
SHOULD be set to non-zero values for 0-RTT: initial_max_stream_id_bidi,
initial_max_stream_id_uni, initial_max_data, initial_max_stream_data.</t>

<t>A server MUST reject 0-RTT data or even abort a handshake if the implied values
for transport parameters cannot be supported.</t>

</section>
<section anchor="new-transport-parameters" title="New Transport Parameters">

<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.</t>

<t>New transport parameters can be registered according to the rules in
<xref target="iana-transport-parameters"/>.</t>

</section>
<section anchor="version-validation" title="Version Negotiation Validation">

<t>Though the cryptographic handshake has integrity protection, two forms of QUIC
version downgrade are possible.  In the first, an attacker replaces the QUIC
version in the Initial packet.  In the second, a fake Version Negotiation packet
is sent by an attacker.  To protect against these attacks, the transport
parameters include three fields that encode version information.  These
parameters are used to retroactively authenticate the choice of version (see
<xref target="version-negotiation"/>).</t>

<t>The cryptographic handshake provides integrity protection for the negotiated
version as part of the transport parameters (see <xref target="transport-parameters"/>).  As
a result, attacks on version negotiation by an attacker can be detected.</t>

<t>The client includes the initial_version field in its transport parameters.  The
initial_version is the version that the client initially attempted to use.  If
the server did not send a version negotiation packet <xref target="packet-version"/>, this
will be identical to the negotiated_version field in the server transport
parameters.</t>

<t>A server that processes all packets in a stateful fashion can remember how
version negotiation was performed and validate the initial_version value.</t>

<t>A server that does not maintain state for every packet it receives (i.e., a
stateless server) uses a different process. If the initial_version matches the
version of QUIC that is in use, a stateless server can accept the value.</t>

<t>If the initial_version is different from the version of QUIC that is in use, a
stateless server MUST check that it would have sent a version negotiation packet
if it had received a packet with the indicated initial_version.  If a server
would have accepted the version included in the initial_version and the value
differs from the QUIC version that is in use, the server MUST terminate the
connection with a VERSION_NEGOTIATION_ERROR error.</t>

<t>The server includes both the version of QUIC that is in use and a list of the
QUIC versions that the server supports.</t>

<t>The negotiated_version field is the version that is in use.  This MUST be set by
the server to the value that is on the Initial packet that it accepts (not an
Initial packet that triggers a Retry or Version Negotiation packet).  A client
that receives a negotiated_version that does not match the version of QUIC that
is in use MUST terminate the connection with a VERSION_NEGOTIATION_ERROR error
code.</t>

<t>The server includes a list of versions that it would send in any version
negotiation packet (<xref target="packet-version"/>) in the supported_versions field.  The
server populates this field even if it did not send a version negotiation
packet.</t>

<t>The client validates that the negotiated_version is included in the
supported_versions list and - if version negotiation was performed - that it
would have selected the negotiated version.  A client MUST terminate the
connection with a VERSION_NEGOTIATION_ERROR error code if the current QUIC
version is not listed in the supported_versions list.  A client MUST terminate
with a VERSION_NEGOTIATION_ERROR error code if version negotiation occurred but
it would have selected a different version based on the value of the
supported_versions list.</t>

<t>When an endpoint accepts multiple QUIC versions, it can potentially interpret
transport parameters as they are defined by any of the QUIC versions it
supports.  The version field in the QUIC packet header is authenticated using
transport parameters.  The position and the format of the version fields in
transport parameters MUST either be identical across different QUIC versions, or
be unambiguously different to ensure no confusion about their interpretation.
One way that a new format could be introduced is to define a TLS extension with
a different codepoint.</t>

</section>
</section>
<section anchor="stateless-retry" title="Stateless Retries">

<t>A server can process an initial cryptographic handshake messages from a client
without committing any state. This allows a server to perform address validation
(<xref target="address-validation"/>, or to defer connection establishment costs.</t>

<t>A server that generates a response to an initial packet without retaining
connection state MUST use the Retry packet (<xref target="packet-retry"/>).  This packet
causes a client to reset its transport state and to continue the connection
attempt with new connection state while maintaining the state of the
cryptographic handshake.</t>

<t>A server MUST NOT send multiple Retry packets in response to a client handshake
packet.  Thus, any cryptographic handshake message that is sent MUST fit within
a single packet.</t>

<t>In TLS, the Retry packet type is used to carry the HelloRetryRequest message.</t>

</section>
<section anchor="address-validation" title="Proof of Source Address Ownership">

<t>Transport protocols commonly spend a round trip checking that a client owns the
transport address (IP and port) that it claims.  Verifying that a client can
receive packets sent to its claimed transport address protects against spoofing
of this information by malicious clients.</t>

<t>This technique is used primarily to avoid QUIC from being used for 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>Several methods are used in QUIC to mitigate this attack.  Firstly, the initial
handshake packet is padded to at least 1200 octets.  This allows a server to
send a similar amount of data without risking causing an amplification attack
toward an unproven remote address.</t>

<t>A server eventually confirms that a client has received its messages when the
cryptographic handshake successfully completes.  This might be insufficient,
either because the server wishes to avoid the computational cost of completing
the handshake, or it might be that the size of the packets that are sent during
the handshake is too large.  This is especially important for 0-RTT, where the
server might wish to provide application data traffic - such as a response to a
request - in response to the data carried in the early data from the client.</t>

<t>To send additional data prior to completing the cryptographic handshake, the
server then needs to validate that the client owns the address that it claims.</t>

<t>Source address validation is therefore performed during the establishment of a
connection.  TLS provides the tools that support the feature, but basic
validation is performed by the core transport protocol.</t>

<t>A different type of source address validation is performed after a connection
migration, see <xref target="migrate-validate"/>.</t>

<section anchor="client-address-validation-procedure" title="Client Address Validation Procedure">

<t>QUIC uses token-based address validation.  Any time the server wishes to
validate a client address, it provides the client with a token.  As long as the
token cannot be easily guessed (see <xref target="token-integrity"/>), if the client is able
to return that token, it proves to the server that it received the token.</t>

<t>During the processing of the cryptographic handshake messages from a client, TLS
will request that QUIC make a decision about whether to proceed based on the
information it has.  TLS will provide QUIC with any token that was provided by
the client.  For an initial packet, QUIC can decide to abort the connection,
allow it to proceed, or request address validation.</t>

<t>If QUIC decides to request address validation, it provides the cryptographic
handshake with a token.  The contents of this token are consumed by the server
that generates the token, so there is no need for a single well-defined format.
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>

<t>The cryptographic handshake is responsible for enacting validation by sending
the address validation token to the client.  A legitimate client will include a
copy of the token when it attempts to continue the handshake.  The cryptographic
handshake extracts the token then asks QUIC a second time whether the token is
acceptable.  In response, QUIC can either abort the connection or permit it to
proceed.</t>

<t>A connection MAY be accepted without address validation - or with only limited
validation - but a server SHOULD limit the data it sends toward an unvalidated
address.  Successful completion of the cryptographic handshake implicitly
provides proof that the client has received packets from the server.</t>

</section>
<section anchor="address-validation-on-session-resumption" title="Address Validation on Session Resumption">

<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>A different type of token is needed when resuming.  Unlike the token that is
created during a handshake, there might be some time between when the token is
created and when the token is subsequently used.  Thus, a resumption token
SHOULD include an expiration time.  It is also unlikely that the client port
number is the same on two different connections; validating the port is
therefore unlikely to be successful.</t>

<t>This token can be provided to the cryptographic handshake immediately after
establishing a connection.  QUIC might also generate an updated token if
significant time passes or the client address changes for any reason (see
<xref target="migration"/>).  The cryptographic handshake is responsible for providing the
client with the token.  In TLS the token is included in the ticket that is used
for resumption and 0-RTT, which is carried in a NewSessionTicket message.</t>

</section>
<section anchor="token-integrity" title="Address Validation Token Integrity">

<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>In TLS the address validation token is often bundled with the information that
TLS requires, such as the resumption secret.  In this case, adding integrity
protection can be delegated to the cryptographic handshake protocol, avoiding
redundant protection.  If integrity protection is delegated to the cryptographic
handshake, an integrity failure will result in immediate cryptographic handshake
failure.  If integrity protection is performed by QUIC, QUIC MUST abort the
connection if the integrity check fails with a PROTOCOL_VIOLATION error code.</t>

</section>
</section>
<section anchor="migration" title="Connection Migration">

<t>QUIC connections are identified by their 64-bit Connection ID.  QUIC’s
consistent connection ID allows connections to survive changes to the client’s
IP and/or port, such as those caused by client or server migrating to a new
network.  Connection migration allows a client to retain any shared state with a
connection when they move networks.  This includes state that can be hard to
recover such as outstanding requests, which might otherwise be lost with no easy
way to retry them.</t>

<t>An endpoint that receives packets that contain a source IP address and port that
has not yet been used can start sending new packets with those as a destination
IP address and port.  Packets exchanged between endpoints can then follow the
new path.</t>

<t>Due to variations in path latency or packet reordering, packets from different
source addresses might be reordered.  The packet with the highest packet number
MUST be used to determine which path to use.  Endpoints also need to be prepared
to receive packets from an older source address.</t>

<t>An endpoint MUST validate that its peer can receive packets at the new address
before sending any significant quantity of data to that address, or it risks
being used for denial of service.  See <xref target="migrate-validate"/> for details.</t>

<section anchor="migration-linkability" title="Privacy Implications of Connection Migration">

<t>Using a stable connection ID on multiple network paths allows a passive observer
to correlate activity between those paths.  A client that moves between networks
might not wish to have their activity correlated by any entity other than a
server. The NEW_CONNECTION_ID message can be sent by a server to provide an
unlinkable connection ID for use in case the client wishes to explicitly break
linkability between two points of network attachment.</t>

<t>A client might need to send packets on multiple networks without receiving any
response from the server.  To ensure that the client is not linkable across each
of these changes, a new connection ID and packet number gap are needed for each
network.  To support this, a server sends multiple NEW_CONNECTION_ID messages.
Each NEW_CONNECTION_ID is marked with a sequence number.  Connection IDs MUST be
used in the order in which they are numbered.</t>

<t>A client which wishes to break linkability upon changing networks MUST use the
connection ID provided by the server as well as incrementing the packet sequence
number by an externally unpredictable value computed as described in
<xref target="packet-number-gap"/>. Packet number gaps are cumulative.  A client might skip
connection IDs, but it MUST ensure that it applies the associated packet number
gaps for connection IDs that it skips in addition to the packet number gap
associated with the connection ID that it does use.</t>

<t>A server that receives a packet that is marked with a new connection ID recovers
the packet number by adding the cumulative packet number gap to its expected
packet number.  A server SHOULD discard packets that contain a smaller gap than
it advertised.</t>

<t>For instance, a server might provide a packet number gap of 7 associated with a
new connection ID.  If the server received packet 10 using the previous
connection ID, it should expect packets on the new connection ID to start at 18.
A packet with the new connection ID and a packet number of 17 is discarded as
being in error.</t>

<section anchor="packet-number-gap" title="Packet Number Gap">

<t>In order to avoid linkage, the packet number gap MUST be externally
indistinguishable from random. The packet number gap for a connection
ID with sequence number is computed by encoding the sequence number
as a 32-bit integer in big-endian format, and then computing:</t>

<figure><artwork><![CDATA[
Gap = HKDF-Expand-Label(packet_number_secret,
                        "QUIC packet sequence gap", sequence, 4)
]]></artwork></figure>

<t>The output of HKDF-Expand-Label is interpreted as a big-endian
number. “packet_number_secret” is derived from the TLS key exchange,
as described in Section 5.6 of <xref target="QUIC-TLS"/>.</t>

</section>
</section>
<section anchor="migrate-validate" title="Address Validation for Migrated Connections">

<t>An endpoint that receives a packet from a new remote IP address and port (or
just a new remote port) on packets from its peer is likely seeing a connection
migration at the peer.</t>

<t>However, it is also possible that the peer is spoofing its source address in
order to cause the endpoint to send excessive amounts of data to an unwilling
host.  If the endpoint sends significantly more data than the peer, connection
migration might be used to amplify the volume of data that an attacker can
generate toward a victim.</t>

<t>Thus, when seeing a new remote transport address, an endpoint MUST verify that
its peer can receive and respond to packets at that new address.  By providing
copies of the data that it receives, the peer proves that it is receiving
packets at the new address and consents to receive data.</t>

<t>Prior to validating the new remote address, and endpoint MUST limit the amount
of data and packets that it sends to its peer.  At a minimum, this needs to
consider the possibility that packets are sent without congestion feedback.</t>

<t>Once a connection is established, address validation is relatively simple (see
<xref target="address-validation"/> for the process that is used during the handshake).  An
endpoint validates a remote address by sending a PING frame containing a payload
that is hard to guess.  This frame MUST be sent in a packet that is sent to the
new address.  Once a PONG frame containing the same payload is received, the
address is considered to be valid.  The PONG frame can use any path on its
return.  A PING frame containing 12 randomly generated <xref target="RFC4086"/> octets is
sufficient to ensure that it is easier to receive the packet than it is to guess
the value correctly.</t>

<t>If the PING frame is determined to be lost, a new PING frame SHOULD be
generated.  This PING frame MUST include a new Data field that is similarly
difficult to guess.</t>

<t>If validation of the new remote address fails, after allowing enough time for
possible loss and recovery of packets carrying PING and PONG frames, the
endpoint MUST terminate the connection.  When setting this timer,
implementations are cautioned that the new path could have a longer round trip
time than the original.  The endpoint MUST NOT send a CONNECTION_CLOSE frame in
this case; it has to assume that the remote peer does not want to receive any
more packets.</t>

<t>If the remote address is validated successfully, the endpoint MAY increase the
rate that it sends on the new path using the state from the previous path.  The
capacity available on the new path might not be the same as the old path.  An
endpoint MUST NOT restore its send rate unless it is reasonably sure that the
path is the same as the previous path.  For instance, a change in only port
number is likely indicative of a rebinding in a middlebox and not a complete
change in path.  This determination likely depends on heuristics, which could be
imperfect; if the new path capacity is significantly reduced, ultimately this
relies on the congestion controller responding to congestion signals and reduce
send rates appropriately.</t>

<t>After verifying an address, the endpoint SHOULD update any address validation
tokens (<xref target="address-validation"/>) that it has issued to its peer if those are no
longer valid based on the changed address.</t>

<t>Address validation using the PING frame MAY be used at any time by either peer.
For instance, an endpoint might check that a peer is still in possession of its
address after a period of quiescence.</t>

<t>Upon seeing a connection migration, an endpoint that sees a new address MUST
abandon any address validation it is performing with other addresses on the
expectation that the validation is likely to fail.  Abandoning address
validation primarily means not closing the connection when a PONG frame is not
received, but it could also mean ceasing retransmissions of the PING frame.  An
endpoint that doesn’t retransmit a PING frame might receive a PONG frame, which
it MUST ignore.</t>

</section>
</section>
<section anchor="spurious-connection-migrations" title="Spurious Connection Migrations">

<t>A connection migration could be triggered by an attacker that is able to capture
and forward a packet such that it arrives before the legitimate copy of that
packet.  Such a packet will appear to be a legitimate connection migration and
the legitimate copy will be dropped as a duplicate.</t>

<t>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 PING frame that is sent to it, even if it wanted to.
Such a spurious connection migration could result in the connection being
dropped when the source address validation fails.  This grants an attacker the
ability to terminate the connection.</t>

<t>Receipt of packets with higher packet numbers from the legitimate address will
trigger another connection migration.  This will cause the validation of the
address of the spurious migration to be abandoned.</t>

<t>To ensure that a peer sends packets from the legitimate address before the
validation of the new address can fail, an endpoint SHOULD attempt to validate
the old remote address before attempting to validate the new address.  If the
connection migration is spurious, then the legitimate address will be used to
respond and the connection will migrate back to the old address.</t>

<t>As with any address validation, packets containing retransmissions of the PING
frame validating an address MUST be sent to the address being validated.
Consequently, during a migration of a peer, an endpoint could be sending to
multiple remote addresses.</t>

<t>An endpoint MAY abandon address validation for an address that it considers to
be already valid.  That is, if successive connection migrations occur in quick
succession with the final remote address being identical to the initial remote
address, the endpoint MAY abandon address validation for that address.</t>

</section>
<section anchor="termination" title="Connection Termination">

<t>Connections should remain open until they become idle for a pre-negotiated
period of time.  A QUIC connection, once established, can be terminated in one
of three ways:</t>

<t><list style="symbols">
  <t>idle timeout (<xref target="idle-timeout"/>)</t>
  <t>immediate close (<xref target="immediate-close"/>)</t>
  <t>stateless reset (<xref target="stateless-reset"/>)</t>
</list></t>

<section anchor="draining" title="Closing and Draining Connection States">

<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 three times the current Retransmission Timeout
(RTO) interval as defined in <xref target="QUIC-RECOVERY"/>.</t>

<t>An endpoint enters a closing period after initiating an immediate close
(<xref target="immediate-close"/>) and optionally after an idle timeout (<xref target="idle-timeout"/>).
While closing, an endpoint MUST NOT send packets unless they contain a
CONNECTION_CLOSE or APPLICATION_CLOSE frame (see <xref target="immediate-close"/> for
details).</t>

<t>In the closing state, only a packet containing a closing frame can be sent.  An
endpoint retains only enough information to generate a packet containing a
closing frame and to identify packets as belonging to the connection.  The
connection ID and QUIC version is 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 closing 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
can confirm that its peer is also closing or draining.  Receiving a closing
frame is sufficient confirmation, as is receiving a stateless reset.  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 be handled poorly.  Endpoints that
have some alternative means to ensure that late-arriving packets on the
connection do not create QUIC state, 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"/>) 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>An endpoint could receive packets from a new source address, indicating a
connection migration (<xref target="migration"/>), while in the closing period. An endpoint
in the closing state MUST strictly limit the number of packets it sends to this
new address as though the address were not validated (see <xref target="migrate-validate"/>).
A server in the closing state MAY instead choose to discard packets received
from a new source address.</t>

</section>
<section anchor="idle-timeout" title="Idle Timeout">

<t>A connection that remains idle for longer than the idle timeout (see
<xref target="transport-parameter-definitions"/>) is closed.  A connection enters the
draining state when the idle timeout expires.</t>

<t>The time at which an idle timeout takes effect won’t be perfectly synchronized
on both endpoints.  An endpoint that sends packets near the end of an idle
period could have those packets discarded if its peer enters the draining state
before the packet is received.</t>

</section>
<section anchor="immediate-close" title="Immediate Close">

<t>An endpoint sends a closing frame, either CONNECTION_CLOSE or APPLICATION_CLOSE,
to terminate the connection immediately.  Either closing frame causes all
streams to immediately become closed; open streams can be assumed to be
implicitly reset.</t>

<t>After sending a closing frame, endpoints immediately enter the closing state.
During the closing period, an endpoint that sends a closing frame SHOULD respond
to any packet that it receives with another packet containing a closing frame.
To minimize the state that an endpoint maintains for a closing connection,
endpoints MAY send the exact same packet.  However, endpoints SHOULD limit the
number of packets they generate containing a closing frame.  For instance, an
endpoint could progressively increase the number of packets that it receives
before sending additional packets or increase the time between packets.</t>

<t><list style="hanging">
  <t hangText='Note:'>
  Allowing retransmission of a 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.</t>
</list></t>

<t>After receiving a closing frame, endpoints enter the draining state.  An
endpoint that receives a closing frame MAY send a single packet containing a
closing 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 closing 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 an APPLICATION_CLOSE message with an appropriate error code to
signal closure.</t>

</section>
<section anchor="stateless-reset" title="Stateless Reset">

<t>A stateless reset is provided as an option of last resort for a server that does
not have access to the state of a connection.  A server crash or outage might
result in clients continuing to send data to a server that is unable to properly
continue the connection.  A server that wishes to communicate a fatal connection
error MUST use a closing frame if it has sufficient state to do so.</t>

<t>To support this process, the server sends a stateless_reset_token value during
the handshake in the transport parameters.  This value is protected by
encryption, so only client and server know this value.</t>

<t>A server that receives packets that it cannot process sends a packet in the
following layout:</t>

<figure><artwork><![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|C|K|Type (5) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                     [Connection ID (64)]                      +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                     Packet Number (8/16/32)                   |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Random Octets (*)                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                                                               +
|                                                               |
+                   Stateless Reset Token (128)                 +
|                                                               |
+                                                               +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>A server copies the connection ID field from the packet that triggers the
stateless reset.  A server omits the connection ID if explicitly configured to
do so, or if the client packet did not include a connection ID.</t>

<t>The Packet Number field is set to a randomized value.  The server SHOULD send a
packet with a short header and a type of 0x1F.  This produces the shortest
possible packet number encoding, which minimizes the perceived gap between the
last packet that the server sent and this packet.  A server MAY use a different
short header type, indicating a different packet number length, but a longer
packet number encoding might allow this message to be identified as a stateless
reset more easily using heuristics.</t>

<t>After the Packet Number, the server pads the message with an arbitrary
number of octets containing random values.</t>

<t>Finally, the last 16 octets of the packet are set to the value of the Stateless
Reset Token.</t>

<t>This design ensures that a stateless reset packet is - to the extent possible -
indistinguishable from a regular packet.</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 or APPLICATION_CLOSE frame if it has sufficient state to do so.</t>

<t>This stateless reset design is specific to QUIC version 1.  A server that
supports multiple versions of QUIC needs to generate a stateless reset that will
be accepted by clients that support any version that the server 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 octets for carrying data.</t>

<section anchor="detecting-a-stateless-reset" title="Detecting a Stateless Reset">

<t>A client detects a potential stateless reset when a packet with a short header
either cannot be decrypted or is marked as a duplicate packet.  The client then
compares the last 16 octets of the packet with the Stateless Reset Token
provided by the server in its transport parameters.  If these values are
identical, the client MUST enter the draining period and not send any further
packets on this connection.  If the comparison fails, the packet can be
discarded.</t>

</section>
<section anchor="calculating-a-stateless-reset-token" title="Calculating a Stateless Reset Token">

<t>The stateless reset token MUST be difficult to guess.  In order to create a
Stateless Reset Token, a server could randomly generate <xref target="RFC4086"/> a secret
for every connection that it creates.  However, this presents a coordination
problem when there are multiple servers in a cluster or a storage problem for a
server 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 three inputs: the static key, a the connection ID for the connection
(see <xref target="connection-id"/>), and an identifier for the server instance.  A server
could use HMAC <xref target="RFC2104"/> (for example, HMAC(static_key, server_id ||
connection_id)) or HKDF <xref target="RFC5869"/> (for example, using the static key as input
keying material, with server and connection identifiers as salt).  The output of
this function is truncated to 16 octets to produce the Stateless Reset Token
for that connection.</t>

<t>A server that loses state can use the same method to generate a valid Stateless
Reset Secret.  The connection ID comes from the packet that the server receives.</t>

<t>This design relies on the client always sending a connection ID in its packets
so that the server can use the connection ID from a packet to reset the
connection.  A server that uses this design cannot allow clients to omit a
connection ID (that is, it cannot use the truncate_connection_id transport
parameter <xref target="transport-parameter-definitions"/>).</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 server instance, connection
ID, and static key cannot occur for another connection.  A connection ID from a
connection that is reset by revealing the Stateless Reset Token cannot be
reused for new connections at the same server without first changing to use a
different static key or server identifier.</t>

<t>Note that Stateless Reset messages do not have any cryptographic protection.</t>

</section>
</section>
</section>
</section>
<section anchor="frame-types-and-formats" title="Frame Types and Formats">

<t>As described in <xref target="frames"/>, Regular packets contain one or more frames.
We now describe the various QUIC frame types that can be present in a Regular
packet. The use of these frames and various frame header bits are described in
subsequent sections.</t>

<section anchor="integer-encoding" title="Variable-Length Integer Encoding">

<t>QUIC frames use a common variable-length encoding for all non-negative integer
values.  This encoding ensures that smaller integer values need fewer octets to
encode.</t>

<t>The QUIC variable-length integer encoding reserves the two most significant bits
of the first octet to encode the base 2 logarithm of the integer encoding length
in octets.  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 octets and can encode 6,
14, 30, or 62 bit values respectively.  <xref target="integer-summary"/> summarizes the
encoding properties.</t>

<texttable title="Summary of Integer Encodings" anchor="integer-summary">
      <ttcol align='left'>2Bit</ttcol>
      <ttcol align='left'>Length</ttcol>
      <ttcol align='left'>Usable Bits</ttcol>
      <ttcol align='left'>Range</ttcol>
      <c>00</c>
      <c>1</c>
      <c>6</c>
      <c>0-63</c>
      <c>01</c>
      <c>2</c>
      <c>14</c>
      <c>0-16383</c>
      <c>10</c>
      <c>4</c>
      <c>30</c>
      <c>0-1073741823</c>
      <c>11</c>
      <c>8</c>
      <c>62</c>
      <c>0-4611686018427387903</c>
</texttable>

<t>For example, the eight octet sequence c2 19 7c 5e ff 14 e8 8c (in hexadecimal)
decodes to the decimal value 151288809941952652; the four octet sequence 9d 7f
3e 7d decodes to 494878333; the two octet sequence 7b bd decodes to 15293; and
the single octet 25 decodes to 37 (as does the two octet sequence 40 25).</t>

<t>Error codes (<xref target="error-codes"/>) are described using integers, but do not use this
encoding.</t>

</section>
<section anchor="frame-padding" title="PADDING Frame">

<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
octet that identifies the frame as a PADDING frame.</t>

</section>
<section anchor="frame-rst-stream" title="RST_STREAM Frame">

<t>An endpoint may use a RST_STREAM frame (type=0x01) to abruptly terminate a
stream.</t>

<t>After sending a RST_STREAM, an endpoint ceases transmission and retransmission
of STREAM frames on the identified stream.  A receiver of RST_STREAM can discard
any data that it already received on that stream.</t>

<t>The RST_STREAM frame is as follows:</t>

<figure><artwork><![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 (16)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                       Final Offset (i)                     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The fields are:</t>

<t><list style="hanging">
  <t hangText='Stream ID:'>
  A variable-length integer encoding of the Stream ID of the stream being
terminated.</t>
  <t hangText='Application Protocol Error Code:'>
  A 16-bit application protocol error code (see <xref target="app-error-codes"/>) which
indicates why the stream is being closed.</t>
  <t hangText='Final Offset:'>
  A variable-length integer indicating the absolute byte offset of the end of
data written on this stream by the RST_STREAM sender.</t>
</list></t>

</section>
<section anchor="frame-connection-close" title="CONNECTION_CLOSE frame">

<t>An endpoint sends a CONNECTION_CLOSE frame (type=0x02) to notify its peer that
the connection is being closed.  CONNECTION_CLOSE is used to signal errors at
the QUIC layer, or the absence of errors (with the NO_ERROR code).</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 frame is as follows:</t>

<figure><artwork><![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 (16)     |   Reason Phrase Length (i)  ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Reason Phrase (*)                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The fields of a CONNECTION_CLOSE frame are as follows:</t>

<t><list style="hanging">
  <t hangText='Error Code:'>
  A 16-bit error code which indicates the reason for closing this connection.
CONNECTION_CLOSE uses codes from the space defined in <xref target="error-codes"/>
(APPLICATION_CLOSE uses codes from the application protocol error code space,
see <xref target="app-error-codes"/>).</t>
  <t hangText='Reason Phrase Length:'>
  A variable-length integer specifying the length of the reason phrase in bytes.
Note that a CONNECTION_CLOSE frame cannot be split between packets, so in
practice any limits on packet size will also limit the space available for a
reason phrase.</t>
  <t hangText='Reason Phrase:'>
  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"/>.</t>
</list></t>

</section>
<section anchor="frame-application-close" title="APPLICATION_CLOSE frame">

<t>An APPLICATION_CLOSE frame (type=0x03) uses the same format as the
CONNECTION_CLOSE frame (<xref target="frame-connection-close"/>), except that it uses error
codes from the application protocol error code space (<xref target="app-error-codes"/>)
instead of the transport error code space.</t>

<t>Other than the error code space, the format and semantics of the
APPLICATION_CLOSE frame are identical to the CONNECTION_CLOSE frame.</t>

</section>
<section anchor="frame-max-data" title="MAX_DATA Frame">

<t>The MAX_DATA frame (type=0x04) 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 frame is as follows:</t>

<figure><artwork><![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>The fields in the MAX_DATA frame are as follows:</t>

<t><list style="hanging">
  <t hangText='Maximum Data:'>
  A variable-length integer indicating the maximum amount of data that can be
sent on the entire connection, in units of octets.</t>
</list></t>

<t>All data sent in STREAM frames counts toward this limit, with the exception of
data on stream 0.  The sum of the largest received offsets on all streams -
including streams in terminal states, but excluding stream 0 - MUST NOT exceed
the value advertised by a receiver.  An endpoint MUST terminate a connection
with a QUIC_FLOW_CONTROL_RECEIVED_TOO_MUCH_DATA 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"/>).</t>

</section>
<section anchor="frame-max-stream-data" title="MAX_STREAM_DATA Frame">

<t>The MAX_STREAM_DATA frame (type=0x05) is used in flow control to inform a peer
of the maximum amount of data that can be sent on a stream.</t>

<t>The frame is as follows:</t>

<figure><artwork><![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>The fields in the MAX_STREAM_DATA frame are as follows:</t>

<t><list style="hanging">
  <t hangText='Stream ID:'>
  The stream ID of the stream that is affected encoded as a variable-length
integer.</t>
  <t hangText='Maximum Stream Data:'>
  A variable-length integer indicating the maximum amount of data that can be
sent on the identified stream, in units of octets.</t>
</list></t>

<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"/>).</t>

</section>
<section anchor="frame-max-stream-id" title="MAX_STREAM_ID Frame">

<t>The MAX_STREAM_ID frame (type=0x06) informs the peer of the maximum stream ID
that they are permitted to open.</t>

<t>The frame is as follows:</t>

<figure><artwork><![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 Stream ID (i)                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The fields in the MAX_STREAM_ID frame are as follows:</t>

<t><list style="hanging">
  <t hangText='Maximum Stream ID:'>
  ID of the maximum unidirectional or bidirectional peer-initiated stream ID for
the connection encoded as a variable-length integer. The limit applies to
unidirectional steams if the second least signification bit of the stream ID
is 1, and applies to bidirectional streams if it is 0.</t>
</list></t>

<t>Loss or reordering can mean that a MAX_STREAM_ID frame can be received which
states a lower stream limit than the client has previously received.
MAX_STREAM_ID frames which do not increase the maximum stream ID MUST be
ignored.</t>

<t>A peer MUST NOT initiate a stream with a higher stream ID than the greatest
maximum stream ID it has received.  An endpoint MUST terminate a connection with
a STREAM_ID_ERROR error if a peer initiates a stream with a higher stream ID
than it has sent, unless this is a result of a change in the initial limits (see
<xref target="zerortt-parameters"/>).</t>

</section>
<section anchor="frame-ping" title="PING Frame">

<t>Endpoints can use PING frames (type=0x07) to verify that their peers are still
alive or to check reachability to the peer.</t>

<t>The PING frame contains a variable-length payload.</t>

<figure><artwork><![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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|   Length(8)   |                 Data (*)                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t><list style="hanging">
  <t hangText='Length:'>
  This 8-bit value describes the length of the Data field.</t>
  <t hangText='Data:'>
  This variable-length field contains arbitrary data.</t>
</list></t>

<t>A PING frame with an empty Data field causes the packet containing it to be
acknowledged as normal.  No other action is required of the recipient.</t>

<t>An empty 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>If the Data field is not empty, the recipient of this frame MUST generate a PONG
frame (<xref target="frame-pong"/>) containing the same Data.  A PING frame with data is not
appropriate for use in keeping a connection alive, because the PONG frame
elicits an acknowledgement, causing the sender of the original PING to send two
packets.</t>

<t>A connection will time out if no packets are sent or received for a period
longer than the time specified in the idle_timeout transport parameter (see
<xref target="termination"/>).  However, state in middleboxes might time out earlier than
that.  Though REQ-5 in <xref target="RFC4787"/> 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-blocked" title="BLOCKED Frame">

<t>A sender SHOULD send a BLOCKED frame (type=0x08) when it wishes to send data,
but is unable to due to connection-level flow control (see <xref target="blocking"/>).
BLOCKED frames can be used as input to tuning of flow control algorithms (see
<xref target="fc-credit"/>).</t>

<t>The BLOCKED frame is as follows:</t>

<figure><artwork><![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)                         ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The BLOCKED frame contains a single field.</t>

<t><list style="hanging">
  <t hangText='Offset:'>
  A variable-length integer indicating the connection-level offset at which
the blocking occurred.</t>
</list></t>

</section>
<section anchor="frame-stream-blocked" title="STREAM_BLOCKED Frame">

<t>A sender SHOULD send a STREAM_BLOCKED frame (type=0x09) when it wishes to send
data, but is unable to due to stream-level flow control.  This frame is
analogous to BLOCKED (<xref target="frame-blocked"/>).</t>

<t>The STREAM_BLOCKED frame is as follows:</t>

<figure><artwork><![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)                          ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The STREAM_BLOCKED frame contains two fields:</t>

<t><list style="hanging">
  <t hangText='Stream ID:'>
  A variable-length integer indicating the stream which is flow control blocked.</t>
  <t hangText='Offset:'>
  A variable-length integer indicating the offset of the stream at which the
blocking occurred.</t>
</list></t>

</section>
<section anchor="frame-stream-id-blocked" title="STREAM_ID_BLOCKED Frame">

<t>A sender MAY send a STREAM_ID_BLOCKED frame (type=0x0a) when it wishes to open a
stream, but is unable to due to the maximum stream ID limit set by its peer (see
<xref target="frame-max-stream-id"/>).  This does not open the stream, but informs the peer
that a new stream was needed, but the stream limit prevented the creation of the
stream.</t>

<t>The STREAM_ID_BLOCKED frame is as follows:</t>

<figure><artwork><![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)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The STREAM_ID_BLOCKED frame contains a single field.</t>

<t><list style="hanging">
  <t hangText='Stream ID:'>
  A variable-length integer indicating the highest stream ID that the sender
was permitted to open.</t>
</list></t>

</section>
<section anchor="frame-new-connection-id" title="NEW_CONNECTION_ID Frame">

<t>A server sends a NEW_CONNECTION_ID frame (type=0x0b) to provide the client with
alternative connection IDs that can be used to break linkability when migrating
connections (see <xref target="migration-linkability"/>).</t>

<t>The NEW_CONNECTION_ID is as follows:</t>

<figure><artwork><![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 (i)                       ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                        Connection ID (64)                     +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                                                               +
|                                                               |
+                   Stateless Reset Token (128)                 +
|                                                               |
+                                                               +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The fields are:</t>

<t><list style="hanging">
  <t hangText='Sequence:'>
  A variable-length integer.  This value starts at 0 and increases by 1 for each
connection ID that is provided by the server.  The connection ID that is
assigned during the handshake is assumed to have a sequence of -1.  That is,
the value selected during the handshake comes immediately before the first
value that a server can send.</t>
  <t hangText='Connection ID:'>
  A 64-bit connection ID.</t>
  <t hangText='Stateless Reset Token:'>
  A 128-bit value that will be used to for a stateless reset when the associated
connection ID is used (see <xref target="stateless-reset"/>).</t>
</list></t>

</section>
<section anchor="frame-stop-sending" title="STOP_SENDING Frame">

<t>An endpoint may use a STOP_SENDING frame (type=0x0c) to communicate that
incoming data is being discarded on receipt at application request.  This
signals a peer to abruptly terminate transmission on a stream.</t>

<t>The STOP_SENDING frame is as follows:</t>

<figure><artwork><![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 (16)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The fields are:</t>

<t><list style="hanging">
  <t hangText='Stream ID:'>
  A variable-length integer carrying the Stream ID of the stream being ignored.</t>
  <t hangText='Application Error Code:'>
  A 16-bit, application-specified reason the sender is ignoring the stream (see
<xref target="app-error-codes"/>).</t>
</list></t>

</section>
<section anchor="frame-pong" title="PONG Frame">

<t>The PONG frame (type=0x0d) is sent in response to a PING frame that contains
data.  Its format is identical to the PING frame (<xref target="frame-ping"/>).</t>

<t>An endpoint that receives an unsolicited PONG frame - that is, a PONG frame
containing a payload that is empty MUST generate a connection error of type
FRAME_ERROR, indicating the PONG frame (that is, 0x10d).  If the content of a
PONG frame does not match the content of a PING frame previously sent by the
endpoint, the endpoint MAY generate a connection error of type UNSOLICITED_PONG.</t>

</section>
<section anchor="frame-ack" title="ACK Frame">

<t>Receivers send ACK frames (type=0xe) to inform senders which packets they have
received and processed.  A sent packet that has never been acknowledged is
missing. The ACK frame contains any number of ACK blocks.  ACK blocks are
ranges of acknowledged packets.</t>

<t>Unlike TCP SACKs, QUIC acknowledgements are irrevocable.  Once a packet has
been acknowledged, even if it does not appear in a future ACK frame,
it remains acknowledged.</t>

<t>A client MUST NOT acknowledge Version Negotiation or Retry packets.  These
packet types contain packet numbers selected by the client, not the server.</t>

<t>A sender MAY intentionally skip packet numbers to introduce entropy into the
connection, to avoid opportunistic acknowledgement attacks.  The sender SHOULD
close the connection if an unsent packet number is acknowledged.  The format of
the ACK frame is efficient at expressing even long blocks of missing packets,
allowing for large, unpredictable gaps.</t>

<t>An ACK frame is shown below.</t>

<figure title="ACK Frame Format" anchor="ack-format"><artwork><![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 Block Count (i)                   ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          ACK Blocks (*)                     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The fields in the ACK frame are as follows:</t>

<t><list style="hanging">
  <t hangText='Largest Acknowledged:'>
  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.</t>
  <t hangText='ACK Delay:'>
  A variable-length integer including the time in microseconds that the largest
acknowledged packet, as indicated in the Largest Acknowledged field, was
received by this peer to when this ACK was sent.  The value of the ACK Delay
field is scaled by multiplying the encoded value by the 2 to the power of the
value of the <spanx style="verb">ack_delay_exponent</spanx> transport parameter set by the sender of the
ACK frame.  The <spanx style="verb">ack_delay_exponent</spanx> defaults to 3, or a multiplier of 8 (see
<xref target="transport-parameter-definitions"/>).  Scaling in this fashion allows for a
larger range of values with a shorter encoding at the cost of lower
resolution.</t>
  <t hangText='ACK Block Count:'>
  The number of Additional ACK Block (and Gap) fields after the First ACK Block.</t>
  <t hangText='ACK Blocks:'>
  Contains one or more blocks of packet numbers which have been successfully
received, see <xref target="ack-block-section"/>.</t>
</list></t>

<section anchor="ack-block-section" title="ACK Block Section">

<t>The ACK Block Section consists of alternating Gap and ACK Block fields in
descending packet number order.  A First Ack Block field is followed by a
variable number of alternating Gap and Additional ACK Blocks.  The number of Gap
and Additional ACK Block fields is determined by the ACK Block Count field.</t>

<t>Gap and ACK Block fields use a relative integer encoding for efficiency.  Though
each encoded value is positive, the values are subtracted, so that each ACK
Block describes progressively lower-numbered packets.  As long as contiguous
ranges of packets are small, the variable-length integer encoding ensures that
each range can be expressed in a small number of octets.</t>

<figure title="ACK Block Section" anchor="ack-block-format"><artwork><![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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                      First ACK Block (i)                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                             Gap (i)                         ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    Additional ACK Block (i)                 ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                             Gap (i)                         ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    Additional ACK Block (i)                 ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
                               ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                             Gap (i)                         ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    Additional ACK Block (i)                 ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>Each ACK Block acknowledges a contiguous range of packets by indicating the
number of acknowledged packets that precede the largest packet number in that
block.  A value of zero indicates that only the largest packet number is
acknowledged.  Larger ACK Block 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 ACK, the smallest value is determined by
the formula:</t>

<figure><artwork><![CDATA[
   smallest = largest - ack_block
]]></artwork></figure>

<t>The range of packets that are acknowledged by the ACK block include the range
from the smallest packet number to the largest, inclusive.</t>

<t>The largest value for the First ACK Block is determined by the Largest
Acknowledged field; the largest for Additional ACK Blocks is determined by
cumulatively subtracting the size of all preceding ACK Blocks 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
ACK block that follows the gap using the following formula:</t>

<figure><artwork><![CDATA[
  largest = previous_smallest - gap - 2
]]></artwork></figure>

<t>If the calculated value for largest or smallest packet number for any ACK Block
is negative, an endpoint MUST generate a connection error of type FRAME_ERROR
indicating an error in an ACK frame (that is, 0x10d).</t>

<t>The fields in the ACK Block Section are:</t>

<t><list style="hanging">
  <t hangText='First ACK Block:'>
  A variable-length integer indicating the number of contiguous packets
preceding the Largest Acknowledged that are being acknowledged.</t>
  <t hangText='Gap (repeated):'>
  A variable-length integer indicating the number of contiguous unacknowledged
packets preceding the packet number one lower than the smallest in the
preceding ACK Block.</t>
  <t hangText='ACK Block (repeated):'>
  A variable-length integer indicating the number of contiguous acknowledged
packets preceding the largest packet number, as determined by the
preceding Gap.</t>
</list></t>

</section>
<section anchor="sending-ack-frames" title="Sending ACK Frames">

<t>Implementations MUST NOT generate packets that only contain ACK frames in
response to packets which only contain ACK frames. However, they MUST
acknowledge packets containing only ACK frames when sending ACK frames in
response to other packets.  Implementations MUST NOT send more than one ACK
frame per received packet that contains frames other than ACK frames.  Packets
containing non-ACK frames MUST be acknowledged immediately or when a delayed
ack timer expires.</t>

<t>To limit ACK blocks to those that have not yet been received by the sender, the
receiver SHOULD track which ACK frames have been acknowledged by its peer.  Once
an ACK frame has been acknowledged, the packets it acknowledges SHOULD NOT be
acknowledged again.</t>

<t>A receiver that is only sending ACK frames will not receive acknowledgments for
its packets.  Sending an occasional MAX_DATA or MAX_STREAM_DATA frame as data is
received will ensure that acknowledgements are generated by a peer.  Otherwise,
an endpoint MAY send a PING frame once per RTT to solicit an acknowledgment.</t>

<t>To limit receiver state or the size of ACK frames, a receiver MAY limit the
number of ACK blocks 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 <xref target="QUIC-RECOVERY"/>
algorithms 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="ack-frames-and-packet-protection" title="ACK Frames and Packet Protection">

<t>ACK frames that acknowledge protected packets MUST be carried in a packet that
has an equivalent or greater level of packet protection.</t>

<t>Packets that are protected with 1-RTT keys MUST be acknowledged in packets that
are also protected with 1-RTT keys.</t>

<t>A packet that is not protected and claims to acknowledge a packet number that
was sent with packet protection is not valid.  An unprotected packet that
carries acknowledgments for protected packets MUST be discarded in its entirety.</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>

<t>Unprotected packets, such as those that carry the initial cryptographic
handshake messages, MAY be acknowledged in unprotected packets.  Unprotected
packets are vulnerable to falsification or modification.  Unprotected packets
can be acknowledged along with protected packets in a protected packet.</t>

<t>An endpoint SHOULD acknowledge packets containing cryptographic handshake
messages in the next unprotected packet that it sends, unless it is able to
acknowledge those packets in later packets protected by 1-RTT keys.  At the
completion of the cryptographic handshake, both peers send unprotected packets
containing cryptographic handshake messages followed by packets protected by
1-RTT keys. An endpoint SHOULD acknowledge the unprotected packets that complete
the cryptographic handshake in a protected packet, because its peer is
guaranteed to have access to 1-RTT packet protection keys.</t>

<t>For instance, a server acknowledges a TLS ClientHello in the packet that carries
the TLS ServerHello; similarly, a client can acknowledge a TLS HelloRetryRequest
in the packet containing a second TLS ClientHello.  The complete set of server
handshake messages (TLS ServerHello through to Finished) might be acknowledged
by a client in protected packets, because it is certain that the server is able
to decipher the packet.</t>

</section>
</section>
<section anchor="frame-stream" title="STREAM Frames">

<t>STREAM frames implicitly create a stream and carry stream data.  The STREAM
frame takes the form 0b00010XXX (or the set of values from 0x10 to 0x17).  The
value of the three low-order bits of the frame type determine the fields that
are present in the frame.</t>

<t><list style="symbols">
  <t>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 octets of the stream, or the end of a
stream that includes no data).</t>
  <t>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.</t>
  <t>The FIN bit (0x01) of the frame type is set only on frames that contain the
final offset of the stream.  Setting this bit indicates that the frame
marks the end of the stream.</t>
</list></t>

<t>A STREAM frame is shown below.</t>

<figure title="STREAM Frame Format" anchor="stream-format"><artwork><![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>The STREAM frame contains the following fields:</t>

<t><list style="hanging">
  <t hangText='Stream ID:'>
  A variable-length integer indicating the stream ID of the stream (see
<xref target="stream-id"/>).</t>
  <t hangText='Offset:'>
  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.</t>
  <t hangText='Length:'>
  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
octets in the packet.</t>
  <t hangText='Stream Data:'>
  The bytes from the designated stream to be delivered.</t>
</list></t>

<t>A stream frame’s Stream Data MUST NOT be empty, unless the FIN bit is set.  When
the FIN flag is sent on an empty STREAM frame, 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 re-constructed offset and data length - MUST be
less than 2^62.</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>Implementation note: 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.  An implementation is therefore
advised to bundle as few streams as necessary in outgoing packets without losing
transmission efficiency to underfilled packets.</t>

</section>
</section>
<section anchor="packetization" title="Packetization and Reliability">

<t>A sender bundles one or more frames in a Regular QUIC packet (see <xref target="frames"/>).</t>

<t>A sender SHOULD 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 heuristics about expected application sending behavior 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>Regular QUIC packets are “containers” of frames; a packet is never retransmitted
whole.  How an endpoint handles the loss of the frame depends on the type of the
frame.  Some frames are simply retransmitted, some have their contents moved to
new frames, and others are never retransmitted.</t>

<t>When a packet is detected as lost, the sender re-sends any frames as necessary:</t>

<t><list style="symbols">
  <t>All application data sent in STREAM frames MUST be retransmitted, unless the
endpoint has sent a RST_STREAM for that stream.  When an endpoint sends a
RST_STREAM frame, data outstanding on that stream SHOULD NOT be retransmitted,
since subsequent data on this stream is expected to not be delivered by the
receiver.</t>
  <t>ACK and PADDING frames MUST NOT be retransmitted.  ACK frames
containing updated information will be sent as described in <xref target="frame-ack"/>.</t>
  <t>STOP_SENDING frames MUST be retransmitted until the receive stream enters
either a “Data Recvd” or “Reset Recvd” state.  See
<xref target="solicited-state-transitions"/>.</t>
  <t>The most recent MAX_STREAM_DATA frame for a stream MUST be retransmitted until
the receive stream enters a “Size Known” state. Any previous unacknowledged
MAX_STREAM_DATA frame for the same stream SHOULD NOT be retransmitted since a
newer MAX_STREAM_DATA frame for a stream obviates the need for delivering
older ones. Similarly, the most recent MAX_DATA frame MUST be retransmitted;
previous unacknowledged ones SHOULD NOT be retransmitted.</t>
  <t>BLOCKED, STREAM_BLOCKED, and STREAM_ID_BLOCKED frames SHOULD be retransmitted
if the sender is still blocked on the same limit.  If the limit has been
increased since the frame was originally sent, the frame SHOULD NOT be
retransmitted.</t>
  <t>All other frames MUST be retransmitted.</t>
</list></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"/>.</t>

<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 queued (but not necessarily delivered to
the application).  This also means that any stream state transitions triggered
by STREAM or RST_STREAM frames have occurred. 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>

<t>To avoid creating an indefinite feedback loop, an endpoint MUST NOT send an
ACK frame in response to a packet containing only ACK or PADDING frames, even
if there are packet gaps which precede the received packet.  The endpoint MUST
acknowledge packets containing only ACK or PADDING frames in the next ACK frame
that it sends.</t>

<t>Strategies and implications of the frequency of generating acknowledgments are
discussed in more detail in <xref target="QUIC-RECOVERY"/>.</t>

<section anchor="packet-size" title="Packet Size">

<t>The QUIC packet size includes the QUIC header and integrity check, but not the
UDP or IP header.</t>

<t>Clients MUST pad any Initial packet it sends to have a QUIC packet size of at
least 1200 octets. Sending an Initial packet of this size ensures that the
network path supports a reasonably sized packet, and helps reduce the amplitude
of amplification attacks caused by server responses toward an unverified client
address.</t>

<t>An Initial packet MAY exceed 1200 octets if the client knows that the Path
Maximum Transmission Unit (PMTU) supports the size that it chooses.</t>

<t>A server MAY send a CONNECTION_CLOSE frame with error code PROTOCOL_VIOLATION in
response to an Initial packet smaller than 1200 octets. It MUST NOT send any
other frame type in response, or otherwise behave as if any part of the
offending packet was processed as valid.</t>

</section>
<section anchor="path-maximum-transmission-unit" title="Path Maximum Transmission Unit">

<t>The Path Maximum Transmission Unit (PMTU) is the maximum size of the entire IP
header, UDP header, and UDP payload. The UDP payload includes the QUIC packet
header, protected payload, and any authentication fields.</t>

<t>All QUIC packets SHOULD be sized to fit within the estimated PMTU to avoid IP
fragmentation or packet drops. To optimize bandwidth efficiency, endpoints
SHOULD use Packetization Layer PMTU Discovery (<xref target="PLPMTUD"/>).  Endpoints
MAY use PMTU Discovery (<xref target="PMTUDv4"/>, <xref target="PMTUDv6"/>) for
detecting the PMTU, setting the PMTU appropriately, and storing the result of
previous PMTU determinations.</t>

<t>In the absence of these mechanisms, QUIC endpoints SHOULD NOT send IP packets
larger than 1280 octets. Assuming the minimum IP header size, this results in
a QUIC packet size of 1232 octets for IPv6 and 1252 octets for IPv4. Some
QUIC implementations MAY wish to be more conservative in computing allowed
QUIC packet size given unknown tunneling overheads or IP header options.</t>

<t>QUIC endpoints that implement any kind of PMTU discovery SHOULD maintain an
estimate for each combination of local and remote IP addresses.  Each pairing of
local and remote addresses could have a different maximum MTU in the path.</t>

<t>QUIC depends on the network path supporting a MTU of at least 1280 octets. This
is the IPv6 minimum MTU and therefore also supported by most modern IPv4
networks.  An endpoint MUST NOT reduce its MTU below this number, even if it
receives signals that indicate a smaller limit might exist.</t>

<t>If a QUIC endpoint determines that the PMTU between any pair of local and remote
IP addresses has fallen below 1280 octets, it MUST immediately cease sending
QUIC packets on the affected path.  This could result in termination of the
connection if an alternative path cannot be found.</t>

<section anchor="special-considerations-for-pmtu-discovery" title="Special Considerations for PMTU Discovery">

<t>Traditional ICMP-based path MTU discovery in IPv4 <xref target="RFC1191"/> is potentially
vulnerable to off-path attacks that successfully guess the IP/port 4-tuple and
reduce the MTU to a bandwidth-inefficient value. TCP connections mitigate this
risk by using the (at minimum) 8 bytes of transport header echoed in the ICMP
message to validate the TCP sequence number as valid for the current
connection. However, as QUIC operates over UDP, in IPv4 the echoed information
could consist only of the IP and UDP headers, which usually has insufficient
entropy to mitigate off-path attacks.</t>

<t>As a result, endpoints that implement PMTUD in IPv4 SHOULD take steps to
mitigate this risk. For instance, an application could:</t>

<t><list style="symbols">
  <t>Set the IPv4 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.</t>
  <t>Store additional information from the IP or UDP headers from DF packets (for
example, the IP ID or UDP checksum) to further authenticate incoming Datagram
Too Big messages.</t>
  <t>Any reduction in PMTU due to a report contained in an ICMP packet is
provisional until QUIC’s loss detection algorithm determines that the packet is
actually lost.</t>
</list></t>

</section>
<section anchor="special-considerations-for-packetization-layer-pmtu-discovery" title="Special Considerations for Packetization Layer PMTU Discovery">

<t>The PADDING frame provides a useful option for PMTU probe packets that does not
exist in other transports. PADDING frames generate acknowledgements, but their
content need not be delivered reliably. PADDING frames may delay the delivery of
application data, as they consume the congestion window. However, by definition
their likely loss in a probe packet does not require delay-inducing
retransmission of application data.</t>

<t>When implementing the algorithm in Section 7.2 of <xref target="RFC4821"/>, the initial
value of search_low SHOULD be consistent with the IPv6 minimum packet size.
Paths that do not support this size cannot deliver Initial packets, and
therefore are not QUIC-compliant.</t>

<t>Section 7.3 of <xref target="RFC4821"/> discusses tradeoffs between small and large
increases in the size of probe packets. As QUIC probe packets need not contain
application data, aggressive increases in probe size carry fewer consequences.</t>

</section>
</section>
</section>
<section anchor="streams" title="Streams: QUIC’s Data Structuring Abstraction">

<t>Streams in QUIC provide a lightweight, ordered byte-stream abstraction.</t>

<t>There are two basic types of stream in QUIC.  Unidirectional streams carry data
in one direction only; bidirectional streams allow for data to be sent in both
directions.  Different stream identifiers are used to distinguish between
unidirectional and bidirectional streams, as well as to create a separation
between streams that are initiated by the client and server (see <xref target="stream-id"/>).</t>

<t>Either type of stream can be created by either endpoint, can concurrently send
data interleaved with other streams, and can be cancelled.</t>

<t>Data that is received on a stream is delivered in order within that stream, but
there is no particular delivery order across streams.  Transmit ordering among
streams is left to the implementation.</t>

<t>The creation and destruction of streams are expected to have minimal bandwidth
and computational cost.  A single STREAM frame may create, carry data for, and
terminate a stream, or a stream may last the entire duration of a connection.</t>

<t>Streams are individually flow controlled, allowing an endpoint to limit memory
commitment and to apply back pressure.  The creation of streams is also flow
controlled, with each peer declaring the maximum stream ID it is willing to
accept at a given time.</t>

<t>An alternative view of QUIC streams is as an elastic “message” abstraction,
similar to the way ephemeral streams are used in SST
<xref target="SST"/>, which may be a more appealing description
for some applications.</t>

<section anchor="stream-id" title="Stream Identifiers">

<t>Streams are identified by an unsigned 62-bit integer, referred to as the Stream
ID.  The least significant two bits of the Stream ID are used to identify the
type of stream (unidirectional or bidirectional) and the initiator of the
stream.</t>

<t>The least significant bit (0x1) of the Stream ID identifies the initiator of the
stream.  Clients initiate even-numbered streams (those with the least
significant bit set to 0); servers initiate odd-numbered streams (with the bit
set to 1).  Separation of the stream identifiers ensures that client and server
are able to open streams without the latency imposed by negotiating for an
identifier.</t>

<t>If an endpoint receives a frame for a stream that it expects to initiate (i.e.,
odd-numbered for the client or even-numbered for the server), but which it has
not yet opened, it MUST close the connection with error code STREAM_STATE_ERROR.</t>

<t>The second least significant bit (0x2) of the Stream ID differentiates between
unidirectional streams and bidirectional streams. Unidirectional streams always
have this bit set to 1 and bidirectional streams have this bit set to 0.</t>

<t>The two type bits from a Stream ID therefore identify streams as summarized in
<xref target="stream-id-types"/>.</t>

<texttable title="Stream ID Types" anchor="stream-id-types">
      <ttcol align='left'>Low Bits</ttcol>
      <ttcol align='left'>Stream Type</ttcol>
      <c>0x0</c>
      <c>Client-Initiated, Bidirectional</c>
      <c>0x1</c>
      <c>Server-Initiated, Bidirectional</c>
      <c>0x2</c>
      <c>Client-Initiated, Unidirectional</c>
      <c>0x3</c>
      <c>Server-Initiated, Unidirectional</c>
</texttable>

<t>Stream ID 0 (0x0) is a client-initiated, bidirectional stream that is used for
the cryptographic handshake.  Stream 0 MUST NOT be used for application data.</t>

<t>A QUIC endpoint MUST NOT reuse a Stream ID.  Open streams can be used in any
order.  Streams that are used out of order result in opening all lower-numbered
streams of the same type in the same direction.</t>

<t>Stream IDs are encoded as a variable-length integer (see <xref target="integer-encoding"/>).</t>

</section>
<section anchor="stream-states" title="Stream States">

<t>This section describes the two types of QUIC stream in terms of the states of
their send or receive components.  Two state machines are described: one for
streams on which an endpoint transmits data (<xref target="stream-send-states"/>); another
for streams from which an endpoint receives data (<xref target="stream-recv-states"/>).</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 causes the stream to open
in both directions.</t>

<t>Opening a stream causes all lower-numbered streams of the same type to
implicitly open.  This includes both send and receive streams if the stream is
bidirectional.  For bidirectional streams, an endpoint can send data on an
implicitly opened stream.  On both unidirectional and bidirectional streams, an
endpoint MAY send MAX_STREAM_DATA or STOP_SENDING on implicitly opened streams.
An endpoint SHOULD NOT implicitly open streams that it initiates, instead
opening streams in order.</t>

<t><list style="hanging">
  <t hangText='Note:'>
  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.</t>
</list></t>

<section anchor="stream-send-states" title="Send Stream States">

<t><xref target="fig-stream-send-states"/> shows the states for the part of a stream that sends
data to a peer.</t>

<figure title="States for Send Streams" anchor="fig-stream-send-states"><artwork><![CDATA[
       o
       | Application Open
       | Open Paired Stream (bidirectional)
       v
   +-------+
   | Open  | Send RST_STREAM
   |       |-----------------------.
   +-------+                       |
       |                           |
       | Send STREAM /             |
       |      STREAM_BLOCKED       |
       v                           |
   +-------+                       |
   | Send  | Send RST_STREAM       |
   |       |---------------------->|
   +-------+                       |
       |                           |
       | Send STREAM + FIN         |
       v                           v
   +-------+                   +-------+
   | Data  | Send RST_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 or application
protocol.  The “Open” 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>The sending part of a bidirectional stream initiated by a peer (type 0 for a
server, type 1 for a client) enters the “Open” state if the receiving part
enters the “Recv” state.</t>

<t>Sending the first STREAM or STREAM_BLOCKED frame causes a send stream to enter
the “Send” state.  An implementation might choose to defer allocating a Stream
ID to a send stream until it sends the first frame and enters this state, which
can allow for better stream prioritization.</t>

<t>In the “Send” state, an endpoint transmits - and retransmits as necessary - data
in STREAM frames.  The endpoint respects the flow control limits of its peer,
accepting MAX_STREAM_DATA frames.  An endpoint in the “Send” state generates
STREAM_BLOCKED frames if it encounters flow control limits.</t>

<t>After the application indicates that stream data is complete and a STREAM frame
containing the FIN bit is sent, the send stream enters the “Data Sent” state.
From this state, the endpoint only retransmits stream data as necessary.  The
endpoint no longer needs to track flow control limits or send STREAM_BLOCKED
frames for a send stream in this state.  The endpoint can ignore any
MAX_STREAM_DATA frames it receives from its peer in this state; MAX_STREAM_DATA
frames might be received until the peer receives the final stream offset.</t>

<t>Once all stream data has been successfully acknowledged, the send stream enters
the “Data Recvd” state, which is a terminal state.</t>

<t>From any of the “Open”, “Send”, or “Data Sent” states, an application can signal
that it wishes to abandon transmission of stream data.  Similarly, the endpoint
might receive a STOP_SENDING frame from its peer.  In either case, the endpoint
sends a RST_STREAM frame, which causes the stream to enter the “Reset Sent”
state.</t>

<t>An endpoint MAY send a RST_STREAM as the first frame on a send stream; this
causes the send stream to open and then immediately transition to the “Reset
Sent” state.</t>

<t>Once a packet containing a RST_STREAM has been acknowledged, the send stream
enters the “Reset Recvd” state, which is a terminal state.</t>

</section>
<section anchor="stream-recv-states" title="Receive Stream States">

<t><xref target="fig-stream-recv-states"/> shows the states for the part of a stream that
receives data from a peer.  The states for a receive stream mirror only some of
the states of the send stream at the peer.  A receive stream doesn’t track
states on the send stream that cannot be observed, such as the “Open” state;
instead, receive streams track the delivery of data to the application or
application protocol some of which cannot be observed by the sender.</t>

<figure title="States for Receive Streams" anchor="fig-stream-recv-states"><artwork><![CDATA[
       o
       | Recv STREAM / STREAM_BLOCKED / RST_STREAM
       | Open Paired Stream (bidirectional)
       | Recv MAX_STREAM_DATA
       v
   +-------+
   | Recv  | Recv RST_STREAM
   |       |-----------------------.
   +-------+                       |
       |                           |
       | Recv STREAM + FIN         |
       v                           |
   +-------+                       |
   | Size  | Recv RST_STREAM       |
   | Known +---------------------->|
   +-------+                       |
       |                           |
       | Recv All Data             |
       v                           v
   +-------+                   +-------+
   | Data  | Recv RST_STREAM   | Reset |
   | Recvd +<-- (optional) --->| Recvd |
   +-------+                   +-------+
       |                           |
       | 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) are created when the first STREAM, STREAM_BLOCKED,
RST_STREAM, or MAX_STREAM_DATA (bidirectional only, see below) is received for
that stream.  The initial state for a receive stream is “Recv”.  Receiving a
RST_STREAM frame causes the receive stream to immediately transition to the
“Reset Recvd”.</t>

<t>The receive 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 “Open” state.</t>

<t>A bidirectional stream also opens when a MAX_STREAM_DATA frame is received.
Receiving a MAX_STREAM_DATA frame implies that the remote peer has opened the
stream and is providing flow control credit.  A MAX_STREAM_DATA frame might
arrive before a STREAM or STREAM_BLOCKED frame if packets are lost or reordered.</t>

<t>In the “Recv” state, the endpoint receives STREAM and STREAM_BLOCKED frames.
Incoming data is buffered and 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 offset (see
<xref target="final-offset"/>) is known.  The receive stream 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 receive stream enters the
“Data Recvd” state.  This might happen as a result of receiving the same STREAM
frame that causes the transition to “Size Known”.  In this state, the endpoint
has all stream data.  Any STREAM or STREAM_BLOCKED frames it receives for the
stream can be discarded.</t>

<t>The “Data Recvd” state persists until stream data has been delivered to the
application or application protocol.  Once stream data has been delivered, the
stream enters the “Data Read” state, which is a terminal state.</t>

<t>Receiving a RST_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 RST_STREAM is received
(that is, from the “Data Recvd” state).  Similarly, it is possible for remaining
stream data to arrive after receiving a RST_STREAM frame (the “Reset Recvd”
state).  An implementation is able to manage this situation as they choose.
Sending RST_STREAM means that an endpoint cannot guarantee delivery of stream
data; however there is no requirement that stream data not be delivered if a
RST_STREAM is received.  An implementation MAY interrupt delivery of stream
data, discard any data that was not consumed, and signal the existence of the
RST_STREAM immediately.  Alternatively, the RST_STREAM signal might be
suppressed or withheld if stream data is completely received.  In the latter
case, the receive stream effectively transitions to “Data Recvd” from “Reset
Recvd”.</t>

<t>Once the application has been delivered the signal indicating that the receive
stream was reset, the receive stream transitions to the “Reset Read” state,
which is a terminal state.</t>

</section>
<section anchor="permitted-frame-types" title="Permitted Frame Types">

<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"/>), STREAM_BLOCKED
(<xref target="frame-stream-blocked"/>), and RST_STREAM (<xref target="frame-rst-stream"/>).</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_BLOCKED after
sending a RST_STREAM; that is, in the “Reset Sent” state in addition to the
terminal states.  A receiver could receive any of these frames in any state, but
only 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"/>) and
STOP_SENDING frames (<xref target="frame-stop-sending"/>).</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 RST_STREAM frame;
that is states other than “Reset Recvd” or “Reset Read”.  However there is
little value in sending a STOP_SENDING frame after all stream data has been
received in the “Data Recvd” state.  A sender could receive these frames in any
state as a result of delayed delivery of packets.</t>

</section>
<section anchor="stream-bidi-states" title="Bidirectional Stream States">

<t>A bidirectional stream is composed of a send stream and a receive stream.
Implementations may represent states of the bidirectional stream as composites
of send and receive stream states.  The simplest model presents the stream as
“open” when either send or receive stream is in a non-terminal state and
“closed” when both send and receive streams are in a terminal state.</t>

<t><xref target="stream-bidi-mapping"/> shows a more complex mapping of bidirectional stream
states that loosely correspond to the stream states in HTTP/2
<xref target="HTTP2"/>.  This shows that multiple states on send or receive 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>

<texttable title="Possible Mapping of Stream States to HTTP/2" anchor="stream-bidi-mapping">
      <ttcol align='left'>Send Stream</ttcol>
      <ttcol align='left'>Receive Stream</ttcol>
      <ttcol align='left'>Composite State</ttcol>
      <c>No Stream/Open</c>
      <c>No Stream/Recv *1</c>
      <c>idle</c>
      <c>Open/Send/Data Sent</c>
      <c>Recv/Size Known</c>
      <c>open</c>
      <c>Open/Send/Data Sent</c>
      <c>Data Recvd/Data Read</c>
      <c>half-closed (remote)</c>
      <c>Open/Send/Data Sent</c>
      <c>Reset Recvd/Reset Read</c>
      <c>half-closed (remote)</c>
      <c>Data Recvd</c>
      <c>Recv/Size Known</c>
      <c>half-closed (local)</c>
      <c>Reset Sent/Reset Recvd</c>
      <c>Recv/Size Known</c>
      <c>half-closed (local)</c>
      <c>Data Recvd</c>
      <c>Recv/Size Known</c>
      <c>half-closed (local)</c>
      <c>Reset Sent/Reset Recvd</c>
      <c>Data Recvd/Data Read</c>
      <c>closed</c>
      <c>Reset Sent/Reset Recvd</c>
      <c>Reset Recvd/Reset Read</c>
      <c>closed</c>
      <c>Data Recvd</c>
      <c>Data Recvd/Data Read</c>
      <c>closed</c>
      <c>Data Recvd</c>
      <c>Reset Recvd/Reset Read</c>
      <c>closed</c>
</texttable>

<t><list style="hanging">
  <t hangText='Note (*1):'>
  A stream is considered “idle” if it has not yet been created, or if the
receive stream is in the “Recv” state without yet having received any frames.</t>
</list></t>

</section>
</section>
<section anchor="solicited-state-transitions" title="Solicited State Transitions">

<t>If an endpoint is no longer interested in the data it is receiving on a stream,
it MAY send a STOP_SENDING frame identifying that stream 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
is not a guarantee that incoming data will be ignored.</t>

<t>STREAM frames received after sending STOP_SENDING are still counted toward the
connection and stream flow-control windows, even though these frames will be
discarded upon receipt.  This avoids potential ambiguity about which STREAM
frames count toward flow control.</t>

<t>A STOP_SENDING frame requests that the receiving endpoint send a RST_STREAM
frame.  An endpoint that receives a STOP_SENDING frame MUST send a RST_STREAM
frame for that stream, and can use an error code of STOPPING.  If the
STOP_SENDING frame is received on a send stream that is already in the “Data
Sent” state, a RST_STREAM frame MAY still be sent in order to cancel
retransmission of previously-sent STREAM frames.</t>

<t>STOP_SENDING SHOULD only be sent for a receive stream that has not been
reset. 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 RST_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>

</section>
<section anchor="stream-concurrency" title="Stream Concurrency">

<t>An endpoint limits the number of concurrently active incoming streams by
adjusting the maximum stream ID.  An initial value is set in the transport
parameters (see <xref target="transport-parameter-definitions"/>) and is subsequently
increased by MAX_STREAM_ID frames (see <xref target="frame-max-stream-id"/>).</t>

<t>The maximum stream ID is specific to each endpoint and applies only to the peer
that receives the setting. That is, clients specify the maximum stream ID the
server can initiate, and servers specify the maximum stream ID the client can
initiate.  Each endpoint may respond on streams initiated by the other peer,
regardless of whether it is permitted to initiated new streams.</t>

<t>Endpoints MUST NOT exceed the limit set by their peer.  An endpoint that
receives a STREAM frame with an ID greater than the limit it has sent MUST treat
this as a stream error of type STREAM_ID_ERROR (<xref target="error-handling"/>), unless this
is a result of a change in the initial offsets (see <xref target="zerortt-parameters"/>).</t>

<t>A receiver MUST NOT renege on an advertisement; that is, once a receiver
advertises a stream ID via a MAX_STREAM_ID frame, it MUST NOT subsequently
advertise a smaller maximum ID.  A sender may receive MAX_STREAM_ID frames out
of order; a sender MUST therefore ignore any MAX_STREAM_ID that does not
increase the maximum.</t>

</section>
<section anchor="sending-and-receiving-data" title="Sending and Receiving Data">

<t>Once a stream is created, endpoints may use the stream to send and receive data.
Each endpoint may send a series of STREAM frames encapsulating data on a stream
until the stream is terminated in that direction.  Streams are an ordered
byte-stream abstraction, and they have no other structure within them.  STREAM
frame boundaries are not expected to be preserved in retransmissions from the
sender or during delivery to the application at the receiver.</t>

<t>When new data is to be sent on a stream, a sender MUST set the encapsulating
STREAM frame’s offset field to the stream offset of the first byte of this new
data.  The first byte of data that is sent on a stream has the stream offset 0.
The largest offset delivered on a stream MUST be less than 2^62. A receiver
MUST ensure that received stream data is delivered to the application as an
ordered byte-stream.  Data received out of order MUST be buffered for later
delivery, as long as it is not in violation of the receiver’s flow control
limits.</t>

<t>An endpoint MUST NOT send data on any stream without ensuring that it is within
the data limits set by its peer.  The cryptographic handshake stream, Stream 0,
is exempt from the connection-level data limits established by MAX_DATA. Data on
stream 0 other than the initial cryptographic handshake message is still subject
to stream-level data limits and MAX_STREAM_DATA. This message is exempt
from flow control because it needs to be sent in a single packet regardless of
the server’s flow control state. This rule applies even for 0-RTT handshakes
where the remembered value of MAX_STREAM_DATA would not permit sending a full
initial cryptographic handshake message.</t>

<t>Flow control is described in detail in <xref target="flow-control"/>, and congestion control
is described in the companion document <xref target="QUIC-RECOVERY"/>.</t>

</section>
<section anchor="stream-prioritization" title="Stream Prioritization">

<t>Stream multiplexing has a significant effect on application performance if
resources allocated to streams are correctly prioritized.  Experience with other
multiplexed protocols, such as HTTP/2 <xref target="HTTP2"/>, shows that effective
prioritization strategies have a significant positive impact on performance.</t>

<t>QUIC does not provide frames for exchanging prioritization information.  Instead
it relies on receiving priority information from the application that uses QUIC.
Protocols that use QUIC are able to define any prioritization scheme that suits
their application semantics.  A protocol might define explicit messages for
signaling priority, such as those defined in HTTP/2; it could define rules that
allow an endpoint to determine priority based on context; or it could leave the
determination to the application.</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, QUIC SHOULD use the information provided by the application.
Failure to account for priority of streams can result in suboptimal performance.</t>

<t>Stream priority is most relevant when deciding which stream data will be
transmitted.  Often, there will be limits on what can be transmitted as a result
of connection flow control or the current congestion controller state.</t>

<t>Giving preference to the transmission of its own management frames ensures that
the protocol functions efficiently.  That is, prioritizing frames other than
STREAM frames ensures that loss recovery, congestion control, and flow control
operate effectively.</t>

<t>Stream 0 MUST be prioritized over other streams prior to the completion of the
cryptographic handshake.  This includes the retransmission of the second flight
of client handshake messages, that is, the TLS Finished and any client
authentication messages.</t>

<t>STREAM frames that are determined to be lost SHOULD be retransmitted before
sending new data, unless application priorities indicate otherwise.
Retransmitting lost stream data can fill in gaps, which allows the peer to
consume already received data and free up flow control window.</t>

</section>
</section>
<section anchor="flow-control" title="Flow Control">

<t>It is necessary to limit the amount of data that a sender may have outstanding
at any time, so as to prevent a fast sender from overwhelming a slow receiver,
or to prevent a malicious sender from consuming significant resources at a
receiver.  This section describes QUIC’s flow-control mechanisms.</t>

<t>QUIC employs a credit-based flow-control scheme similar to HTTP/2’s flow control
<xref target="HTTP2"/>.  A receiver advertises the number of octets it is prepared to
receive on a given stream and for the entire connection.  This leads to two
levels of flow control in QUIC: (i) Connection flow control, which prevents
senders from exceeding a receiver’s buffer capacity for the connection, and (ii)
Stream flow control, which prevents a single stream from consuming the entire
receive buffer for a connection.</t>

<t>A data receiver sends MAX_STREAM_DATA or MAX_DATA frames to the sender
to advertise additional credit. MAX_STREAM_DATA frames send the the
maximum absolute byte offset of a stream, while MAX_DATA sends the
maximum sum of the absolute byte offsets of all streams other than
stream 0.</t>

<t>A receiver MAY advertise a larger offset at any point by sending MAX_DATA or
MAX_STREAM_DATA frames.  A receiver MUST NOT renege on an advertisement; that
is, once a receiver advertises an offset, it MUST NOT subsequently advertise a
smaller offset.  A sender could receive MAX_DATA or MAX_STREAM_DATA frames out
of order; a sender MUST therefore ignore any flow control offset that does not
move the window forward.</t>

<t>A receiver MUST close the connection with a FLOW_CONTROL_ERROR error
(<xref target="error-handling"/>) if the peer violates the advertised connection or stream
data limits.</t>

<t>A sender SHOULD send BLOCKED or STREAM_BLOCKED frames to indicate it has data to
write but is blocked by flow control limits.  These frames are expected to be
sent infrequently in common cases, but they are considered useful for debugging
and monitoring purposes.</t>

<t>A receiver advertises credit for a stream by sending a MAX_STREAM_DATA frame
with the Stream ID set appropriately. 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>Connection flow control is a limit to the total bytes of stream data sent in
STREAM frames on all streams.  A receiver advertises credit for a connection by
sending a MAX_DATA frame.  A receiver maintains a cumulative sum of bytes
received on all streams, which are used to check for flow control violations. A
receiver might use a sum of bytes consumed on all contributing streams to
determine the maximum data limit to be advertised.</t>

<section anchor="edge-cases-and-other-considerations" title="Edge Cases and Other Considerations">

<t>There are some edge cases which must be considered when dealing with stream and
connection level flow control.  Given enough time, both endpoints must agree on
flow control state.  If one end believes it can send more than the other end is
willing to receive, the connection will be torn down when too much data arrives.</t>

<t>Conversely if a sender believes it is blocked, while endpoint B expects more
data can be received, then the connection can be in a deadlock, with the sender
waiting for a MAX_DATA or MAX_STREAM_DATA frame which will never come.</t>

<t>On receipt of a RST_STREAM frame, an endpoint will tear down state for the
matching stream and ignore further data arriving on that stream.  This could
result in the endpoints getting out of sync, since the RST_STREAM frame may have
arrived out of order and there may be further bytes in flight.  The data sender
would have counted the data against its connection level flow control budget,
but a receiver that has not received these bytes would not know to include them
as well.  The receiver must learn the number of bytes that were sent on the
stream to make the same adjustment in its connection flow controller.</t>

<t>To avoid this de-synchronization, a RST_STREAM sender MUST include the final
byte offset sent on the stream in the RST_STREAM frame.  On receiving a
RST_STREAM frame, a receiver definitively knows how many bytes were sent on that
stream before the RST_STREAM frame, and the receiver MUST use the final offset
to account for all bytes sent on the stream in its connection level flow
controller.</t>

<section anchor="response-to-a-rststream" title="Response to a RST_STREAM">

<t>RST_STREAM terminates one direction of a stream abruptly.  Whether any action or
response can or should be taken on the data already received is an
application-specific issue, but it will often be the case that upon receipt of a
RST_STREAM an endpoint will choose to stop sending data in its own direction. If
the sender of a RST_STREAM wishes to explicitly state that no future data will
be processed, that endpoint MAY send a STOP_SENDING frame at the same time.</t>

</section>
<section anchor="fc-credit" title="Data Limit Increments">

<t>This document leaves when and how many bytes to advertise in a MAX_DATA or
MAX_STREAM_DATA to implementations, but offers a few considerations.  These
frames contribute to connection overhead.  Therefore frequently sending frames
with small changes is undesirable.  At the same time, infrequent updates require
larger increments to limits if blocking is to be avoided.  Thus, larger updates
require a receiver to commit to larger resource commitments.  Thus there is a
tradeoff between resource commitment and overhead when determining how large a
limit is advertised.</t>

<t>A receiver MAY use an autotuning mechanism to tune the frequency and amount that
it increases data limits based on a roundtrip time estimate and the rate at
which the receiving application consumes data, similar to common TCP
implementations.</t>

</section>
</section>
<section anchor="stream-limit-increment" title="Stream Limit Increment">

<t>As with flow control, this document leaves when and how many streams to make
available to a peer via MAX_STREAM_ID to implementations, but offers a few
considerations.  MAX_STREAM_ID frames constitute minimal overhead, while
withholding MAX_STREAM_ID frames can prevent the peer from using the available
parallelism.</t>

<t>Implementations will likely want to increase the maximum stream ID as
peer-initiated streams close.  A receiver MAY also advance the maximum stream ID
based on current activity, system conditions, and other environmental factors.</t>

<section anchor="blocking" title="Blocking on Flow Control">

<t>If a sender does not receive a MAX_DATA or MAX_STREAM_DATA frame when it has run
out of flow control credit, the sender will be blocked and SHOULD send a BLOCKED
or STREAM_BLOCKED frame.  These frames are expected to be useful for debugging
at the receiver; they do not require any other action.  A receiver SHOULD NOT
wait for a BLOCKED or STREAM_BLOCKED frame before sending MAX_DATA or
MAX_STREAM_DATA, since doing so will mean that a sender is unable to send for an
entire round trip.</t>

<t>For smooth operation of the congestion controller, it is generally considered
best to not let the sender go into quiescence if avoidable.  To avoid blocking a
sender, and to reasonably account for the possibiity of loss, a receiver should
send a MAX_DATA or MAX_STREAM_DATA frame at least two roundtrips before it
expects the sender to get blocked.</t>

<t>A sender sends a single BLOCKED or STREAM_BLOCKED frame only once when it
reaches a data limit.  A sender SHOULD NOT send multiple BLOCKED or
STREAM_BLOCKED frames for the same data limit, unless the original frame is
determined to be lost.  Another BLOCKED or STREAM_BLOCKED frame can be sent
after the data limit is increased.</t>

</section>
</section>
<section anchor="final-offset" title="Stream Final Offset">

<t>The final offset is the count of the number of octets that are transmitted on a
stream.  For a stream that is reset, the final offset is carried explicitly in
a RST_STREAM frame.  Otherwise, the final offset is the offset of the end of the
data carried in 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 offset for a stream when the receive stream
enters the “Size Known” or “Reset Recvd” state.</t>

<t>An endpoint MUST NOT send data on a stream at or beyond the final offset.</t>

<t>Once a final offset for a stream is known, it cannot change.  If a RST_STREAM or
STREAM frame causes the final offset to change for a stream, an endpoint SHOULD
respond with a FINAL_OFFSET_ERROR error (see <xref target="error-handling"/>).  A receiver
SHOULD treat receipt of data at or beyond the final offset as a
FINAL_OFFSET_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 offset
state for closed streams, which could mean a significant state commitment.</t>

</section>
</section>
<section anchor="error-handling" title="Error Handling">

<t>An endpoint that detects an error SHOULD signal the existence of that error to
its peer.  Errors can affect an entire connection (see <xref target="connection-errors"/>),
or a single stream (see <xref target="stream-errors"/>).</t>

<t>The most appropriate error code (<xref target="error-codes"/>) 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.</t>

<t>A stateless reset (<xref target="stateless-reset"/>) is not suitable for any error that can
be signaled with a CONNECTION_CLOSE, APPLICATION_CLOSE, or RST_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" title="Connection Errors">

<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 or APPLICATION_CLOSE frame
(<xref target="frame-connection-close"/>, <xref target="frame-application-close"/>). 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_CLOSE frame.  Errors that are specific to the transport, including
all those described in this document, are carried in a CONNECTION_CLOSE frame.
Other than the type of error code they carry, these frames are identical in
format and semantics.</t>

<t>A CONNECTION_CLOSE or APPLICATION_CLOSE frame could be sent in a packet that is
lost.  An endpoint SHOULD be prepared to retransmit a packet containing either
frame type 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 CONNECTION_CLOSE
or APPLICATION_CLOSE 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"/>).</t>

<t>An endpoint that receives an invalid CONNECTION_CLOSE or APPLICATION_CLOSE frame
MUST NOT signal the existence of the error to its peer.</t>

</section>
<section anchor="stream-errors" title="Stream Errors">

<t>If the error affects a single stream, but otherwise leaves the connection in a
recoverable state, the endpoint can send a RST_STREAM frame
(<xref target="frame-rst-stream"/>) with an appropriate error code to terminate just the
affected stream.</t>

<t>Stream 0 is critical to the functioning of the entire connection.  If stream 0
is closed with either a RST_STREAM or STREAM frame bearing the FIN flag, an
endpoint MUST generate a connection error of type PROTOCOL_VIOLATION.</t>

<t>RST_STREAM MUST be instigated by the application and MUST carry an application
error code.  Resetting a stream without knowledge of the application protocol
could cause the protocol to enter an unrecoverable state.  Application protocols
might require certain streams to be reliably delivered in order to guarantee
consistent state between endpoints.</t>

</section>
<section anchor="error-codes" title="Transport Error Codes">

<t>QUIC error codes are 16-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>

<t><list style="hanging">
  <t hangText='NO_ERROR (0x0):'>
  An endpoint uses this with CONNECTION_CLOSE to signal that the connection is
being closed abruptly in the absence of any error.</t>
  <t hangText='INTERNAL_ERROR (0x1):'>
  The endpoint encountered an internal error and cannot continue with the
connection.</t>
  <t hangText='FLOW_CONTROL_ERROR (0x3):'>
  An endpoint received more data than it permitted in its advertised data limits
(see <xref target="flow-control"/>).</t>
  <t hangText='STREAM_ID_ERROR (0x4):'>
  An endpoint received a frame for a stream identifier that exceeded its
advertised maximum stream ID.</t>
  <t hangText='STREAM_STATE_ERROR (0x5):'>
  An endpoint received a frame for a stream that was not in a state that
permitted that frame (see <xref target="stream-states"/>).</t>
  <t hangText='FINAL_OFFSET_ERROR (0x6):'>
  An endpoint received a STREAM frame containing data that exceeded the
previously established final offset.  Or an endpoint received a RST_STREAM
frame containing a final offset that was lower than the maximum offset of data
that was already received.  Or an endpoint received a RST_STREAM frame
containing a different final offset to the one already established.</t>
  <t hangText='FRAME_FORMAT_ERROR (0x7):'>
  An endpoint received a frame that was badly formatted.  For instance, an empty
STREAM frame that omitted the FIN flag, or an ACK frame that has more
acknowledgment ranges than the remainder of the packet could carry.  This is a
generic error code; an endpoint SHOULD use the more specific frame format
error codes (0x1XX) if possible.</t>
  <t hangText='TRANSPORT_PARAMETER_ERROR (0x8):'>
  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.</t>
  <t hangText='VERSION_NEGOTIATION_ERROR (0x9):'>
  An endpoint received transport parameters that contained version negotiation
parameters that disagreed with the version negotiation that it performed.
This error code indicates a potential version downgrade attack.</t>
  <t hangText='PROTOCOL_VIOLATION (0xA):'>
  An endpoint detected an error with protocol compliance that was not covered by
more specific error codes.</t>
  <t hangText='UNSOLICITED_PONG (0xB):'>
  An endpoint received a PONG frame that did not correspond to any PING frame
that it previously sent.</t>
  <t hangText='FRAME_ERROR (0x1XX):'>
  An endpoint detected an error in a specific frame type.  The frame type is
included as the last octet of the error code.  For example, an error in a
MAX_STREAM_ID frame would be indicated with the code (0x106).</t>
</list></t>

<t>See <xref target="iana-error-codes"/> for details of registering new error codes.</t>

</section>
<section anchor="app-error-codes" title="Application Protocol Error Codes">

<t>Application protocol error codes are 16-bit unsigned integers, but the
management of application error codes are left to application protocols.
Application protocol error codes are used for the RST_STREAM
(<xref target="frame-rst-stream"/>) and APPLICATION_CLOSE (<xref target="frame-application-close"/>)
frames.</t>

<t>There is no restriction on the use of the 16-bit error code space for
application protocols.  However, QUIC reserves the error code with a value of 0
to mean STOPPING.  The application error code of STOPPING (0) is used by the
transport to cancel a stream in response to receipt of a STOP_SENDING frame.</t>

</section>
</section>
<section anchor="security-and-privacy-considerations" title="Security and Privacy Considerations">

<section anchor="spoofed-ack-attack" title="Spoofed ACK Attack">

<t>An attacker might be able to receive an address validation token
(<xref target="address-validation"/>) from the server and then release the IP address it
used to acquire that token.  The attacker may, in the future, spoof this same
address (which now presumably addresses a different endpoint), and initiate a
0-RTT connection with a server on the victim’s behalf.  The attacker can then
spoof ACK frames to the server which cause the server to send excessive amounts
of data toward the new owner of the IP address.</t>

<t>There are two possible mitigations to this attack.  The simplest one is that a
server can unilaterally create a gap in packet-number space.  In the non-attack
scenario, the client will send an ACK frame with the larger value for largest
acknowledged.  In the attack scenario, the attacker could acknowledge a packet
in the gap.  If the server sees an acknowledgment for a packet that was never
sent, the connection can be aborted.</t>

<t>The second mitigation is that the server can require that acknowledgments for
sent packets match the encryption level of the sent packet.  This mitigation is
useful if the connection has an ephemeral forward-secure key that is generated
and used for every new connection.  If a packet sent is protected with a
forward-secure key, then any acknowledgments that are received for them MUST
also be forward-secure protected.  Since the attacker will not have the forward
secure key, the attacker will not be able to generate forward-secure protected
packets with ACK frames.</t>

</section>
<section anchor="slowloris-attacks" title="Slowloris Attacks">

<t>The attacks commonly known as Slowloris <xref target="SLOWLORIS"/> 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" title="Stream Fragmentation and Reassembly Attacks">

<t>An adversarial endpoint might intentionally fragment the data on stream buffers
in order to cause disproportionate memory commitment.  An adversarial endpoint
could open a stream and send some STREAM frames containing arbitrary fragments
of the stream content.</t>

<t>The attack 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 the stream fragmentation
attack.  Mitigations could consist of avoiding over-committing memory, 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" title="Stream Commitment Attack">

<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"/>.
However, when several streams are initiated at short intervals, transmission
error may cause STREAM DATA frames opening streams to be received out of
sequence.  A receiver is obligated to open intervening streams if a
higher-numbered stream ID is received.  Thus, on a new connection, opening
stream 2000001 opens 1 million streams, as required by the specification.</t>

<t>The number of active streams is limited by the concurrent stream limit transport
parameter, as explained in <xref target="stream-concurrency"/>.  If chosen judisciously, this
limit mitigates 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>
<section anchor="iana-considerations" title="IANA Considerations">

<section anchor="iana-transport-parameters" title="QUIC Transport Parameter Registry">

<t>IANA [SHALL add/has added] a registry for “QUIC Transport Parameters” under a
“QUIC Protocol” heading.</t>

<t>The “QUIC Transport Parameters” registry governs a 16-bit space.  This space is
split into two spaces that are governed by different policies.  Values with the
first byte in the range 0x00 to 0xfe (in hexadecimal) are assigned via the
Specification Required policy <xref target="RFC8126"/>.  Values with the first byte 0xff are
reserved for Private Use <xref target="RFC8126"/>.</t>

<t>Registrations MUST include the following fields:</t>

<t><list style="hanging">
  <t hangText='Value:'>
  The numeric value of the assignment (registrations will be between 0x0000 and
0xfeff).</t>
  <t hangText='Parameter Name:'>
  A short mnemonic for the parameter.</t>
  <t hangText='Specification:'>
  A reference to a publicly available specification for the value.</t>
</list></t>

<t>The nominated expert(s) verify that a specification exists and is readily
accessible.  The 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).</t>

<t>The initial contents of this registry are shown in <xref target="iana-tp-table"/>.</t>

<texttable title="Initial QUIC Transport Parameters Entries" anchor="iana-tp-table">
      <ttcol align='left'>Value</ttcol>
      <ttcol align='left'>Parameter Name</ttcol>
      <ttcol align='left'>Specification</ttcol>
      <c>0x0000</c>
      <c>initial_max_stream_data</c>
      <c><xref target="transport-parameter-definitions"/></c>
      <c>0x0001</c>
      <c>initial_max_data</c>
      <c><xref target="transport-parameter-definitions"/></c>
      <c>0x0002</c>
      <c>initial_max_stream_id_bidi</c>
      <c><xref target="transport-parameter-definitions"/></c>
      <c>0x0003</c>
      <c>idle_timeout</c>
      <c><xref target="transport-parameter-definitions"/></c>
      <c>0x0004</c>
      <c>omit_connection_id</c>
      <c><xref target="transport-parameter-definitions"/></c>
      <c>0x0005</c>
      <c>max_packet_size</c>
      <c><xref target="transport-parameter-definitions"/></c>
      <c>0x0006</c>
      <c>stateless_reset_token</c>
      <c><xref target="transport-parameter-definitions"/></c>
      <c>0x0007</c>
      <c>ack_delay_exponent</c>
      <c><xref target="transport-parameter-definitions"/></c>
      <c>0x0008</c>
      <c>initial_max_stream_id_uni</c>
      <c><xref target="transport-parameter-definitions"/></c>
</texttable>

</section>
<section anchor="iana-error-codes" title="QUIC Transport Error Codes Registry">

<t>IANA [SHALL add/has added] a registry for “QUIC Transport Error Codes” under a
“QUIC Protocol” heading.</t>

<t>The “QUIC Transport Error Codes” registry governs a 16-bit space.  This space is
split into two spaces that are governed by different policies.  Values with the
first byte in the range 0x00 to 0xfe (in hexadecimal) are assigned via the
Specification Required policy <xref target="RFC8126"/>.  Values with the first byte 0xff are
reserved for Private Use <xref target="RFC8126"/>.</t>

<t>Registrations MUST include the following fields:</t>

<t><list style="hanging">
  <t hangText='Value:'>
  The numeric value of the assignment (registrations will be between 0x0000 and
0xfeff).</t>
  <t hangText='Code:'>
  A short mnemonic for the parameter.</t>
  <t hangText='Description:'>
  A brief description of the error code semantics, which MAY be a summary if a
specification reference is provided.</t>
  <t hangText='Specification:'>
  A reference to a publicly available specification for the value.</t>
</list></t>

<t>The initial contents of this registry are shown in <xref target="iana-error-table"/>.  Note
that FRAME_ERROR takes the range from 0x100 to 0x1FF and private use occupies
the range from 0xFE00 to 0xFFFF.</t>

<texttable title="Initial QUIC Transport Error Codes Entries" anchor="iana-error-table">
      <ttcol align='left'>Value</ttcol>
      <ttcol align='left'>Error</ttcol>
      <ttcol align='left'>Description</ttcol>
      <ttcol align='left'>Specification</ttcol>
      <c>0x0</c>
      <c>NO_ERROR</c>
      <c>No error</c>
      <c><xref target="error-codes"/></c>
      <c>0x1</c>
      <c>INTERNAL_ERROR</c>
      <c>Implementation error</c>
      <c><xref target="error-codes"/></c>
      <c>0x3</c>
      <c>FLOW_CONTROL_ERROR</c>
      <c>Flow control error</c>
      <c><xref target="error-codes"/></c>
      <c>0x4</c>
      <c>STREAM_ID_ERROR</c>
      <c>Invalid stream ID</c>
      <c><xref target="error-codes"/></c>
      <c>0x5</c>
      <c>STREAM_STATE_ERROR</c>
      <c>Frame received in invalid stream state</c>
      <c><xref target="error-codes"/></c>
      <c>0x6</c>
      <c>FINAL_OFFSET_ERROR</c>
      <c>Change to final stream offset</c>
      <c><xref target="error-codes"/></c>
      <c>0x7</c>
      <c>FRAME_FORMAT_ERROR</c>
      <c>Generic frame format error</c>
      <c><xref target="error-codes"/></c>
      <c>0x8</c>
      <c>TRANSPORT_PARAMETER_ERROR</c>
      <c>Error in transport parameters</c>
      <c><xref target="error-codes"/></c>
      <c>0x9</c>
      <c>VERSION_NEGOTIATION_ERROR</c>
      <c>Version negotiation failure</c>
      <c><xref target="error-codes"/></c>
      <c>0xA</c>
      <c>PROTOCOL_VIOLATION</c>
      <c>Generic protocol violation</c>
      <c><xref target="error-codes"/></c>
      <c>0xB</c>
      <c>UNSOLICITED_PONG</c>
      <c>Unsolicited PONG frame</c>
      <c><xref target="error-codes"/></c>
      <c>0x100-0x1FF</c>
      <c>FRAME_ERROR</c>
      <c>Specific frame format error</c>
      <c><xref target="error-codes"/></c>
</texttable>

</section>
</section>


  </middle>

  <back>

    <references title='Normative References'>

<reference anchor="QUIC-RECOVERY" >
  <front>
    <title>QUIC Loss Detection and Congestion Control</title>
    <author initials="J." surname="Iyengar" fullname="Jana Iyengar" role="editor">
      <organization>Google</organization>
    </author>
    <author initials="I." surname="Swett" fullname="Ian Swett" role="editor">
      <organization>Google</organization>
    </author>
    <date year="2018" month="January"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-recovery-09"/>
</reference>
<reference anchor="QUIC-TLS" >
  <front>
    <title>Using Transport Layer Security (TLS) to Secure QUIC</title>
    <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="2018" month="January"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-tls-09"/>
</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>
<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>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</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>
<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>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='8174'/>
<seriesInfo name='DOI' value='10.17487/RFC8174'/>
</reference>



<reference  anchor="RFC4086" target='https://www.rfc-editor.org/info/rfc4086'>
<front>
<title>Randomness Requirements for Security</title>
<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>
<seriesInfo name='BCP' value='106'/>
<seriesInfo name='RFC' value='4086'/>
<seriesInfo name='DOI' value='10.17487/RFC4086'/>
</reference>



<reference anchor="I-D.ietf-tls-tls13">
<front>
<title>The Transport Layer Security (TLS) Protocol Version 1.3</title>

<author initials='E' surname='Rescorla' fullname='Eric Rescorla'>
    <organization />
</author>

<date month='January' day='5' year='2018' />

<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></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-tls-tls13-23' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-tls-tls13-23.txt' />
</reference>



<reference  anchor="RFC3629" target='https://www.rfc-editor.org/info/rfc3629'>
<front>
<title>UTF-8, a transformation format of ISO 10646</title>
<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>
<seriesInfo name='STD' value='63'/>
<seriesInfo name='RFC' value='3629'/>
<seriesInfo name='DOI' value='10.17487/RFC3629'/>
</reference>



<reference  anchor="PLPMTUD" target='https://www.rfc-editor.org/info/rfc4821'>
<front>
<title>Packetization Layer Path MTU Discovery</title>
<author initials='M.' surname='Mathis' fullname='M. Mathis'><organization /></author>
<author initials='J.' surname='Heffner' fullname='J. Heffner'><organization /></author>
<date year='2007' month='March' />
<abstract><t>This document describes a robust method for Path MTU Discovery (PMTUD) that relies on TCP or some other Packetization Layer to probe an Internet path with progressively larger packets.  This method is described as an extension to RFC 1191 and RFC 1981, which specify ICMP-based Path MTU Discovery for IP versions 4 and 6, respectively.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4821'/>
<seriesInfo name='DOI' value='10.17487/RFC4821'/>
</reference>



<reference  anchor="PMTUDv4" target='https://www.rfc-editor.org/info/rfc1191'>
<front>
<title>Path MTU discovery</title>
<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>
<seriesInfo name='RFC' value='1191'/>
<seriesInfo name='DOI' value='10.17487/RFC1191'/>
</reference>



<reference  anchor="PMTUDv6" target='https://www.rfc-editor.org/info/rfc8201'>
<front>
<title>Path MTU Discovery for IP version 6</title>
<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>
<seriesInfo name='STD' value='87'/>
<seriesInfo name='RFC' value='8201'/>
<seriesInfo name='DOI' value='10.17487/RFC8201'/>
</reference>



<reference  anchor="RFC1191" target='https://www.rfc-editor.org/info/rfc1191'>
<front>
<title>Path MTU discovery</title>
<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>
<seriesInfo name='RFC' value='1191'/>
<seriesInfo name='DOI' value='10.17487/RFC1191'/>
</reference>



<reference  anchor="RFC4821" target='https://www.rfc-editor.org/info/rfc4821'>
<front>
<title>Packetization Layer Path MTU Discovery</title>
<author initials='M.' surname='Mathis' fullname='M. Mathis'><organization /></author>
<author initials='J.' surname='Heffner' fullname='J. Heffner'><organization /></author>
<date year='2007' month='March' />
<abstract><t>This document describes a robust method for Path MTU Discovery (PMTUD) that relies on TCP or some other Packetization Layer to probe an Internet path with progressively larger packets.  This method is described as an extension to RFC 1191 and RFC 1981, which specify ICMP-based Path MTU Discovery for IP versions 4 and 6, respectively.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4821'/>
<seriesInfo name='DOI' value='10.17487/RFC4821'/>
</reference>



<reference  anchor="RFC8126" target='https://www.rfc-editor.org/info/rfc8126'>
<front>
<title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
<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>
<seriesInfo name='BCP' value='26'/>
<seriesInfo name='RFC' value='8126'/>
<seriesInfo name='DOI' value='10.17487/RFC8126'/>
</reference>




    </references>

    <references title='Informative References'>

<reference anchor="EARLY-DESIGN" target="https://goo.gl/dMVtFi">
  <front>
    <title>QUIC: Multiplexed Transport Over UDP</title>
    <author initials="J." surname="Roskind">
      <organization></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></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>
<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>
<seriesInfo name='BCP' value='22'/>
<seriesInfo name='RFC' value='2360'/>
<seriesInfo name='DOI' value='10.17487/RFC2360'/>
</reference>



<reference  anchor="RFC6824" target='https://www.rfc-editor.org/info/rfc6824'>
<front>
<title>TCP Extensions for Multipath Operation with Multiple Addresses</title>
<author initials='A.' surname='Ford' fullname='A. Ford'><organization /></author>
<author initials='C.' surname='Raiciu' fullname='C. Raiciu'><organization /></author>
<author initials='M.' surname='Handley' fullname='M. Handley'><organization /></author>
<author initials='O.' surname='Bonaventure' fullname='O. Bonaventure'><organization /></author>
<date year='2013' month='January' />
<abstract><t>TCP/IP communication is currently restricted to a single path per connection, yet multiple paths often exist between peers.  The simultaneous use of these multiple paths for a TCP/IP session would improve resource usage within the network and, thus, improve user experience through higher throughput and improved resilience to network failure.</t><t>Multipath TCP provides the ability to simultaneously use multiple paths between peers.  This document presents a set of extensions to traditional TCP to support multipath operation.  The protocol offers the same type of service to applications as TCP (i.e., reliable bytestream), and it provides the components necessary to establish and use multiple TCP flows across potentially disjoint paths.  This  document defines an Experimental Protocol for the Internet community.</t></abstract>
</front>
<seriesInfo name='RFC' value='6824'/>
<seriesInfo name='DOI' value='10.17487/RFC6824'/>
</reference>



<reference  anchor="RFC7301" target='https://www.rfc-editor.org/info/rfc7301'>
<front>
<title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
<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>
<seriesInfo name='RFC' value='7301'/>
<seriesInfo name='DOI' value='10.17487/RFC7301'/>
</reference>



<reference  anchor="RFC2104" target='https://www.rfc-editor.org/info/rfc2104'>
<front>
<title>HMAC: Keyed-Hashing for Message Authentication</title>
<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>
<seriesInfo name='RFC' value='2104'/>
<seriesInfo name='DOI' value='10.17487/RFC2104'/>
</reference>



<reference  anchor="RFC5869" target='https://www.rfc-editor.org/info/rfc5869'>
<front>
<title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
<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>
<seriesInfo name='RFC' value='5869'/>
<seriesInfo name='DOI' value='10.17487/RFC5869'/>
</reference>



<reference  anchor="RFC4787" target='https://www.rfc-editor.org/info/rfc4787'>
<front>
<title>Network Address Translation (NAT) Behavioral Requirements for Unicast UDP</title>
<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>
<seriesInfo name='BCP' value='127'/>
<seriesInfo name='RFC' value='4787'/>
<seriesInfo name='DOI' value='10.17487/RFC4787'/>
</reference>

<reference anchor="SST" >
  <front>
    <title>Structured streams</title>
    <author initials="B." surname="Ford" fullname="Bryan Ford">
      <organization></organization>
    </author>
    <date year="2007" month="October"/>
  </front>
  <seriesInfo name="ACM SIGCOMM Computer Communication Review" value="Vol. 37, pp. 361"/>
  <seriesInfo name="DOI" value="10.1145/1282427.1282421"/>
</reference>



<reference  anchor="HTTP2" target='https://www.rfc-editor.org/info/rfc7540'>
<front>
<title>Hypertext Transfer Protocol Version 2 (HTTP/2)</title>
<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>
<seriesInfo name='RFC' value='7540'/>
<seriesInfo name='DOI' value='10.17487/RFC7540'/>
</reference>




    </references>


<section anchor="contributors" title="Contributors">

<t>The original authors of this specification were Ryan Hamilton, Jana Iyengar, Ian
Swett, and Alyssa Wilk.</t>

<t>The original design and rationale behind this protocol draw significantly from
work by Jim Roskind <xref target="EARLY-DESIGN"/>. In alphabetical order, the contributors to
the pre-IETF QUIC project at Google are: Britt Cyr, Jeremy Dorfman, Ryan
Hamilton, Jana Iyengar, Fedor Kouranov, Charles Krasic, Jo Kulik, Adam Langley,
Jim Roskind, Robbie Shade, Satyam Shekhar, Cherie Shi, Ian Swett, Raman Tenneti,
Victor Vasiliev, Antonio Vicente, Patrik Westin, Alyssa Wilk, Dale Worley, Fan
Yang, Dan Zhang, Daniel Ziegler.</t>

</section>
<section anchor="acknowledgments" title="Acknowledgments">

<t>Special thanks are due to the following for helping shape pre-IETF QUIC and its
deployment: Chris Bentzel, Misha Efimov, Roberto Peon, Alistair Riddoch,
Siddharth Vijayakrishnan, and Assar Westerlund.</t>

<t>This document has benefited immensely from various private discussions and
public ones on the quic@ietf.org and proto-quic@chromium.org mailing lists. Our
thanks to all.</t>

</section>
<section anchor="change-log" title="Change Log">

<t><list style='empty'>
  <t><spanx style="strong">RFC Editor’s Note:</spanx> Please remove this section prior to publication of a
final version of this document.</t>
</list></t>

<t>Issue and pull request numbers are listed with a leading octothorp.</t>

<section anchor="since-draft-ietf-quic-transport-08" title="Since draft-ietf-quic-transport-08">

<t><list style="symbols">
  <t>Clarified requirements for BLOCKED usage (#65,  #924)</t>
  <t>BLOCKED frame now includes reason for blocking (#452, #924, #927, #928)</t>
  <t>Cleartext integrity as version independent (#568)</t>
  <t>GAP limitation in ACK Frame (#613)</t>
  <t>Improved PMTUD description (#614, #1036)</t>
  <t>Clarified stream state machine (#634, #662, #894)</t>
  <t>Reserved versions don’t need to be generated deterministically (#831, #931)</t>
  <t>You don’t always need the draining period (#871)</t>
  <t>Stateless reset clarified as version-specific (#930, #986)</t>
  <t>initial_max_stream_id_x transport parameters are optional (#970, #971)</t>
  <t>Ack Delay assumes a default value during the handshake (#1007, #1009)</t>
  <t>Removed transport parameters from NewSessionTicket (#1015)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-transport-07" title="Since draft-ietf-quic-transport-07">

<t><list style="symbols">
  <t>The long header now has version before packet number (#926, #939)</t>
  <t>Rename and consolidate packet types (#846, #822, #847)</t>
  <t>Packet types are assigned new codepoints and the Connection ID Flag is
inverted (#426, #956)</t>
  <t>Removed type for Version Negotiation and use Version 0 (#963, #968)</t>
  <t>Streams are split into unidirectional and bidirectional (#643, #656, #720,
#872, #175, #885)
  <list style="symbols">
      <t>Stream limits now have separate uni- and bi-directinal transport parameters
(#909, #958)</t>
      <t>Stream limit transport parameters are now optional and default to 0 (#970,
#971)</t>
    </list></t>
  <t>The stream state machine has been split into read and write (#634, #894)</t>
  <t>Employ variable-length integer encodings throughout (#595)</t>
  <t>Improvements to connection close
  <list style="symbols">
      <t>Added distinct closing and draining states (#899, #871)</t>
      <t>Draining period can terminate early (#869, #870)</t>
      <t>Clarifications about stateless reset (#889, #890)</t>
    </list></t>
  <t>Address validation for connection migration (#161, #732, #878)</t>
  <t>Clearly defined retransmission rules for BLOCKED (#452, #65, #924)</t>
  <t>negotiated_version is sent in server transport parameters (#710, #959)</t>
  <t>Increased the range over which packet numbers are randomized (#864, #850,
#964)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-transport-06" title="Since draft-ietf-quic-transport-06">

<t><list style="symbols">
  <t>Replaced FNV-1a with AES-GCM for all “Cleartext” packets (#554)</t>
  <t>Split error code space between application and transport (#485)</t>
  <t>Stateless reset token moved to end (#820)</t>
  <t>1-RTT-protected long header types removed (#848)</t>
  <t>No acknowledgments during draining period (#852)</t>
  <t>Remove “application close” as a separate close type (#854)</t>
  <t>Remove timestamps from the ACK frame (#841)</t>
  <t>Require transport parameters to only appear once (#792)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-transport-05" title="Since draft-ietf-quic-transport-05">

<t><list style="symbols">
  <t>Stateless token is server-only (#726)</t>
  <t>Refactor section on connection termination (#733, #748, #328, #177)</t>
  <t>Limit size of Version Negotiation packet (#585)</t>
  <t>Clarify when and what to ack (#736)</t>
  <t>Renamed STREAM_ID_NEEDED to STREAM_ID_BLOCKED</t>
  <t>Clarify Keep-alive requirements (#729)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-transport-04" title="Since draft-ietf-quic-transport-04">

<t><list style="symbols">
  <t>Introduce STOP_SENDING frame, RST_STREAM only resets in one direction (#165)</t>
  <t>Removed GOAWAY; application protocols are responsible for graceful shutdown
(#696)</t>
  <t>Reduced the number of error codes (#96, #177, #184, #211)</t>
  <t>Version validation fields can’t move or change (#121)</t>
  <t>Removed versions from the transport parameters in a NewSessionTicket message
(#547)</t>
  <t>Clarify the meaning of “bytes in flight” (#550)</t>
  <t>Public reset is now stateless reset and not visible to the path (#215)</t>
  <t>Reordered bits and fields in STREAM frame (#620)</t>
  <t>Clarifications to the stream state machine (#572, #571)</t>
  <t>Increased the maximum length of the Largest Acknowledged field in ACK frames
to 64 bits (#629)</t>
  <t>truncate_connection_id is renamed to omit_connection_id (#659)</t>
  <t>CONNECTION_CLOSE terminates the connection like TCP RST (#330, #328)</t>
  <t>Update labels used in HKDF-Expand-Label to match TLS 1.3 (#642)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-transport-03" title="Since draft-ietf-quic-transport-03">

<t><list style="symbols">
  <t>Change STREAM and RST_STREAM layout</t>
  <t>Add MAX_STREAM_ID settings</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-transport-02" title="Since draft-ietf-quic-transport-02">

<t><list style="symbols">
  <t>The size of the initial packet payload has a fixed minimum (#267, #472)</t>
  <t>Define when Version Negotiation packets are ignored (#284, #294, #241, #143,
#474)</t>
  <t>The 64-bit FNV-1a algorithm is used for integrity protection of unprotected
packets (#167, #480, #481, #517)</t>
  <t>Rework initial packet types to change how the connection ID is chosen (#482,
#442, #493)</t>
  <t>No timestamps are forbidden in unprotected packets (#542, #429)</t>
  <t>Cryptographic handshake is now on stream 0 (#456)</t>
  <t>Remove congestion control exemption for cryptographic handshake (#248, #476)</t>
  <t>Version 1 of QUIC uses TLS; a new version is needed to use a different
handshake protocol (#516)</t>
  <t>STREAM frames have a reduced number of offset lengths (#543, #430)</t>
  <t>Split some frames into separate connection- and stream- level frames
(#443)
  <list style="symbols">
      <t>WINDOW_UPDATE split into MAX_DATA and MAX_STREAM_DATA (#450)</t>
      <t>BLOCKED split to match WINDOW_UPDATE split (#454)</t>
      <t>Define STREAM_ID_NEEDED frame (#455)</t>
    </list></t>
  <t>A NEW_CONNECTION_ID frame supports connection migration without linkability
(#232, #491, #496)</t>
  <t>Transport parameters for 0-RTT are retained from a previous connection (#405,
#513, #512)
  <list style="symbols">
      <t>A client in 0-RTT no longer required to reset excess streams (#425, #479)</t>
    </list></t>
  <t>Expanded security considerations (#440, #444, #445, #448)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-transport-01" title="Since draft-ietf-quic-transport-01">

<t><list style="symbols">
  <t>Defined short and long packet headers (#40, #148, #361)</t>
  <t>Defined a versioning scheme and stable fields (#51, #361)</t>
  <t>Define reserved version values for “greasing” negotiation (#112, #278)</t>
  <t>The initial packet number is randomized (#35, #283)</t>
  <t>Narrow the packet number encoding range requirement (#67, #286, #299, #323,
#356)</t>
  <t>Defined client address validation (#52, #118, #120, #275)</t>
  <t>Define transport parameters as a TLS extension (#49, #122)</t>
  <t>SCUP and COPT parameters are no longer valid (#116, #117)</t>
  <t>Transport parameters for 0-RTT are either remembered from before, or assume
default values (#126)</t>
  <t>The server chooses connection IDs in its final flight (#119, #349, #361)</t>
  <t>The server echoes the Connection ID and packet number fields when sending a
Version Negotiation packet (#133, #295, #244)</t>
  <t>Defined a minimum packet size for the initial handshake packet from the client
(#69, #136, #139, #164)</t>
  <t>Path MTU Discovery (#64, #106)</t>
  <t>The initial handshake packet from the client needs to fit in a single packet
(#338)</t>
  <t>Forbid acknowledgment of packets containing only ACK and PADDING (#291)</t>
  <t>Require that frames are processed when packets are acknowledged (#381, #341)</t>
  <t>Removed the STOP_WAITING frame (#66)</t>
  <t>Don’t require retransmission of old timestamps for lost ACK frames (#308)</t>
  <t>Clarified that frames are not retransmitted, but the information in them can
be (#157, #298)</t>
  <t>Error handling definitions (#335)</t>
  <t>Split error codes into four sections (#74)</t>
  <t>Forbid the use of Public Reset where CONNECTION_CLOSE is possible (#289)</t>
  <t>Define packet protection rules (#336)</t>
  <t>Require that stream be entirely delivered or reset, including acknowledgment
of all STREAM frames or the RST_STREAM, before it closes (#381)</t>
  <t>Remove stream reservation from state machine (#174, #280)</t>
  <t>Only stream 1 does not contribute to connection-level flow control (#204)</t>
  <t>Stream 1 counts towards the maximum concurrent stream limit (#201, #282)</t>
  <t>Remove connection-level flow control exclusion for some streams (except 1)
(#246)</t>
  <t>RST_STREAM affects connection-level flow control (#162, #163)</t>
  <t>Flow control accounting uses the maximum data offset on each stream, rather
than bytes received (#378)</t>
  <t>Moved length-determining fields to the start of STREAM and ACK (#168, #277)</t>
  <t>Added the ability to pad between frames (#158, #276)</t>
  <t>Remove error code and reason phrase from GOAWAY (#352, #355)</t>
  <t>GOAWAY includes a final stream number for both directions (#347)</t>
  <t>Error codes for RST_STREAM and CONNECTION_CLOSE are now at a consistent offset
(#249)</t>
  <t>Defined priority as the responsibility of the application protocol (#104,
#303)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-transport-00" title="Since draft-ietf-quic-transport-00">

<t><list style="symbols">
  <t>Replaced DIVERSIFICATION_NONCE flag with KEY_PHASE flag</t>
  <t>Defined versioning</t>
  <t>Reworked description of packet and frame layout</t>
  <t>Error code space is divided into regions for each component</t>
  <t>Use big endian for all numeric values</t>
</list></t>

</section>
<section anchor="since-draft-hamilton-quic-transport-protocol-01" title="Since draft-hamilton-quic-transport-protocol-01">

<t><list style="symbols">
  <t>Adopted as base for draft-ietf-quic-tls</t>
  <t>Updated authors/editors list</t>
  <t>Added IANA Considerations section</t>
  <t>Moved Contributors and Acknowledgments to appendices</t>
</list></t>

</section>
</section>


  </back>

<!-- ##markdown-source:
H4sIAOp3bloAA+y9aX8cx5En/D4/Ra30wsBsN4SDl6i5IB4W1xTJASF5/fN4
OIXuAlDD7qqeqm6CMMn97E/cGZlVDVC25PVjL72zIoGqrDwi445/TKfTsK7X
i+ph8cW//fDs0cPiuPjh8avpt2VfzYvvN4t1vVpU7+HvZTMvXlezTVcVp13Z
9Ku2W38RyrOzrnr3sMB348+LV127bmftIszbWVMuYfR5V56vp3W1Pp/+96ae
Tdf67HT/6zAv1/DI4f7Bg+n+QZjBvy7a7vph0a/noV51D4t1t+nXh/v7X+8f
hrKryofxW+Gq7d5edO1mxbMIoV/DXN+Ui7aBQa+rPqzqh8XvYT6ToocXuuq8
h79dL/kvMMNluVrVzcUfQig368u2exiKYgr/VxR10z8s/tde8ey6ai7Kjn7G
6/lfZVMmP267i4fFr9v2YlHRv6tlWS8eFv/V1f96QT/dm7VL+k3X4nZX83rd
dumXvt8rTi/bZd827kvfl926bpJf0Le+b/9YLxal/9iSHt1b86P/eoE/Hf9s
aNpuWa7rd9XDAL/FjZuePHn08scnJ797SI97qiiet31fPK7W1Wxdtw3RwqO2
uah6+if8dQ2jf0HvpWeJP+mrrq76ujlveeSieNasq66p1tPHSBVD4uiqWfuu
6q6RNvD5eCz4Zyr/HT+eG45o7JhGDmTkG8/2itdX1XqdfeFZ2WQ/v3V43ezT
56/Tff4BdujCXaHn5XXV8Y2r19fFDrywW6xbvYM4yM+34etF/1l7nRHojUQ6
Sqift92v4TMbmG9+oq8r2PDsN/SJvjnq5ls2HPfB0/qT45Pnv5s+fvL62a9f
DEn9YcL04nG8BHpEzvjF2CYZIZ60/du6mafncjQ9OJwC46JPld1FBQfwxeV6
veoffvUV8Ia9i8VX8+9/XD+tv8D5vX7+8rfPX548y+jjt9UCbnJFJLBorxZt
V/d7e3s3zOcE5vO6Kd9WxXewiqpJZrX/9XT/np8Sv2vzuqrO9spudgm7tgdb
jP/+CtZyd/8I/u/unQdHD77CR+HJy3Jv9rbqenqs16l9BWsJ0+m0KM964PWz
dQinl3WP7HazrJp1Ma/O66bqi/VlVcxaoOj2nP5O/MakQ7ESSbJXFMn7YV71
s64+gxFmbdMIYwKGVJ4t6v4SH5kUqxJmti74/CfFUk8WbxrysK5a1OVZvYAL
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
pHaD8RRar2PZ/WVi4aVyi76cNgYvrFl5zR/lSgiJnKqGN6DYkPc2zTy11KDK
1a5xZ4A05WvQJMfcBilFDi+RaF99GM6NscUtsms7PHLpJJ9G+16H5AlfTiyO
r7wPba58SUEqDX2Jtc++LFr6+aINjDjw7g7zeRu7HZkocJb7I81kB/sSexum
nRWNDA72U2Dld2g/p1RGAab+kmxj3hnPXFVtyE66Ff0R9uPgwV5s526UMc4H
87UiGtt9Lg3RNrClahN1Y3UJqBR8qXfqBb/6ayBJNLGZEVmuBXGVC6mOGG6s
6nHxugcs9aDezxtgUNx5AeUDu3r2vI7oxuHAlwtjwwJp7RkzZTRT4R3UUlZA
avnMkmcDadtDCMOz+mKKWlrZSFRtoom4jYwNAz5k1GvYleKfiu9+8/jp9Mn7
FTw2fV6eVYsdwUfhD71hL4ECPg//fOHThm2WsO4vJvbPSXFnlz5JATKQtjAP
PM/BtxX+nTJwBRbFrSno7ftibI5fsLOgI5o2uY2ukKTHR8jYsgGF3927x1Dh
OZb8qFMRT5UVSxjlkbOEVcd0iutNxlra14z5maQ2jVlqO20X/gt7NyVPchJh
26T2gan5hMFC3u+ee9qOZ1Wo6k+QviFY9+86uu21rjXqPvoBzSbkxm95Hl6w
qxczoOKGiJ4GR1SxFs2hlj6JtWDQTCB0AmjP68jPbCBWeJxpsrj2uXaKBYBT
nozvgJl+arxxNhrrDe/axWZZpYCkWXmm5Q9arE/TDJH2N2T1V008BneGg4zN
SVJGwGYcZYWyuT5qxDE4BjU9JTXd23Tl2ht1sH3fXkffPgaH68q6tcQFuoLC
STxwzRuRJ+o+6s9huyFJ00OvEnlknVkrobJXmoKVhXPcLrm9mWebE6OuTD5B
D6psMrHs3eYOw/oYb5U0wuaSU8vpCgozLeElvAXS2MUjMVliXcyqR2WfGQYM
dYbZl9JXM8F+o/w6A4aZbEmOIsuOS6R7DPtWGuAZS7i3QmatEfBhF583Zp7P
3QyAIJY4ldn2uywF9Fo+e/FrgVoThYd/LoBRQT8s7jELnZA7jd8bto4Z6Qmr
yGopFctmvno5NgkLHyp4VR1D4JzBZzwqgRJ3fUzF9+PHL7WM8ZqdOZyVGzjF
inTD8S05OBRVAXO5hFHMpbHQnf0H9+DQOK8WY5cObG3d5go90kvZ18xS9RY5
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
l0B1kkCSm5LPVZh45evEslU6UDV4jAIBmHKBZx6uQHLk+oZGUcyBWUlxKPsb
ZuTVTZVMQz3SLyt00OO6X7VaiD7AUTJkB/m+VVQON1YWE1h/ZOvmRhHIJgx1
R8efti2IwiSrV1Kr30lBHiHsN+xalR43qUzG3M0puQz81RZHkVvavGWnDlXw
MR+Ty5Pm1RvghzkuFq24y7GpS99yFbv2BUTN9uwMfchcZ5jRgbhmS0mxJz50
XiKcNxohbPBqJIUSeTHTSJRky8BnnY+/zDqedWzA3H5fViB0hxcdNJj1LcfG
wB8aYL3lWfSTEqGOmoCOZw8QxNQCZocAsQqfE9+OOwiUSDhUhsyPKGW7LxSP
RFF0MkXS1ZsGyo24Ls43HYmWXCrkXJ5C8MnN7ZWWuK2I+AOzT4ZR3dW11vJ8
URJhNXeOc5Vx8ZSJw27u3orPE6kRHIs7do9bIpy1zYufI767bN+xZEt5cJAq
jdZ2wNyZURxx5QOWCZezfC3q+xnLv6djT908k6TV0Lidv5NWZE4E6K0eY6t7
vvNzqEfUNBaF/RpIaq1F6ux4sLw5w65yeQ8UDElyM4hjKDS+uRoqChesXURu
Zxv2yu5ezOEcnykF7IBbgGIyu2xbrpbOMyfV7xy2brKmZT1DklIrIXXtCsdZ
kvJpxqQEPSw8mqrsnEtxa5vvXaVYknHJV8XYWHsJqlh+1cgnqUS60jtKsZJS
c6Bzi2JdvkU77hwjYSBs0Xd+xkhAFMov+utmdtm1Tf3HinDCCIzZamr20hbi
EtrwbrWGvMtRQsr31d52YWctXuD3YjomKTSivMSdyFSo4NzgEWZMz9xO1iyx
R2SJJVdSi/MTbXaiIabPMo8m4Qa/qi/rRlnO4+YWz0Yw4oO2IEQjwdWDiyOD
CeUbkXnyqNhL2gCMlIgQgRxEFVNffMy0yVdsWob/MG398PbteeielMmMhr1G
9liFo/gbVfRkmNhmJYhHkU2eW43IPXT+UvYVwpbFCL2m2cUYoQBi9ppZOzDB
JiHujElRIu33wOA1IUhCLZbmGN/JYTzCkJWSTW6W6w2rGkr4kMkWsE4uOnYH
Uug9JjSMsPB8kwe1WRHVzPSRLh00wYSIWgJ2ruVeepo0M1S+Ewu9K7Hwobeg
JhZvMd/HeH8722BSi3aaRKUQaJQ7kg+b7uaBiqytAamSDIpTjD2PoVaLeOI8
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
cpDK3duvOWESjlBPrfrinDANJA1oK//PVRs1N0kVFvapStP19I2sjNVxqTqn
r2NHbI9p339obtfJ2Vl22QXYPMTJu7YdJi9xN4EEpNILKBU0rdtrCGA/NXVp
DdEnNdrDH+oNUttH1T5mMqH4fD7H3BLPbzckyu5YlYR4lLJ7zHW5vO1Nr4I/
OIEC3d3CvPQ7PTjZYqamirBJ69HOEdQ3TbVjJc5JzKQjUaKm3Cg54V1flBuF
D0Nos6JohskNVkWNy9LgpqV9SOd407NDLzWVH9KOYS6O4geaQEiEZXkd3Gyo
9PdsZ/3YW1nilF7FKxfExHaVAz+I15UhJhtVSEhjHdUI8nlg+/c3U4fgrf01
OFFVfVxN6UqSKb+IRyXxICH4NLH/zlsxm0I88/n9jdgA7//ePmVpUfy5APeJ
aPyCJvnFlRdROGs+L9cdMrvDjMeHmZtkSjJllhfMjWMKgfblXb+v9SpJZ3V5
cutGMAKRhlD0QAcYWNXw5ZlIlQR9vGyov8H39wsrQR0f6I/q0RhjE+4Y3vAW
SJQXlusY5cHlqo73+LLxkH2EOFHkao20ktP3eu7LURrmvvCInr45qV5C/vyx
iZOU7k9nHLAgxpjo8RM0hMdfRDXquo2KwhS1eEWQnef0HPIVvAD03DtGnIf8
WxkkVQjKit5Z+gPPciV5sVKWd2DhN4r+xu8tQH4Rp+91/FZ3Fe1f4cwojnGA
kqqiedY/yn7FUCmjWcA+LIu7ynEiJY1Ko91cKapFj35K1FU9JU/P/TWEnHfZ
F++QMtqWF4zCfiROHQGjTBs3IqagFldmP2u1dba1tbW99ec//7naMP6bpcMR
wBVK7hyauvj/T6VYcMj8bFysOZ61MRf6PmtTfS35LjmUzN7nH9gvZBqLq5dp
78Vp+j0GcfT6NSjqNoRIfVa2DWz2kkGRk5QhQY8tOA2BKhpIEjr7BOWDcUA/
sTWO17dZYc2eTMXCX6jlvmS6va3hp1HchfnolwkcD6qelCFEJpgleW9RQQpz
oKXBpXR1TaopCtprjrMsHxfgATQkI6xlJzeKpNHeeGQz++bgrc3szm+bWeEG
MzBPmthDYR06a5euHZm0N55wqzdpocqmTdy4n5dQ28QDL4N1x2rdJ7c1san8
qPZVp+P1YZqO7UcDm1jahEkOyqtkQKiriHt/Ae6hoTR+mOHLpZU3QVfzcJB9
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
bT+Mqv0JkU/VFI68HQU3wviF+dlZ21QnV1F9HFUn9fKWCqRfNR+u6BMvr6hg
UvzvFotRyWK8q2PvqtMmGmjLdhT+1BJVUbyKu5Y4T+P3ogI8a+dV/IHyekbR
SohT86H6iVhp4jjcQo6qV7RUP80X1LfqdRzvX2ryI7yKX/jXK/3XqBpW/9o2
l0JMWO3nqAdRjjjNZPaBHe+TlYWKnJIZO3rVTFERvruqb8o1gg9mSTwpGjn6
Ns4CBZH/EP/9b810VP3Qxherg4v2mmY9TmCziJ85buYYWdSY6nZRvWsnk/n5
1SicxH+JcxkV6T+1f61v6w+xratZLST/+xTAx7w0i2k0WDZLdj2uMTyLVhpC
h9fxj6CahUb0kRA/q860J/JFr1JCaGB1kEBOFlGOav/5f2mb5cXmfHEpqlc8
GWP8nXg2r9vVNX67jmIW9TzIN7VZHa1QupYml1TN6ZTdxnJ1vZlfhvCfqt//
Pmr+1cGEGL9/10En/Pb3v6+OGSoX9zZTt7tMJyvOwn21WFYdW+PLUDHQKkR0
aigNiJgdeRCrqPVLrXHxcAtytO0SkgZhSQTo4oYl0XQjlT6ZoGlRXyzHNDeY
DefQ3noWRV71chqn+4LSniVIYUgkY81ZoWLdxsO9J6Oqevh8Z/dRfC8n0CEA
n9WUYV4kNGHkSRsPd5/sjPA2/vcp/vfZI/SgiTup+cwRpEtGS3Y2Q5SdgAxe
sooePtnDO9/tH3MAQauDAXfBik3s6PZjeihqgNHOoHvqh9MfX2VmDT1DHdne
erz3KJuFTAW6ronUF00+psf39mgMz55jBt6pqSg9pUWc/Y7JPcR5abCpxCjY
qX9x4+Gzx9s0C4+3qbW/zFfyfj1FBayZlgSOK8hheqrzNp/Qi0/xykmRrntu
g0jTlxLuN+KXtuh7zzDiYa/K52GFh/bc/EYIeGJDT9EQ9yIKrWiFTGtaNGYS
JOrmi5roGNi6nawsOzQVD9qIc7/1FEuw9Zyn83q+NpMBguFt8+mkgSA4bYEt
oza2nzy6325/SrudrlfAmshd0iywb6/cZhNCLcGuSVApDnhnDyslHZ2Bk4tL
DZI2BIJ6RRDe3lAyy8Nnu/TKsx1smN2n9OKxfyJzZ3CIMe5zQQ9I2rvjvIgm
wOtpfamYfYI/NLQVdrlnT/ayKSR0Px0/VTTfOkVTAHz22xaNb+8xtcJny1fM
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

-->

</rfc>

