<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.2.3 -->

<!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-06" 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="2017" month="September"/>

    <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 words “MUST”, “MUST NOT”, “SHOULD”, and “MAY” are used in this document.
It’s not shouting; when they are capitalized, they have the special meaning
defined in <xref target="RFC2119"/>.</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.  QUIC packet
size in this document refers to the UDP payload size.</t>
</list></t>

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

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

<t><list style="hanging">
  <t hangText='[x]'>
  Indicates that x is optional</t>
  <t hangText='{x}'>
  Indicates that x is encrypted</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 (*) …'>
  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 up
to 256 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
lient, 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 an invalid version.  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 can be 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)                      +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                       Packet Number (32)                      |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         Version (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 SHOULD switch to sending short-form headers. While inefficient,
long headers MAY be used for packets encrypted with 1-RTT keys. 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='Packet Number:'>
  Octets 9 to 12 contain the packet number.  <xref target="packet-numbers"/> describes the
use of packet numbers.</t>
  <t hangText='Version:'>
  Octets 13 to 16 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='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>0x01</c>
      <c>Version Negotiation</c>
      <c><xref target="packet-version"/></c>
      <c>0x02</c>
      <c>Client Initial</c>
      <c><xref target="packet-client-initial"/></c>
      <c>0x03</c>
      <c>Server Stateless Retry</c>
      <c><xref target="packet-server-stateless"/></c>
      <c>0x04</c>
      <c>Server Cleartext</c>
      <c><xref target="packet-server-cleartext"/></c>
      <c>0x05</c>
      <c>Client Cleartext</c>
      <c><xref target="packet-client-cleartext"/></c>
      <c>0x06</c>
      <c>0-RTT Protected</c>
      <c><xref target="packet-protected"/></c>
      <c>0x07</c>
      <c>1-RTT Protected (key phase 0)</c>
      <c><xref target="packet-protected"/></c>
      <c>0x08</c>
      <c>1-RTT Protected (key phase 1)</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>(TODO: Should the list of packet types be version-independent?)</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='Connection ID Flag:'>
  The second bit (0x40) of octet 0 indicates whether the Connection ID field is
present.  If set to 1, then the Connection ID field is present; if set to 0,
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 Connection ID Flag is 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>0x01</c>
      <c>1 octet</c>
      <c>0x02</c>
      <c>2 octets</c>
      <c>0x03</c>
      <c>4 octets</c>
</texttable>

<t>The header form, 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 has long headers with a type value of 0x01 and is
sent only by servers.  The Version Negotiation packet is a response to a client
packet that contains a version that is not supported by the server.</t>

<t>The packet number, connection ID and version fields echo corresponding values
from the triggering client packet.  This allows clients some assurance that the
server received the packet and that the Version Negotiation packet was not
carried in a packet with a spoofed source address.</t>

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

<t>The payload of the Version Negotiation packet is a list of 32-bit versions which
the server supports, as shown below.</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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    Supported Version 1 (32)                 ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                   [Supported Version 2 (32)]                ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
                               ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                   [Supported Version N (32)]                ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>See <xref target="version-negotiation"/> for a description of the version negotiation
process.</t>

</section>
<section anchor="cleartext-packet" title="Cleartext Packets">

<t>Cleartext packets are sent during the handshake prior to key negotiation.</t>

<t>All cleartext packets contain the current QUIC version in the version field.</t>

<t>The payload of cleartext packets also includes an integrity check, which is
described in <xref target="QUIC-TLS"/>.</t>

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

<t>The Client Initial packet uses long headers with a type value of 0x02.
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 packet number used for Client Initial packets is initialized with a random
value each time the new contents are created for the packet.  Retransmissions of
the packet contents increment the packet number by one, see
(<xref target="packet-numbers"/>).</t>

<t>The payload of a Client 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 cyptographic handshake message MUST fit in a single packet (see
<xref target="handshake"/>).</t>

<t>The client uses the Client 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 Server Stateless Retry packet
(<xref target="packet-server-stateless"/>).</t>

</section>
<section anchor="packet-server-stateless" title="Server Stateless Retry Packet">

<t>A Server Stateless Retry packet uses long headers with a type value of 0x03.
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 packet number and connection ID fields echo the corresponding fields from
the triggering client packet.  This allows a client to verify that the server
received its packet.</t>

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

<t>After receiving a Server Stateless Retry packet, the client uses a new Client
Initial packet containing the next cryptographic handshake message.  The client
retains the state of its cryptographic handshake, but discards all transport
state.  The new Client Initial packet includes a newly randomized packet number,
STREAM frames on stream 0 that start again at an offset of 0, and the original
connection ID.</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 Server Stateless Retry packet contains STREAM frames and
could contain PADDING and ACK frames.  A server can only send a single Server
Stateless Retry packet in response to each Client Initial packet that is
receives.</t>

</section>
<section anchor="packet-server-cleartext" title="Server Cleartext Packet">

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

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

<t>The first Server Cleartext packet contains a randomized packet number.  This
value is increased for each subsequent packet sent by the server as described in
<xref target="packet-numbers"/>.</t>

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

</section>
<section anchor="packet-client-cleartext" title="Client Cleartext Packet">

<t>A Client Cleartext packet uses long headers with a type value of 0x05, and is
sent when the client has received a Server Cleartext packet from the server.</t>

<t>The connection ID field in a Client Cleartext packet contains a server-selected
connection ID, see <xref target="connection-id"/>.</t>

<t>The Client Cleartext packet includes a packet number that is one higher than the
last Client Initial, 0-RTT Protected or Client Cleartext packet that was sent.
The packet number is incremented for each subsequent packet, see
<xref target="packet-numbers"/>.</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.  Packets
that are protected with 1-RTT keys MAY be sent with long 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 0x06.  The connection ID
field for a 0-RTT packet is selected by the client.</t>

<t>The client can send 0-RTT packets after having received a packet from the server
if that packet does not complete the handshake.  Even if the client receives a
different connection ID from the server, it MUST NOT update the connection ID it
uses for 0-RTT packets.  This enables consistent routing for all 0-RTT packets.</t>

<t>Packets protected with 1-RTT keys that use long headers use a type value of 0x07
for key phase 0 and 0x08 for key phase 1; see <xref target="QUIC-TLS"/> for more details on
the use of key phases.  The connection ID field for these packet types MUST
contain the value selected by the server, 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 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 Client Initial
packets (<xref target="packet-client-initial"/>) and 0-RTT packets (<xref target="packet-protected"/>).
If the client has received any packet from the server, it uses the connection ID
it received from the server for all packets other than 0-RTT packets.</t>

<t>When the server receives a Client Initial packet and decides to proceed with the
handshake, it chooses a new value for the connection ID and sends that in a
Server Cleartext 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 uses
this for all subsequent packets that it sends, except for any 0-RTT packets,
which all have the same connection ID.</t>

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

<t>The packet number is a 64-bit unsigned number and is used as part of a
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^64 - 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>To reduce the number of bits required to represent the packet number over the
wire, only the least significant bits of the packet number are transmitted.  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 Server Stateless Retry
(<xref target="packet-server-stateless"/>) 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 from an uniform random
distribution between 0 and 2^31-1.  That is, the lower 31 bits of the packet
number are randomized.  <xref target="RFC4086"/> provides guidance on the generation of
random values.</t>

<t>The first set of packets sent by an endpoint MUST include the low 32-bits of the
packet number.  Once any packet has been acknowledged, subsequent packets can
use a shorter packet number encoding.</t>

<t>A client that receives a Version Negotiation (<xref target="packet-version"/>) or Server
Stateless Retry packet (<xref target="packet-server-stateless"/>) MUST generate a new initial
packet number.  This ensures that the first transmission attempt for a Client
Initial packet (<xref target="packet-client-initial"/>) always contains a randomized packet
number, but packets that contain retransmissions increment the packet number.</t>

<t>A client MUST NOT generate a new initial packet number if it discards the server
packet.  This might happen if the information the client retransmits its Client
Initial packet.</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 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, and</t>
  <t>the location and size of the Packet Number field in long headers.</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 cleartext packets and the plaintext after decryption of protected
payloads consists of a sequence of frames, as shown in <xref target="packet-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>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>0xa0 - 0xbf</c>
      <c>ACK</c>
      <c><xref target="frame-ack"/></c>
      <c>0xc0 - 0xff</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="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 a handshake packet. The details
of the handshake mechanisms are described in <xref target="handshake"/>, but all of the
initial packets sent from the client to the server MUST use the long header
format and MUST specify the version of the protocol being used.</t>

<t>When the server receives a packet from a client with the long header format, it
compares the client’s version to the versions it supports.</t>

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

<t>To avoid packet amplification attacks a server MUST NOT send a Version
Negotiation packet that is larger than the packet it responds to.  It is
anticipated that this is ample space for all QUIC versions that a single server
might need to advertise.</t>

<t>A server sends a Version Negotiation packet for every packet that it receives
with an unacceptable version.  This allows a server to process packets with
unsupported versions without retaining state.  Though either the initial client
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.</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>

<t>When the client receives a Version Negotiation packet from the server, it should
select an acceptable protocol version.  If the server lists an acceptable
version, the client selects that version and reattempts to create a connection
using that version.  Though the contents of a packet 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 ignore 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 uses unprotected data. The result of the negotiation MUST be
revalidated as part of the cryptographic handshake (see <xref target="version-validation"/>).</t>

<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.  However, when the server generates
a Version Negotiation packet, it cannot randomly generate a reserved version
number. This is because the server is required to include the same value in its
transport parameters (see <xref target="version-validation"/>).  To avoid the selected
version number changing during connection establishment, the reserved version
SHOULD be generated as a function of values that will be available to the server
when later generating its handshake packets.</t>

<t>A pseudorandom function that takes client address information (IP and port) and
the client selected version as input would ensure that there is sufficient
variability in the values that a server uses.</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(2),
      idle_timeout(3),
      omit_connection_id(4),
      max_packet_size(5),
      stateless_reset_token(6),
      (65535)
   } TransportParameterId;

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

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

         case encrypted_extensions:
            QuicVersion supported_versions<4..2^8-4>;

         case new_session_ticket:
            struct {};
      };
      TransportParameter parameters<30..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"/>.</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 1024 octets.  That is, the value
here is multiplied by 1024 to determine the actual maximum value.  This is
equivalent to sending a MAX_DATA (<xref target="frame-max-data"/>) for the connection
immediately after completing the handshake.</t>
  <t hangText='initial_max_stream_id (0x0002):'>
  The initial maximum stream ID parameter contains the initial maximum stream
number the peer may initiate, encoded as an unsigned 32-bit integer.  This is
equivalent to sending a MAX_STREAM_ID (<xref target="frame-max-stream-id"/>) 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='omit_connection_id (0x0004):'>
  The omit connection identifier parameter indicates that packets sent to the
endpoint that advertises this parameter can omit the connection ID.  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 this parameter indicates that the endpoint relies on the
connection ID being present in every packet.</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>
</list></t>

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

<t>Transport parameters from the server MUST be remembered by the client for use
with 0-RTT data.  If the TLS NewSessionTicket message includes the
quic_transport_parameters extension, then those values are used for the server
values when establishing a new connection using that ticket.  Otherwise, the
transport parameters that the server advertises during connection establishment
are used.</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.</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>The transport parameters include three fields that encode version information.
These retroactively authenticate the version negotiation (see
<xref target="version-negotiation"/>) that is performed prior to the cryptographic handshake.</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, modification of version negotiation packets by an attacker can be
detected.</t>

<t>The client includes two fields in the transport parameters:</t>

<t><list style="symbols">
  <t>The negotiated_version is the version that was finally selected for use.  This
MUST be identical to the value that is on the packet that carries the
ClientHello.  A server 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 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.</t>
</list></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 and negotiated
versions are the same, a stateless server can accept the value.</t>

<t>If the initial version is different from the negotiated_version, 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 value of negotiated_version, the server MUST terminate the connection with a
VERSION_NEGOTIATION_ERROR error.</t>

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

<t>The client can validate 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
negotiated_version value is not included 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 Server Stateless Retry packet
(<xref target="packet-server-stateless"/>).  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 Server Stateless 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 Server Stateless 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 1280 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>

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

<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 <xref target="QUIC-TLS"/> Section 5.6.</t>

</section>
</section>
<section anchor="address-validation-for-migrated-connections" title="Address Validation for Migrated Connections">

<t>TODO: see issue #161</t>

</section>
</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 four ways:</t>

<t><list style="symbols">
  <t>application close (<xref target="application-close"/>)</t>
  <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="Draining Period">

<t>After a connection is closed for any reason, an endpoint might receive packets
from its peer.  These packets might have been sent prior to receiving any close
signal, or they might be retransmissions of packets for which acknowledgments
were lost.</t>

<t>The draining period persists for three times the current Retransmission Timeout
(RTO) interval as defined in <xref target="QUIC-RECOVERY"/>.  During this period, new packets
can be acknowledged, but no new application data can be sent on the connection.</t>

<t>Different treatment is given to packets that are received while a connection is
in the draining period depending on how the connection was closed.  In all
cases, it is possible to acknowledge packets that are received as normal, but
other reactions might be preferable depending on how the connection was closed.
An endpoint that is in a draining period MUST NOT send packets containing frames
other than ACK, PADDING, or CONNECTION_CLOSE.</t>

<t>Once the draining period has ended, an endpoint SHOULD discard per-connection
state.  This results in new packets on the connection being discarded.  An
endpoint MAY send a stateless reset in response to any further incoming packets.</t>

<t>The draining period does not apply when a stateless reset (<xref target="stateless-reset"/>)
is used.</t>

</section>
<section anchor="application-close" title="Application Close">

<t>An application protocol can arrange to close a connection.  This might be after
negotiating 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.
A negotiated shutdown might not result in exchanging messages that are visible
to the transport.</t>

<t>In the draining period, an endpoint that has been closed by an application
SHOULD generate and send ACK frames as normal.  This allows the peer to receive
acknowledgements where previous acknowledgements were lost.</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"/>) becomes closed.  Either peer removes
connection state if they have neither sent nor received a packet for this time.</t>

<t>The time at which an idle timeout takes effect won’t be perfectly synchronized
on peers.  A connection enters the draining period when the idle timeout
expires.  During this time, an endpoint that receives new packets MAY choose to
restore the connection.  Alternatively, an endpoint that receives packets MAY
signal the timeout using an immediate close.</t>

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

<t>An endpoint sends a CONNECTION_CLOSE frame to terminate the connection
immediately.  A CONNECTION_CLOSE causes all open streams to immediately become
closed; open streams can be assumed to be implicitly reset.  After sending or
receiving a CONNECTION_CLOSE frame, endpoints immediately enter a draining
period.</t>

<t>During the draining period, an endpoint that sends a CONNECTION_CLOSE frame
SHOULD respond to any subsequent packet that it receives with another packet
containing a CONNECTION_CLOSE frame.  To reduce the state that an endpoint
maintains in this case, it MAY send the exact same packet.  However, endpoints
SHOULD limit the number of CONNECTION_CLOSE messages they generate.  For
instance, an endpoint could progressively increase the number of packets that it
receives before sending additional CONNECTION_CLOSE frames.</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>An endpoint can cease sending CONNECTION_CLOSE frames if it receives either a
CONNECTION_CLOSE or an acknowledgement for a packet that contained a
CONNECTION_CLOSE.</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 CONNECTION_CLOSE 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|  00001  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                     [Connection ID (64)]                      +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                                                               +
|                                                               |
+                   Stateless Reset Token (128)                 +
|                                                               |
+                                                               +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Random Octets (*)                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>This packet SHOULD use the short header form with the shortest possible packet
number encoding.  This minimizes the perceived gap between the last packet that
the server sent and this packet.  The leading octet of the Stateless Reset Token
will be interpreted as a packet number.  A server MAY use a different short
header type, indicating a different packet number length, but this allows for
the message to be identified as a stateless reset more easily using heuristics.</t>

<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>After the first short header octet and optional connection ID, the server
includes the value of the Stateless Reset Token that it included in its
transport parameters.</t>

<t>After the Stateless Reset Token, the server pads the message with an arbitrary
number of octets containing random values.</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 frame if it has sufficient state to do so.</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
cannot be decrypted.  The client then performs a constant-time comparison of the
16 octets that follow the Connection ID with the Stateless Reset Token provided
by the server in its transport parameters.  If this comparison is successful,
the connection MUST be terminated immediately.  Otherwise, 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>

</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="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 (32)                         |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Error Code (32)                        |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                       Final Offset (64)                       +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The fields are:</t>

<t><list style="hanging">
  <t hangText='Stream ID:'>
  The 32-bit Stream ID of the stream being terminated.</t>
  <t hangText='Error code:'>
  A 32-bit error code which indicates why the stream is being closed.</t>
  <t hangText='Final offset:'>
  A 64-bit unsigned 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.  If there are open streams that haven’t been
explicitly closed, they are implicitly closed when the connection is closed.
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Error Code (32)                        |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|   Reason Phrase Length (16)   |      [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 32-bit error code which indicates the reason for closing this connection.</t>
  <t hangText='Reason Phrase Length:'>
  A 16-bit unsigned number 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-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 (64)                      +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

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

<t><list style="hanging">
  <t hangText='Maximum Data:'>
  A 64-bit unsigned integer indicating the maximum amount of data that can be
sent on the entire connection, in units of 1024 octets.  That is, the updated
connection-level data limit is determined by multiplying the encoded value by
1024.</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 closed streams, 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 (32)                         |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                    Maximum Stream Data (64)                   +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></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.</t>
  <t hangText='Maximum Stream Data:'>
  A 64-bit unsigned 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 (32)                     |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></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 peer-initiated stream ID for the connection.</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. The PING frame contains no
additional fields. The receiver of a PING frame simply needs to acknowledge the
packet containing this frame.</t>

<t>A PING frame has no additional fields.</t>

<t>The PING frame can be used to keep a connection alive when an application or
application protocol wishes to prevent the connection from timing out.  An
application protocol SHOULD provide guidance about the conditions under which
generating a PING is recommended.  This guidance SHOULD indicate whether it is
the client or the server that is expected to send the PING.  Having both
endpoints send PING frames without coordination can produce an excessive number
of packets and poor performance.</t>

<t>A connection will time out if no packets are sent or received for a period
longer than the time 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 sends 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 does not contain a payload.</t>

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

<t>A sender sends 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 (32)                         |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The STREAM_BLOCKED frame contains a single field:</t>

<t><list style="hanging">
  <t hangText='Stream ID:'>
  A 32-bit unsigned number indicating the stream which is flow control blocked.</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 does not contain a payload.</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 (16)           |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                        Connection ID (64)                     +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                                                               +
|                                                               |
+                   Stateless Reset Token (128)                 +
|                                                               |
+                                                               +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The fields are:</t>

<t><list style="hanging">
  <t hangText='Sequence:'>
  A 16-bit sequence number.  This value starts at 0 and increases by 1 for each
connection ID that is provided by the server.  The sequence value can wrap;
the value 65535 is followed by 0.  When wrapping the sequence field, the
server MUST ensure that a value with the same sequence has been received and
acknowledged by the client.  The connection ID that is assigned during the
handshake is assumed to have a sequence of 65535.</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.  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 (32)                         |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Error Code (32)                        |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The fields are:</t>

<t><list style="hanging">
  <t hangText='Stream ID:'>
  The 32-bit Stream ID of the stream being ignored.</t>
  <t hangText='Error Code:'>
  The application-specified reason the sender is ignoring the stream.</t>
</list></t>

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

<t>Receivers send ACK frames to inform senders which packets they have received and
processed, as well as which packets are considered missing.  The ACK frame
contains between 1 and 256 ACK blocks.  ACK blocks are ranges of acknowledged
packets. Implementations SHOULD NOT generate ACK packets in response to packets
which only contain ACKs. However, they SHOULD ACK those packets when sending
ACKs for other packets.</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.  When this is necessary, the receiver
SHOULD acknowledge newly received packets and stop acknowledging packets
received in the past.</t>

<t>Unlike TCP SACKs, QUIC ACK blocks 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 Server Stateless Retry
packets.  These packet types contain packet numbers selected by the client, not
the server.</t>

<t>QUIC ACK frames contain a timestamp section with up to 255 timestamps.
Timestamps enable better congestion control, but are not required for correct
loss recovery, and old timestamps are less valuable, so it is not guaranteed
every timestamp will be received by the sender.  A receiver SHOULD send a
timestamp exactly once for each received packet containing retransmittable
frames. A receiver MAY send timestamps for non-retransmittable packets.
A receiver MUST not send timestamps in unprotected packets.</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 blocks of missing packets; skipping
packet numbers between 1 and 255 effectively provides up to 8 bits of efficient
entropy on demand, which should be adequate protection against most
opportunistic acknowledgement attacks.</t>

<t>The type byte for a ACK frame contains embedded flags, and is formatted as
<spanx style="verb">101NLLMM</spanx>.  These bits are parsed as follows:</t>

<t><list style="symbols">
  <t>The first three bits must be set to 101 indicating that this is an ACK frame.</t>
  <t>The <spanx style="verb">N</spanx> bit indicates whether the frame contains a Num Blocks field.</t>
  <t>The two <spanx style="verb">LL</spanx> bits encode the length of the Largest Acknowledged field.
The values 00, 01, 02, and 03 indicate lengths of 8, 16, 32, and 64
bits respectively.</t>
  <t>The two <spanx style="verb">MM</spanx> bits encode the length of the ACK Block Length fields.
The values 00, 01, 02, and 03 indicate lengths of 8, 16, 32, and 64
bits respectively.</t>
</list></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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|[Num Blocks(8)]|   NumTS (8)   |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                Largest Acknowledged (8/16/32/64)            ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|        ACK Delay (16)         |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                     ACK Block Section (*)                   ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                     Timestamp Section (*)                   ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

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

<t><list style="hanging">
  <t hangText='Num Blocks (opt):'>
  An optional 8-bit unsigned value specifying the number of additional ACK
blocks (besides the required First ACK Block) in this ACK frame.  Only present
if the ‘N’ flag bit is 1.</t>
  <t hangText='Num Timestamps:'>
  An unsigned 8-bit number specifying the total number of &lt;packet number,
timestamp&gt; pairs in the Timestamp Section.</t>
  <t hangText='Largest Acknowledged:'>
  A variable-sized unsigned value representing the largest packet number the
peer is acknowledging in this packet (typically the largest that the peer has
seen thus far.)</t>
  <t hangText='ACK Delay:'>
  The time from when the largest acknowledged packet, as indicated in the
Largest Acknowledged field, was received by this peer to when this ACK was
sent.</t>
  <t hangText='ACK Block Section:'>
  Contains one or more blocks of packet numbers which have been successfully
received, see <xref target="ack-block-section"/>.</t>
  <t hangText='Timestamp Section:'>
  Contains zero or more timestamps reporting transit delay of received packets.
See <xref target="timestamp-section"/>.</t>
</list></t>

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

<t>The ACK Block Section contains between one and 256 blocks of packet numbers
which have been successfully received. If the Num Blocks field is absent, only
the First ACK Block length is present in this section. Otherwise, the Num Blocks
field indicates how many additional blocks follow the First ACK Block Length
field.</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 Length (8/16/32/64)            ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|  [Gap 1 (8)]  |       [ACK Block 1 Length (8/16/32/64)]     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|  [Gap 2 (8)]  |       [ACK Block 2 Length (8/16/32/64)]     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
                             ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|  [Gap N (8)]  |       [ACK Block N Length (8/16/32/64)]     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

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

<t><list style="hanging">
  <t hangText='First ACK Block Length:'>
  An unsigned packet number delta that indicates the number of contiguous
additional packets being acknowledged starting at the Largest Acknowledged.</t>
  <t hangText='Gap To Next Block (opt, repeated):'>
  An unsigned number specifying the number of contiguous missing packets from
the end of the previous ACK block to the start of the next.  Repeated “Num
Blocks” times.</t>
  <t hangText='ACK Block Length (opt, repeated):'>
  An unsigned packet number delta that indicates the number of contiguous
packets being acknowledged starting after the end of the previous gap.
Repeated “Num Blocks” times.</t>
</list></t>

</section>
<section anchor="timestamp-section" title="Timestamp Section">

<t>The Timestamp Section contains between zero and 255 measurements of packet
receive times relative to the beginning of the connection.</t>

<figure title="Timestamp Section" anchor="timestamp-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
+-+-+-+-+-+-+-+-+
| [Delta LA (8)]|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    [First Timestamp (32)]                     |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|[Delta LA 1(8)]| [Time Since Previous 1 (16)]  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|[Delta LA 2(8)]| [Time Since Previous 2 (16)]  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
                       ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|[Delta LA N(8)]| [Time Since Previous N (16)]  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The fields in the Timestamp Section are:</t>

<t><list style="hanging">
  <t hangText='Delta Largest Acknowledged (opt):'>
  An optional 8-bit unsigned packet number delta specifying the delta between
the largest acknowledged and the first packet whose timestamp is being
reported.  In other words, this first packet number may be computed as
(Largest Acknowledged - Delta Largest Acknowledged.)</t>
  <t hangText='First Timestamp (opt):'>
  An optional 32-bit unsigned value specifying the time delta in microseconds,
from the beginning of the connection to the arrival of the packet indicated by
Delta Largest Acknowledged.</t>
  <t hangText='Delta Largest Acked 1..N (opt, repeated):'>
  This field has the same semantics and format as “Delta Largest Acknowledged”.
Repeated “Num Timestamps - 1” times.</t>
  <t hangText='Time Since Previous Timestamp 1..N(opt, repeated):'>
  An optional 16-bit unsigned value specifying time delta from the previous
reported timestamp.  It is encoded in the same format as the ACK Delay.
Repeated “Num Timestamps - 1” times.</t>
</list></t>

<t>The timestamp section lists packet receipt timestamps ordered by timestamp.</t>

<section anchor="time-format" title="Time Format">

<t>DISCUSS_AND_REPLACE: Perhaps make this format simpler.</t>

<t>The time format used in the ACK frame above is a 16-bit unsigned float with 11
explicit bits of mantissa and 5 bits of explicit exponent, specifying time in
microseconds.  The bit format is loosely modeled after IEEE 754.  For example, 1
microsecond is represented as 0x1, which has an exponent of zero, presented in
the 5 high order bits, and mantissa of 1, presented in the 11 low order bits.
When the explicit exponent is greater than zero, an implicit high-order 12th bit
of 1 is assumed in the mantissa.  For example, a floating value of 0x800 has an
explicit exponent of 1, as well as an explicit mantissa of 0, but then has an
effective mantissa of 4096 (12th bit is assumed to be 1).  Additionally, the
actual exponent is one-less than the explicit exponent, and the value represents
4096 microseconds.  Any values larger than the representable range are clamped
to 0xFFFF.</t>

</section>
</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 Frame">

<t>STREAM frames implicitly create a stream and carry stream data. The type byte
for a STREAM frame contains embedded flags, and is formatted as <spanx style="verb">11FSSOOD</spanx>.
These bits are parsed as follows:</t>

<t><list style="symbols">
  <t>The first two bits must be set to 11, indicating that this is a STREAM frame.</t>
  <t><spanx style="verb">F</spanx> is the FIN bit, which is used for stream termination.</t>
  <t>The <spanx style="verb">SS</spanx> bits encode the length of the Stream ID header field.
The values 00, 01, 02, and 03 indicate lengths of 8, 16, 24, and 32 bits
long respectively.</t>
  <t>The <spanx style="verb">OO</spanx> bits encode the length of the Offset header field.
The values 00, 01, 02, and 03 indicate lengths of 0, 16, 32, and
64 bits long respectively.</t>
  <t>The <spanx style="verb">D</spanx> bit indicates whether a Data Length field is present in the STREAM
header.  When set to 0, this field indicates that the Stream Data field
extends to the end of the packet.  When set to 1, this field indicates that
Data Length field contains the length (in bytes) of the Stream Data field.
The option to omit the length should only be used when the packet is a
“full-sized” packet, to avoid the risk of corruption via padding.</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 (8/16/24/32)                   ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                      Offset (0/16/32/64)                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|       [Data Length (16)]      |        Stream Data (*)      ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The STREAM frame contains the following fields:</t>

<t><list style="hanging">
  <t hangText='Stream ID:'>
  The stream ID of the stream (see <xref target="stream-id"/>).</t>
  <t hangText='Offset:'>
  A variable-sized unsigned number specifying the byte offset in the stream for
the data in this STREAM frame.  When the offset length is 0, the offset is 0.
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^64.</t>
  <t hangText='Data Length:'>
  An optional 16-bit unsigned number specifying the length of the Stream Data
field in this STREAM frame.  This field is present when the <spanx style="verb">D</spanx> bit is set to
1.</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>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>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="RFC4821"/>) and MAY use PMTU
Discovery (<xref target="RFC1191"/>, <xref target="RFC1981"/>) 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.</t>

<t>QUIC endpoints that implement any kind of PMTU discovery SHOULD maintain an
estimate for each combination of local and remote IP addresses (as each pairing
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 and therefore also supported by most modern IPv4 networks.
An endpoint MUST NOT reduce their MTU below this number, even if it receives
signals that indicate a smaller limit might exist.</t>

<t>Clients MUST ensure that the first packet in a connection, and any
retransmissions of those octets, has a QUIC packet size of least 1200 octets.
The packet size for a QUIC packet includes the QUIC header and integrity check,
but not the UDP or IP header.</t>

<t>The initial client packet SHOULD be padded to exactly 1200 octets unless the
client has a reasonable assurance that the PMTU is larger.  Sending a packet of
this size ensures that the network path supports an MTU of this size and helps
reduce the amplitude of amplification attacks caused by server responses toward
an unverified client address.</t>

<t>Servers MUST ignore an initial plaintext packet from a client if its total size
is less than 1200 octets.</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>

<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, unless the stream has become closed
in the appropriate direction.  See <xref target="solicited-state-transitions"/>.</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="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>
<section anchor="streams" title="Streams: QUIC’s Data Structuring Abstraction">

<t>Streams in QUIC provide a lightweight, ordered, and bidirectional byte-stream
abstraction modeled closely on HTTP/2 streams <xref target="RFC7540"/>.</t>

<t>Streams can be created either by the client or the server, 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 32-bit integer, referred to as the Stream
ID.  To avoid Stream ID collision, clients initiate streams using odd-numbered
Stream IDs; streams initiated by the server use even-numbered Stream IDs.</t>

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

<t>A QUIC endpoint cannot reuse a Stream ID.  Streams MUST be created in sequential
order.  Open streams can be used in any order.  Streams that are used out of
order result in lower-numbered streams in the same direction being counted as
open.</t>

<t>Stream IDs are usually encoded as a 32-bit integer, though the STREAM frame
(<xref target="frame-stream"/>) permits a shorter encoding when the leading bits of the
stream ID are zero.</t>

</section>
<section anchor="stream-states" title="Life of a Stream">

<t>The semantics of QUIC streams is based on HTTP/2 streams, and the lifecycle of a
QUIC stream therefore closely follows that of an HTTP/2 stream <xref target="RFC7540"/>,
with some differences to accommodate the possibility of out-of-order delivery
due to the use of multiple streams in QUIC.  The lifecycle of a QUIC stream is
shown in the following figure and described below.</t>

<figure title="Lifecycle of a stream" anchor="stream-lifecycle"><artwork><![CDATA[
                            +--------+
                            |        |
                            |  idle  |
                            |        |
                            +--------+
                                 |
                        send/recv STREAM/RST
                             recv MSD/SB
                                 |
                                 v
                 recv FIN/  +--------+    send FIN/
                 recv RST   |        |    send RST
                  ,---------|  open  |-----------.
                 /          |        |            \
                v           +--------+             v
         +----------+                          +----------+
         |   half   |                          |   half   |
         |  closed  |                          |  closed  |
         | (remote) |                          |  (local) |
         +----------+                          +----------+
             |                                        |
             |   send FIN/  +--------+    recv FIN/   |
              \  send RST   |        |    recv RST   /
               `----------->| closed |<-------------'
                            |        |
                            +--------+

   send:   endpoint sends this frame
   recv:   endpoint receives this frame

   STREAM: a STREAM frame
   FIN:    FIN flag in a STREAM frame
   RST:    RST_STREAM frame
   MSD:    MAX_STREAM_DATA frame
   SB:     STREAM_BLOCKED frame
]]></artwork></figure>

<t>Note that this diagram shows stream state transitions and the frames and flags
that affect those transitions only.  It is possible for a single frame to cause
two transitions: receiving a RST_STREAM frame, or a STREAM frame with the FIN
flag cause the stream state to move from “idle” to “open” and then immediately
to one of the “half-closed” states.</t>

<t>The recipient of a frame that changes stream state will have a delayed view of
the state of a stream while the frame is in transit.  Endpoints do not
coordinate the creation of streams; they are created unilaterally by either
endpoint.  Endpoints can use acknowledgments to understand the peer’s subjective
view of stream state at any given time.</t>

<t>In the absence of more specific guidance elsewhere in this document,
implementations SHOULD treat the receipt of a frame that is not expressly
permitted in the description of a state as a connection error (see
<xref target="error-handling"/>).</t>

<section anchor="idle" title="idle">

<t>All streams start in the “idle” state.</t>

<t>The following transitions are valid from this state:</t>

<t>Sending or receiving a STREAM or RST_STREAM frame causes the identified stream
to become “open”.  The stream identifier for a new stream is selected as
described in <xref target="stream-id"/>.  A RST_STREAM frame, or a STREAM frame with the FIN
flag set also causes a stream to become “half-closed”.</t>

<t>An endpoint might receive MAX_STREAM_DATA or STREAM_BLOCKED frames on
peer-initiated streams that are “idle” if there is loss or reordering of
packets.  Receiving these frames also causes the stream to become “open”.</t>

<t>An endpoint MUST NOT send a STREAM or RST_STREAM frame for a stream ID that is
higher than the peers advertised maximum stream ID (see
<xref target="frame-max-stream-id"/>).</t>

</section>
<section anchor="open" title="open">

<t>A stream in the “open” state may be used by both peers to send frames of any
type.  In this state, endpoints can send MAX_STREAM_DATA and MUST observe the
value advertised by its receiving peer (see <xref target="flow-control"/>).</t>

<t>Opening a stream causes all lower-numbered streams in the same direction to
become open.  Thus, opening an odd-numbered stream causes all “idle”,
odd-numbered streams with a lower identifier to become open and the same applies
to even numbered streams.  Endpoints open streams in increasing numeric order,
but loss or reordering can cause packets that open streams to arrive out of
order.</t>

<t>From the “open” state, either endpoint can send a frame with the FIN flag set,
which causes the stream to transition into one of the “half-closed” states. This
flag can be set on the frame that opens the stream, which causes the stream to
immediately become “half-closed”.  Once an endpoint has completed sending all
stream data and a STREAM frame with a FIN flag, the stream state becomes
“half-closed (local)”.  When an endpoint receives all stream data and a FIN flag
the stream state becomes “half-closed (remote)”.  An endpoint MUST NOT consider
the stream state to have changed until all data has been sent or received.</t>

<t>A RST_STREAM frame on an “open” stream also causes the stream to become
“half-closed”.  A stream that becomes “open” as a result of sending or receiving
RST_STREAM immediately becomes “half-closed”.  Sending a RST_STREAM frame causes
the stream to become “half-closed (local)”; receiving RST_STREAM causes the
stream to become “half-closed (remote)”.</t>

<t>Any frame type that mentions a stream ID can be sent in this state.</t>

</section>
<section anchor="half-closed-local" title="half-closed (local)">

<t>A stream that is in the “half-closed (local)” state MUST NOT be used for sending
on new STREAM frames.  Retransmission of data that has already been sent on
STREAM frames is permitted.  An endpoint MAY also send MAX_STREAM_DATA and
STOP_SENDING in this state.</t>

<t>An endpoint that closes a stream MUST NOT send data beyond the final offset that
it has chosen, see <xref target="state-closed"/> for details.</t>

<t>A stream transitions from this state to “closed” when a STREAM frame that
contains a FIN flag is received and all prior data has arrived, or when a
RST_STREAM frame is received.</t>

<t>An endpoint can receive any frame that mentions a stream ID in this state.
Providing flow-control credit using MAX_STREAM_DATA frames is necessary to
continue receiving flow-controlled frames.  In this state, a receiver MAY ignore
MAX_STREAM_DATA frames for this stream, which might arrive for a short period
after a frame bearing the FIN flag is sent.</t>

</section>
<section anchor="state-hc-remote" title="half-closed (remote)">

<t>A stream is “half-closed (remote)” when the stream is no longer being used by
the peer to send any data.  An endpoint will have either received all data that
a peer has sent or will have received a RST_STREAM frame and discarded any
received data.</t>

<t>Once all data has been either received or discarded, a sender is no longer
obligated to update the maximum received data for the connection.</t>

<t>Due to reordering, an endpoint could continue receiving frames for the stream
even after the stream is closed for sending.  Frames received after a peer
closes a stream SHOULD be discarded.  An endpoint MAY choose to limit the period
over which it ignores frames and treat frames that arrive after this time as
being in error.</t>

<t>An endpoint will know the final offset of the data it receives on a stream when
it reaches the “half-closed (remote)” state, see <xref target="final-offset"/> for details.</t>

<t>A stream in this state can be used by the endpoint to send any frame that
mentions a stream ID.  In this state, the endpoint MUST observe advertised
stream and connection data limits (see <xref target="flow-control"/>).</t>

<t>A stream transitions from this state to “closed” by completing transmission of
all data.  This includes sending all data carried in STREAM frames including
the terminal STREAM frame that contains a FIN flag.</t>

<t>A stream also becomes “closed” when the endpoint sends a RST_STREAM frame.</t>

</section>
<section anchor="state-closed" title="closed">

<t>The “closed” state is the terminal state for a stream.</t>

<t>Once a stream reaches this state, no frames can be sent that mention the stream.
Reordering might cause frames to be received after closing, see
<xref target="state-hc-remote"/>.</t>

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

<t>If an endpoint is no longer interested in the data being received, it MAY send a
STOP_SENDING frame on a stream in the “open” or “half-closed (local)” state to
prompt closure of the stream in the opposite direction.  This typically
indicates that the receiving application is no longer reading 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>Upon receipt of a STOP_SENDING frame on a stream in the “open” or “half-closed
(remote)” states, an endpoint MUST send a RST_STREAM with an error code of
QUIC_RECEIVED_RST.  If the STOP_SENDING frame is received on a stream that is
already in the “half-closed (local)” or “closed” states, a RST_STREAM frame MAY
still be sent in order to cancel retransmission of previously-sent STREAM
frames.</t>

<t>While STOP_SENDING frames are retransmittable, an implementation MAY choose not
to retransmit a lost STOP_SENDING frame if the stream has already been closed
in the appropriate direction since the frame was first generated.
See <xref target="packetization"/>.</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^64. 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.  Stream
0 is still subject to stream-level data limits and MAX_STREAM_DATA.</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="RFC7540"/>, 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 frames 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="RFC7540"/>.  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 MUST send BLOCKED frames to indicate it has data to write but is
blocked by lack of connection or stream flow control credit.  BLOCKED 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 MUST 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 MUST 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
the RST_STREAM frame.  Otherwise, the final offset is the offset of the end of
the data carried in STREAM frame marked with a FIN flag.</t>

<t>An endpoint will know the final offset for a stream when the stream enters the
“half-closed (remote)” state.  However, if there is reordering or loss, an
endpoint might learn the final offset prior to entering this state if it is
carried on a STREAM frame.</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 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 frame
(<xref target="frame-connection-close"/>). An endpoint MAY close the connection in this
manner, even if the error only affects a single stream.</t>

<t>A CONNECTION_CLOSE frame could be sent in a packet that is lost.  An endpoint
SHOULD be prepared to retransmit a packet containing a CONNECTION_CLOSE frame if
it receives more packets on a terminated connection.  Limiting the number of
retransmissions and the time over which this final packet is sent limits the
effort expended on terminated connections.</t>

<t>An endpoint that chooses not to retransmit packets containing CONNECTION_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 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>Some application protocols make other streams critical to that protocol.  An
application protocol does not need to inform the transport that a stream is
critical; it can instead generate appropriate errors in response to being
notified that the critical stream is closed.</t>

<t>An endpoint MAY send a RST_STREAM frame in the same packet as a CONNECTION_CLOSE
frame.</t>

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

<t>Error codes are 32 bits long, with the first two bits indicating the source of
the error code:</t>

<t><list style="hanging">
  <t hangText='0x00000000-0x3FFFFFFF:'>
  Application-specific error codes.  Defined by each application-layer protocol.</t>
  <t hangText='0x40000000-0x7FFFFFFF:'>
  Reserved for host-local error codes.  These codes MUST NOT be sent to a peer,
but MAY be used in API return codes and logs.</t>
  <t hangText='0x80000000-0xBFFFFFFF:'>
  QUIC transport error codes, including packet protection errors.  Applicable to
all uses of QUIC.</t>
  <t hangText='0xC0000000-0xFFFFFFFF:'>
  Cryptographic error codes.  Defined by the cryptographic handshake protocol
in use.</t>
</list></t>

<t>This section lists the defined QUIC transport error codes that may be used in a
CONNECTION_CLOSE or RST_STREAM frame. Error codes share a common code space.
Some error codes apply only to either streams or the entire connection and have
no defined semantics in the other context.</t>

<t><list style="hanging">
  <t hangText='NO_ERROR (0x80000000):'>
  An endpoint uses this with CONNECTION_CLOSE to signal that the connection is
being closed abruptly in the absence of any error.  An endpoint uses this with
RST_STREAM to signal that the stream is no longer wanted or in response to the
receipt of a RST_STREAM for that stream.</t>
  <t hangText='INTERNAL_ERROR (0x80000001):'>
  The endpoint encountered an internal error and cannot continue with the
connection.</t>
  <t hangText='CANCELLED (0x80000002):'>
  An endpoint sends this with RST_STREAM to indicate that the stream is not
wanted and that no application action was taken for the stream.  This error
code is not valid for use with CONNECTION_CLOSE.</t>
  <t hangText='FLOW_CONTROL_ERROR (0x80000003):'>
  An endpoint received more data than it permitted in its advertised data limits
(see <xref target="flow-control"/>).</t>
  <t hangText='STREAM_ID_ERROR (0x80000004):'>
  An endpoint received a frame for a stream identifier that exceeded its
advertised maximum stream ID.</t>
  <t hangText='STREAM_STATE_ERROR (0x80000005):'>
  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 (0x80000006):'>
  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 (0x80000007):'>
  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 (0x800001XX) if possible.</t>
  <t hangText='TRANSPORT_PARAMETER_ERROR (0x80000008):'>
  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 (0x80000009):'>
  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 (0x8000000A):'>
  An endpoint detected an error with protocol compliance that was not covered by
more specific error codes.</t>
  <t hangText='QUIC_RECEIVED_RST (0x80000035):'>
  Terminating stream because peer sent a RST_STREAM or STOP_SENDING.</t>
  <t hangText='FRAME_ERROR (0x800001XX):'>
  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 (0x80000106).</t>
</list></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 receives an STK from the server and then releases the IP address on
which it received the STK.  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 then spoofs
ACK frames to the server which cause the server to potentially drown the victim
in data.</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="RFC5226"/>.  Values with the first byte 0xff are
reserved for Private Use <xref target="RFC5226"/>.</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</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>
</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="2017" month="September"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-recovery"/>
</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="2017" month="September"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-tls"/>
</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="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='July' day='3' year='2017' />

<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-21' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-tls-tls13-21.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="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="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="RFC1981" target='https://www.rfc-editor.org/info/rfc1981'>
<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>
<date year='1996' month='August' />
<abstract><t>This document describes Path MTU Discovery for IP version 6.  It is largely derived from RFC 1191, which describes Path MTU Discovery for IP version 4.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='1981'/>
<seriesInfo name='DOI' value='10.17487/RFC1981'/>
</reference>



<reference  anchor="RFC5226" target='https://www.rfc-editor.org/info/rfc5226'>
<front>
<title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
<author initials='T.' surname='Narten' fullname='T. Narten'><organization /></author>
<author initials='H.' surname='Alvestrand' fullname='H. Alvestrand'><organization /></author>
<date year='2008' month='May' />
<abstract><t>Many protocols make use of identifiers consisting of constants and other well-known values.  Even after a protocol has been defined and deployment has begun, new values may need to be assigned (e.g., for a new option type in DHCP, or a new encryption or authentication transform for IPsec).  To ensure that such quantities have consistent values and interpretations across all implementations, their assignment must be administered by a central authority.  For IETF protocols, that role is provided by the Internet Assigned Numbers Authority (IANA).</t><t>In order for IANA to manage a given namespace prudently, it needs guidelines describing the conditions under which new values can be assigned or when modifications to existing values can be made.  If IANA is expected to play a role in the management of a namespace, IANA must be given clear and concise instructions describing that role.  This document discusses issues that should be considered in formulating a policy for assigning values to a namespace and provides guidelines for authors on the specific text that must be included in documents that place demands on IANA.</t><t>This document obsoletes RFC 2434.  This document specifies an Internet Best  Current Practices for the Internet Community, and requests discussion and  suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='RFC' value='5226'/>
<seriesInfo name='DOI' value='10.17487/RFC5226'/>
</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="RFC7540" 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>

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




    </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-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:
H4sIAKylxVkAA+y9a3vcxpUu+p3Pw/+AkT6EzO6m2NTFsjw3RpdYO7KoIWnn
5PF4ZLAbTWLUDfQAaFKMrPPbz7rXqgKalCa2t3fmKJOJRAKFuqxa9/Wu8Xi8
vdWV3aJ4kt35t29fPn2SHWbfPnsz/kPeFrPsm/WiK1eL4j38Pa9m2UkxXTdF
dtrkVbuqm+7O9lZ+dtYUl08yfDn8InvT1F09rRfbW7N6WuVLGH/W5PNuXBbd
fPxf63I67vTh8SLviraDR+F/n2QH+5Mvxvtfbm9N4Z/ndXP9JGu72fZWuWqe
ZF2zbruD/f0v9w/g202RPwkf3d66qpt35029XvF8tre2t9oOJv42X9QVDH1d
tNtbq/JJ9j1MbpS18FJTzFv42/WS/wKzXearVVmd/4Bv5+vuom6ebG9l2Rj/
X5aVVfsk+9972cvrojrPG/4hL/B/51Ue/7xuzp9kf6zr80XBPyiWebl4kv1n
U/7rOf14b1ov+VdNjYdQzMqubtLvfbOXnV7Uy7au/Pe+yZuurOLf0Be/qf9a
LhZ59MklPbzX8cP/eo4/3fTx7a2qbpZ5V14WT/BfGe3m+Pj506Pvnh//5Qm/
48kme1W3bfas6IppV9YVEcvTujqHY8V/wl87+MQdfjE5ZvxRWzRl0ZbVvJbB
s+xl1RVNVXTjZ0g3ffJpiml9WTTX/Lw7KPwz1r9sOLCbDm3w4IZOaOhDL/ey
k6ui69LPvMyr9Bef8A3b+tNXJ8mufwu7de4u3Kv8umj4gpbddbYDb+xmXa1X
Fkf5Wbe/W7SftPMp6d5MvsMk/KmbfwLfWsOke4d8UsD2p7+i77TV/Wa2eftx
S+Kb8Pzw+NVfxs+en7z84+uBi/Ak4pnheI6AVJGx3hneNKPS47p9V1az5KTu
jycHY+R49Lm8OS/gRO5cdN2qfXLvHnCSvfPFvdk333Uvyjs8zZNXR39+dXT8
MiWbPxcLuPQFUcaivlrUTdnu7e3dOK1jmNZJlb8rsq9hOUUVT27/y/H+o2hm
8rrN76o428ub6QVs4h5sOv77Hizq4f59+O/DB4/vP76Hj8KTF/ne9F3RtPRY
q/O7R2va3hqPx1l+1oLcmHb479OLskWGvV4WVZfNinlZFW3WXRTZtAaSr+f0
d2JPJmuylQimvSyL3gfpU7TTpjyDIaZ1VQkjAwaWny3K9gKfGWWrHObXZUwU
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
bDfYi3/J+T90xoPfqZspcYUhumbvTPG+aNB4ZRGOBgia8yBakzVdkRmI3yfe
MK/XjW0BZRxMOxFik/3JfraDLrOyypvrXbSi+gHKbw7/Ekw2M1HFOaU6U+uW
pQRNm3Oc/FSNczIhyMkA9i1GtfFTjlLRGbUwYvgKCUb81Dgfio1XRfh4f3Qh
CHauO39REHA0BVTNKA5cDLGUr8g/09+GzO+Cn4gdIHNCZNc8A4kw0hpg88+r
Wg4JruOaY4L//v2/fw9qo+QJPgETgsxL4MG1RMyZHaOSpnlYFpYqYCbw9dX6
zDx0P/yQ8gihEDZNi2xODqLo5uOQ0dXfCRd5d5SVbXJN/J3qcVgm0ozm1F5Y
8BbWGLEKPTMVasJqrvnWcZIU5xIATYiaghaxaPD0AIh6Xhu8v/9+PucpA0G/
QKn7Pkd7eHRDrvjkPtif68WMZILjdTBjG+4Zm+NqWtdsyZDna93k58psz1FQ
Nj2KVC6oRHhNiebC5SkA0pSXSIac40TuSRbpFQvU7zmLDKj2XfnDzqelluGz
94hpKpPaNaEkMebT61XBxPqCtGGKP/8ZiaNpu15ai6jxnb0EUysbibi0qkmQ
1Sg8dQ7cCH6WOMWdFclZNcAMYKdg4VO+EWFvZ/yuqhFo6XOqQ7bTKRs8K8/B
WpyVebXL9hYyOjjABYfcRbZWxAc1PDGTrEbK4jAPu3JKeplciOhEgIsYi5Uz
9kzR8sRBjsYh/BSJ7mugOFDtyiUMWEmQHx/XYJfJNaVhWnL4LG8JMFdnAJL1
WZTkCc0pzJ2x+/iCYpJku5GVWlaz2DBjt8X2Fp4vTnEve4Vvm8+iUS7J61D1
ku0u1e+CWqisZlADw8iyj7LimiYUxgQVmEw6N13+9hIY8BLTCVSHsliGPKUp
ol73Ber2dyyZAn1xews/ycvTKYHwtBAxbIHuzPbW/4t/trey/az/ZzLws4OB
n92n9yfwu/vZg+xh9ij7Inucffk5P9ve+l/j5D/bWz9NfoLR8Z5mO1/sZtlP
A0997n9g1IEVfM4fnMWGX8U2xM6jB7vDz/1Ms/jl9kJY5GsWLTv3DzYs5Jc+
EZWUm2fwa8xCnZ6UWbPhDyXc/AyzkPv44Ul2dw68HdndWPxTVHPwT3fcBRbJ
dYdsqh5vCxkG4r6xmC1pmiB268ZcFDVKd7Gk/5ss7gglIAYkkWnOSpfosSRn
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
/p4PhzA5GEKJXliuWy45Y9AFGDaOzeRdSJ1x+tVeGPLH1z9m3LAtVPNyXkJn
1qmLGb1eL7M/8HGT/eJGwp6pP7569SPPjMs2OPMxqrJ7JXmQh15B07GYBqV9
+P7+KNufwH8PeBv374fkCR6TSOLxKJs8GoG1xE89eoDD0BxQ51aSSicKe3/L
RHG3aKlafmlZLr/wLA+r+NphbgAGMYAY9v7OPAPfB3raebz7A9ro8JPTk2yH
nL+/kOU/SII7j+9NHt27f3AviQb8XPW0Ngs822fFIr+O4ya/pJcjkLK2EBxG
4/3Z1xr9MdXnV5oF3ZMPT7K7wMPHIte6slsU/3QnODQYi+jOx8QrI0p1uIcD
ya2OF+7Uq25XPaxVgGd9HIfPxc0eFyEHC8hl1MGHiUHI8GdFWyqUqymCL0ga
2NnuWtOJwOdRsydxShhHOKKU6v7u9e9IQjHvb7PJnq4oKKhhPbYAXs9wMTWX
DITV/GMk8alVp6lZ/wxirmxsm3uUwUm+A9fUvNgIvoTa3RjNzVm6xU0hS7ZK
bxkrVoHEJ895qm1iaeluyivoWBYERz+glVvQIGQ5YQiCbEHEhsqbPervaLfe
FchQjhmlZJlrXYeN3Bc8gxHnMLFoUbMPv7ZZoo4oYSDW3svWvNVXZrLi7K50
7trePGUaMvOnqg14HK6gAiZ6HqtkromkYaEurrl4nSc3yjhggHeVBhuLNSV1
3j0SSWdD9eg6HafPAymAhkd0gFYB2q7EfGGqqc1Nov2EpmEDJNOQDnQ9fvrh
bn/iylL6T/f8kriV6pnctJXqLhzeS5fCLd2VU1WNKPyM06rR58UKfsJErKK/
9cBojKWimHUJIm34Dlhq/CHTJbE/4xJhDhxrk/U5YN50DqxvyWh/bypPPK3h
pf8aysj32Gh5gorWDwYpkn0fZjIZmssPv8gsDjbP4uCXn8WgrvJLbfjrzUt9
/csvNdKImFn19aKIVd2kGMU8TeNYwxQ9oEvEohiYstXBRWgwQaGglkLna2oG
n3mOoi5TjohFopNSGuin3UbrkzgMHs5pnb0u3ncycdTpRig+sHpmtjuwgmE9
aGjCqWOEpL4mPjCGFSsR2nPSvLWus1NjqFcVzJLqLnlu2Z3XaxqN2fAdFn+J
EFfiunVVf+O5fNJhWOOAobWf5yvpIeaWN7A2lsV9q+LD3b70ViruP92TxaRI
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

-->

</rfc>

