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

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

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

<rfc ipr="trust200902" docName="draft-ietf-quic-transport-03" 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="May"/>

    <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.  Using UDP as the substrate, QUIC seeks to be compatible
with legacy clients and middleboxes.  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 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>

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

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

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

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

<t>QUIC versions are identified using a 32-bit value.</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 0x000000001 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, and for public resets.
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 and the Public Reset
packets 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 the first octet is set to 1 for long
headers and 0 for short headers.</t>
  <t hangText='Long Packet Type:'>
  The remaining seven bits of first octet of a long packet is 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.  {{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>01</c>
      <c>Version Negotiation</c>
      <c><xref target="packet-version"/></c>
      <c>02</c>
      <c>Client Initial</c>
      <c><xref target="packet-client-initial"/></c>
      <c>03</c>
      <c>Server Stateless Retry</c>
      <c><xref target="packet-server-stateless"/></c>
      <c>04</c>
      <c>Server Cleartext</c>
      <c><xref target="packet-server-cleartext"/></c>
      <c>05</c>
      <c>Client Cleartext</c>
      <c><xref target="packet-client-cleartext"/></c>
      <c>06</c>
      <c>0-RTT Protected</c>
      <c><xref target="packet-protected"/></c>
      <c>07</c>
      <c>1-RTT Protected (key phase 0)</c>
      <c><xref target="packet-protected"/></c>
      <c>08</c>
      <c>1-RTT Protected (key phase 1)</c>
      <c><xref target="packet-protected"/></c>
      <c>09</c>
      <c>Public Reset</c>
      <c><xref target="packet-public-reset"/></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 the first octet of a packet is the header
form.  This bit is set to 0 for the short header.</t>
  <t hangText='Connection ID Flag:'>
  The second bit (0x40) of the first octet 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.</t>
  <t hangText='Key Phase Bit:'>
  The third bit (0x20) of the first octet 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 the first octet 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>01</c>
      <c>1 octet</c>
      <c>02</c>
      <c>2 octets</c>
      <c>03</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 connection ID field contains a server-selected connection ID that the client
MUST use for subsequent packets, see <xref target="connection-id"/>.</t>

<t>The packet number 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>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, plus any PADDING
frames necessary to ensure that the packet is at least the minimum size (see
<xref target="packetization"/>).  This stream frame always starts at an offset of 0 (see
<xref target="stateless-retry"/>).</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 connection ID field in a Server Stateless Retry packet contains a server
selected value, see <xref target="connection-id"/>.</t>

<t>The packet number field echoes the packet number of the triggering client
packet.  This allows a client to verify that the server received its 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.  In effect, the next cryptographic handshake message is sent on a new
connection.  The new Client Initial packet is sent in a packet with a newly
randomized packet number and starting at a stream offset of 0.</t>

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

<t>The payload of the 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="packet-public-reset" title="Public Reset Packet">

<t>A Public Reset packet is only sent by servers and is used to abruptly terminate
communications. Public Reset is provided as an option of last resort for a
server that does not have access to the state of a connection.  This is intended
for use by a server that has lost state (for example, through a crash or
outage). 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>A Public Reset packet uses long headers with a type value of 0x09.</t>

<t>The connection ID and packet number of fields together contain octets 1 through
12 from the packet that triggered the reset.  For a client that sends a
connection ID on every packet, the Connection ID field is simply an echo of the
client’s Connection ID, and the Packet Number field includes an echo of the
client’s packet number.  Depending on the client’s packet number length it might
also include 0, 2, or 3 additional octets from the protected payload of the
client packet.</t>

<t>The version field contains the current QUIC version.</t>

<t>A Public Reset packet sent by a server indicates that it does not have the
state necessary to continue with a connection.  In this case, the server will
include the fields that prove that it originally participated in the connection
(see <xref target="public-reset-proof"/> for details).</t>

<t>Upon receipt of a Public Reset packet that contains a valid proof, a client MUST
tear down state associated with the connection.  The client MUST then cease
sending packets on the connection and SHOULD discard any subsequent packets that
arrive. A Public Reset that does not contain a valid proof MUST be ignored.</t>

<section anchor="public-reset-proof" title="Public Reset Proof">

<t>TODO: Details to be added.</t>

</section>
</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"/>).  If the client has received any packet from
the server, it uses the connection ID it received from the server.</t>

<t>When the server receives a Client Initial packet, it chooses a new value for the
connection ID and sends that in its response.  The server MUST send a new
connection ID in any packet that is sent in response to a Client Initial packet.
This includes Version Negotiation (<xref target="packet-version"/>), Server Stateless Retry
(<xref target="packet-server-stateless"/>), and the first Server Cleartext packet
(<xref target="packet-server-cleartext"/>).  The server MAY choose to use the value that the
client initially selects.</t>

<t>A server MUST NOT propose a different connection ID in response to a Client
Cleartext packet (<xref target="packet-client-cleartext"/>).  A Client Cleartext packet is
only sent after the server has committed to maintaining connection state.</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 by sending a
CONNECTION_CLOSE frame with the error code QUIC_SEQUENCE_NUMBER_LIMIT_REACHED
(connection termination is described in <xref target="termination"/>.)</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 over
the wire, up to 32 bits.  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 MAY
use a larger packet number size to safeguard against such reordering.</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"/>), Server Stateless Retry
(<xref target="packet-server-stateless"/>), and Public Reset (<xref target="packet-public-reset"/>)
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>0x03</c>
      <c>GOAWAY</c>
      <c><xref target="frame-goaway"/></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_NEEDED</c>
      <c><xref target="frame-stream-id-needed"/></c>
      <c>0x0b</c>
      <c>NEW_CONNECTION_ID</c>
      <c><xref target="frame-new-connection-id"/></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>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),
      truncate_connection_id(4),
      (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<2..2^8-4>;
      };
      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>An endpoint MAY use the following transport parameters:</t>

<t><list style="hanging">
  <t hangText='truncate_connection_id (0x0004):'>
  The truncated connection identifier parameter indicates that packets sent to
the peer can omit the connection ID.  This can be used by an endpoint where
the 5-tuple is sufficient to identify a connection.  This parameter is zero
length.  Omitting the parameter indicates that the endpoint relies on the
connection ID being present in every packet.</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
QUIC_VERSION_NEGOTIATION_MISMATCH 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
QUIC_VERSION_NEGOTIATION_MISMATCH 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.  This value is
set even if it did not send a version negotiation packet.</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 QUIC_VERSION_NEGOTIATION_MISMATCH error code if the
negotiated_version value is not included in the supported_versions list.  A
client MUST terminate with a QUIC_VERSION_NEGOTIATION_MISMATCH error code if
version negotiation occurred but it would have selected a different version
based on the value of the supported_versions list.</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 QUIC_ADDRESS_VALIDATION_FAILURE
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 which wishes to break linkability upon changing networks MUST
use the NEW_CONNECTION_ID 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 in addition to the packet number gap
associated with the connection ID that it does use.</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 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 three ways:</t>

<t><list style="numbers">
  <t>Explicit Shutdown: An endpoint sends a CONNECTION_CLOSE frame to
initiate a connection termination.  An endpoint may send a GOAWAY frame to
the peer prior to a CONNECTION_CLOSE to indicate that the connection will
soon be terminated.  A GOAWAY frame signals to the peer that any active
streams will continue to be processed, but the sender of the GOAWAY will not
initiate any additional streams and will not accept any new incoming streams.
On termination of the active streams, a CONNECTION_CLOSE may be sent.  If an
endpoint sends a CONNECTION_CLOSE frame while unterminated streams are active
(no FIN bit or RST_STREAM frames have been sent or received for one or more
streams), then the peer must assume that the streams were incomplete and were
abnormally terminated.</t>
  <t>Implicit Shutdown: The default idle timeout is a required parameter in
connection negotiation.  The maximum is 10 minutes.  If there is no network
activity for the duration of the idle timeout, the connection is closed.  By
default a CONNECTION_CLOSE frame will be sent.  A silent close option can be
enabled when it is expensive to send an explicit close, such as mobile
networks that must wake up the radio.</t>
  <t>Abrupt Shutdown: An endpoint may send a Public Reset packet at any time
during the connection to abruptly terminate an active connection.  A Public
Reset packet SHOULD only be used as a final recourse.  Commonly, a public
reset is expected to be sent when a packet on an established connection is
received by an endpoint that is unable decrypt the packet.  For instance, if
a server reboots mid-connection and loses any cryptographic state associated
with open connections, and then receives a packet on an open connection, it
should send a Public Reset packet in return.  (TODO: articulate rules around
when a public reset should be sent.)</t>
</list></t>

<t>TODO: Connections that are terminated are added to a TIME_WAIT list at the
server, so as to absorb any straggler packets in the network.  Discuss TIME_WAIT
list.</t>

</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-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">11FDOOSS</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">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>
  <t>The <spanx style="verb">OO</spanx> bits encode the length of the Offset header field as 0, 16, 32,
or 64 bits long.</t>
  <t>The <spanx style="verb">SS</spanx> bits encode the length of the Stream ID header field as 8, 16, 24,
or 32 bits.</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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|       [Data Length (16)]      |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    Stream ID (8/16/24/32)                   ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                      Offset (0/16/32/64)                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Stream Data (*)                      ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

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

<t><list style="hanging">
  <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 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='Stream Data:'>
  The bytes from the designated stream to be delivered.</t>
</list></t>

<t>A STREAM frame MUST have either non-zero data length or the FIN bit set.  When
the FIN flag is sent on an empty STREAM frame, the offset in the STREAM frame
MUST be one greater than the last data byte sent on this stream.</t>

<t>Stream multiplexing is achieved by interleaving STREAM frames from multiple
streams into one or more QUIC packets.  A single QUIC packet MAY bundle STREAM
frames from multiple 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 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.</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 cumulative and therefore irrevocable.
Once a packet has been acknowledged, even if it does not appear in a future ACK
frame, it is assumed to be acknowledged.</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 MUST
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 has more than 1 range of acknowledged
packets (i.e., whether the ACK Block Section contains a Num Blocks field).</t>
  <t>The two <spanx style="verb">LL</spanx> bits encode the length of the Largest Acknowledged field as 1, 2,
4, or 6 bytes long.</t>
  <t>The two <spanx style="verb">MM</spanx> bits encode the length of the ACK Block Length fields as 1, 2,
4, or 6 bytes long.</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/48)            ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|        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/48)            ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|  [Gap 1 (8)]  |       [ACK Block 1 Length (8/16/32/48)]     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|  [Gap 2 (8)]  |       [ACK Block 2 Length (8/16/32/48)]     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
                             ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|  [Gap N (8)]  |       [ACK Block N Length (8/16/32/48)]     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></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-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
QUIC_FLOW_CONTROL_RECEIVED_TOO_MUCH_DATA 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 QUIC_TOO_MANY_OPEN_STREAMS 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-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>

<t>An endpoint MAY send a STREAM_BLOCKED frame for a stream that exceeds the
maximum stream ID 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>

</section>
<section anchor="frame-stream-id-needed" title="STREAM_ID_NEEDED Frame">

<t>A sender sends a STREAM_ID_NEEDED frame (type=0x0a) when it wishes to open a
stream, but is unable to due to the maximum stream ID limit.</t>

<t>The STREAM_ID_NEEDED frame does not contain a payload.</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 of STREAM frames on
the identified stream.  A receiver of RST_STREAM can discard any data that it
already received on that stream.  An endpoint sends a RST_STREAM in response to
a RST_STREAM unless the stream is already closed.</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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Error Code (32)                        |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Stream ID (32)                         |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                       Final Offset (64)                       +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The fields are:</t>

<t><list style="hanging">
  <t hangText='Error code:'>
  A 32-bit error code which indicates why the stream is being closed.</t>
  <t hangText='Stream ID:'>
  The 32-bit Stream ID of the stream being terminated.</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-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-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. The PING frame SHOULD be used to keep a connection
alive when a stream is open. The default is to send a PING frame after 15
seconds of quiescence. A PING frame has no additional fields.</t>

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

<t>A server sends a NEW_CONNECTION_ID 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)                     +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></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>
</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.
(Ideally, a GOAWAY frame would be sent with enough time that all streams are
torn down.)  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.  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-goaway" title="GOAWAY Frame">

<t>An endpoint uses a GOAWAY frame (type=0x03) to initiate a graceful shutdown of a
connection.  The endpoints will continue to use any active streams, but the
sender of the GOAWAY will not initiate or accept any additional streams beyond
those indicated.  The GOAWAY 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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                  Largest Client Stream ID (32)                |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                  Largest Server Stream ID (32)                |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The fields of a GOAWAY frame are:</t>

<t><list style="hanging">
  <t hangText='Largest Client Stream ID:'>
  The highest-numbered, client-initiated stream on which the endpoint sending
the GOAWAY frame either sent data, or received and delivered data.  All
higher-numbered, client-initiated streams (that is, odd-numbered streams) are
implicitly reset by sending or receiving the GOAWAY frame.</t>
  <t hangText='Largest Server Stream ID:'>
  The highest-numbered, server-initiated stream on which the endpoint sending
the GOAWAY frame either sent data, or received and delivered data.  All
higher-numbered, server-initiated streams (that is, even-numbered streams) are
implicitly reset by sending or receiving the GOAWAY frame.</t>
</list></t>

<t>A GOAWAY frame indicates that any application layer actions on streams with
higher numbers than those indicated can be safely retried because no data was
exchanged.  An endpoint MUST set the value of the Largest Client or Server
Stream ID to be at least as high as the highest-numbered stream on which it
either sent data or received and delivered data to the application protocol that
uses QUIC.</t>

<t>An endpoint MAY choose a larger stream identifier if it wishes to allow for a
number of streams to be created.  This is especially valuable for peer-initiated
streams where packets creating new streams could be in transit; using a larger
stream number allows those streams to complete.</t>

<t>In addition to initiating a graceful shutdown of a connection, GOAWAY MAY be
sent immediately prior to sending a CONNECTION_CLOSE frame that is sent as a
result of detecting a fatal error.  Higher-numbered streams than those indicated
in the GOAWAY frame can then be retried.</t>

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

<t>The Path Maximum Transmission Unit (PTMU) is the maximum size of the entire IP
header, UDP header, and UDP payload. The UDP payload includes the QUIC public
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 1232 octets for
an IPv6 packet and 1252 octets for an IPv4 packet.  In the absence of extensions
to the IP header, padding to exactly these values will result in an IP packet
that is 1280 octets.</t>

<t>The initial client packet SHOULD be padded to exactly these values 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 1232 octets for IPv6 or 1252 octets for IPv4.</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 are cumulative,
so new frames containing updated information will be sent as described in
<xref target="frame-ack"/>.</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 generate an
ACK frame in response to a packet containing only ACK or PADDING frames.</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="life-of-a-stream" 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[
                            +--------+
                 recv RST   |        |    send RST
              ,-------------|  idle  |---------------.
             /              |        |                \
            |               +--------+                 |
            |                    |                     |
            |        send STREAM / recv STREAM         |
            |                    |                     |
            |                    v                     |
            |    recv FIN/  +--------+    send FIN/    |
            |    recv RST   |        |    send RST     |
            |     ,---------|  open  |-----------.     |
            |    /          |        |            \    |
            v   v           +--------+             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
]]></artwork></figure>

<t>Note that this diagram shows stream state transitions and the frames and flags
that affect those transitions only.  For the purpose of state transitions, the
FIN flag is processed as a separate event to the frame that bears it; a STREAM
frame with the FIN flag set can cause two state transitions.</t>

<t>The recipient of a frame which 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 frame causes the identified stream to become
“open”.  The stream identifier for a new stream is selected as described in
<xref target="stream-id"/>.  The same STREAM frame can also cause a stream to
immediately become “half-closed” if the FIN flag is set.</t>

<t>Receiving a STREAM frame on a peer-initiated stream (that is, a packet sent by a
server on an even-numbered stream or a client packet on an odd-numbered stream)
also causes all lower-numbered “idle” streams in the same direction to become
“open”.  This could occur if a peer begins sending on streams in a different
order to their creation, or it could happen if packets are lost or reordered in
transit.</t>

<t>A RST_STREAM frame on an “idle” stream causes the stream to become
“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>An endpoint might receive MAX_STREAM_DATA frames on peer-initiated streams that
are “idle” if there is loss or reordering of packets.</t>

<t>Receiving any frame other than STREAM, MAX_STREAM_DATA, STREAM_BLOCKED, or
RST_STREAM on a stream in this state MUST be treated as a connection error
(<xref target="error-handling"/>) of type YYYY.</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>From this 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.  An
endpoint sending an FIN flag causes the stream state to become “half-closed
(local)”.  An endpoint receiving a FIN flag causes the stream state to become
“half-closed (remote)” once all preceding data has arrived.  The receiving
endpoint MUST NOT consider the stream state to have changed until all data has
arrived.</t>

<t>A RST_STREAM frame on an “open” stream causes the stream to become
“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
RST_STREAM 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>An endpoint that receives a RST_STREAM frame (and which has not sent a FIN or a
RST_STREAM) MUST immediately respond with a RST_STREAM frame, and MUST NOT send
any more data on the stream.</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 can transition from this state to “closed” by completing transmission
of all data.  This includes sending all data carried in STREAM frames up
including the terminal STREAM frame that contains a FIN flag and receiving
acknowledgment from the peer for all data.</t>

<t>A stream becomes “closed” when the endpoint sends and receives acknowledgment of
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="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 QUIC_TOO_MANY_OPEN_STREAMS (<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 receiver sends MAX_DATA or MAX_STREAM_DATA frames to the sender to advertise
additional credit by sending the absolute byte offset in the connection or
stream which it is willing to receive.</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
QUIC_FLOW_CONTROL_RECEIVED_TOO_MUCH_DATA 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>Since streams are bidirectional, a sender of a RST_STREAM needs to know how many
bytes the peer has sent on the stream.  If an endpoint receives a RST_STREAM
frame and has sent neither a FIN nor a RST_STREAM, it MUST send a RST_STREAM in
response, bearing the offset of the last byte sent on this stream as the final
offset.</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 QUIC_STREAM_DATA_AFTER_TERMINATION error (see
<xref target="error-handling"/>).  A receiver SHOULD treat receipt of data at or beyond the
final offset as a QUIC_STREAM_DATA_AFTER_TERMINATION 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>Public Reset is not suitable for any error that can be signaled with a
CONNECTION_CLOSE or RST_STREAM frame.  Public Reset MUST NOT be sent 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 send a
Public Reset packet.</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 sent 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 QUIC_CLOSED_CRITICAL_STREAM.</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='QUIC_INTERNAL_ERROR (0x80000001):'>
  Connection has reached an invalid state.</t>
  <t hangText='QUIC_STREAM_DATA_AFTER_TERMINATION (0x80000002):'>
  There were data frames after the a fin or reset.</t>
  <t hangText='QUIC_INVALID_PACKET_HEADER (0x80000003):'>
  Control frame is malformed.</t>
  <t hangText='QUIC_INVALID_FRAME_DATA (0x80000004):'>
  Frame data is malformed.</t>
  <t hangText='QUIC_MULTIPLE_TERMINATION_OFFSETS (0x80000005):'>
  Multiple final offset values were received on the same stream</t>
  <t hangText='QUIC_STREAM_CANCELLED (0x80000006):'>
  The stream was cancelled</t>
  <t hangText='QUIC_CLOSED_CRITICAL_STREAM (0x80000007):'>
  A stream that is critical to the protocol was closed.</t>
  <t hangText='QUIC_MISSING_PAYLOAD (0x80000030):'>
  The packet contained no payload.</t>
  <t hangText='QUIC_INVALID_STREAM_DATA (0x8000002E):'>
  STREAM frame data is malformed.</t>
  <t hangText='QUIC_UNENCRYPTED_STREAM_DATA (0x8000003D):'>
  Received STREAM frame data is not encrypted.</t>
  <t hangText='QUIC_MAYBE_CORRUPTED_MEMORY (0x80000059):'>
  Received a frame which is likely the result of memory corruption.</t>
  <t hangText='QUIC_INVALID_RST_STREAM_DATA (0x80000006):'>
  RST_STREAM frame data is malformed.</t>
  <t hangText='QUIC_INVALID_CONNECTION_CLOSE_DATA (0x80000007):'>
  CONNECTION_CLOSE frame data is malformed.</t>
  <t hangText='QUIC_INVALID_GOAWAY_DATA (0x80000008):'>
  GOAWAY frame data is malformed.</t>
  <t hangText='QUIC_INVALID_WINDOW_UPDATE_DATA (0x80000039):'>
  WINDOW_UPDATE frame data is malformed.</t>
  <t hangText='QUIC_INVALID_BLOCKED_DATA (0x8000003A):'>
  BLOCKED frame data is malformed.</t>
  <t hangText='QUIC_INVALID_PATH_CLOSE_DATA (0x8000004E):'>
  PATH_CLOSE frame data is malformed.</t>
  <t hangText='QUIC_INVALID_ACK_DATA (0x80000009):'>
  ACK frame data is malformed.</t>
  <t hangText='QUIC_INVALID_VERSION_NEGOTIATION_PACKET (0x8000000A):'>
  Version negotiation packet is malformed.</t>
  <t hangText='QUIC_INVALID_PUBLIC_RST_PACKET (0x8000000b):'>
  Public RST packet is malformed.</t>
  <t hangText='QUIC_DECRYPTION_FAILURE (0x8000000c):'>
  There was an error decrypting.</t>
  <t hangText='QUIC_ENCRYPTION_FAILURE (0x8000000d):'>
  There was an error encrypting.</t>
  <t hangText='QUIC_PACKET_TOO_LARGE (0x8000000e):'>
  The packet exceeded kMaxPacketSize.</t>
  <t hangText='QUIC_PEER_GOING_AWAY (0x80000010):'>
  The peer is going away. May be a client or server.</t>
  <t hangText='QUIC_INVALID_STREAM_ID (0x80000011):'>
  A stream ID was invalid.</t>
  <t hangText='QUIC_INVALID_PRIORITY (0x80000031):'>
  A priority was invalid.</t>
  <t hangText='QUIC_TOO_MANY_OPEN_STREAMS (0x80000012):'>
  Too many streams already open.</t>
  <t hangText='QUIC_TOO_MANY_AVAILABLE_STREAMS (0x8000004c):'>
  The peer created too many available streams.</t>
  <t hangText='QUIC_PUBLIC_RESET (0x80000013):'>
  Received public reset for this connection.</t>
  <t hangText='QUIC_INVALID_VERSION (0x80000014):'>
  Invalid protocol version.</t>
  <t hangText='QUIC_INVALID_HEADER_ID (0x80000016):'>
  The Header ID for a stream was too far from the previous.</t>
  <t hangText='QUIC_INVALID_NEGOTIATED_VALUE (0x80000017):'>
  Negotiable parameter received during handshake had invalid value.</t>
  <t hangText='QUIC_DECOMPRESSION_FAILURE (0x80000018):'>
  There was an error decompressing data.</t>
  <t hangText='QUIC_NETWORK_IDLE_TIMEOUT (0x80000019):'>
  The connection timed out due to no network activity.</t>
  <t hangText='QUIC_HANDSHAKE_TIMEOUT (0x80000043):'>
  The connection timed out waiting for the handshake to complete.</t>
  <t hangText='QUIC_ERROR_MIGRATING_ADDRESS (0x8000001a):'>
  There was an error encountered migrating addresses.</t>
  <t hangText='QUIC_ERROR_MIGRATING_PORT (0x80000056):'>
  There was an error encountered migrating port only.</t>
  <t hangText='QUIC_EMPTY_STREAM_FRAME_NO_FIN (0x80000032):'>
  We received a STREAM_FRAME with no data and no fin flag set.</t>
  <t hangText='QUIC_FLOW_CONTROL_RECEIVED_TOO_MUCH_DATA (0x8000003b):'>
  The peer received too much data, violating flow control.</t>
  <t hangText='QUIC_FLOW_CONTROL_SENT_TOO_MUCH_DATA (0x8000003f):'>
  The peer sent too much data, violating flow control.</t>
  <t hangText='QUIC_FLOW_CONTROL_INVALID_WINDOW (0x80000040):'>
  The peer received an invalid flow control window.</t>
  <t hangText='QUIC_CONNECTION_IP_POOLED (0x8000003e):'>
  The connection has been IP pooled into an existing connection.</t>
  <t hangText='QUIC_TOO_MANY_OUTSTANDING_SENT_PACKETS (0x80000044):'>
  The connection has too many outstanding sent packets.</t>
  <t hangText='QUIC_TOO_MANY_OUTSTANDING_RECEIVED_PACKETS (0x80000045):'>
  The connection has too many outstanding received packets.</t>
  <t hangText='QUIC_CONNECTION_CANCELLED (0x80000046):'>
  The QUIC connection has been cancelled.</t>
  <t hangText='QUIC_BAD_PACKET_LOSS_RATE (0x80000047):'>
  Disabled QUIC because of high packet loss rate.</t>
  <t hangText='QUIC_PUBLIC_RESETS_POST_HANDSHAKE (0x80000049):'>
  Disabled QUIC because of too many PUBLIC_RESETs post handshake.</t>
  <t hangText='QUIC_TIMEOUTS_WITH_OPEN_STREAMS (0x8000004a):'>
  Disabled QUIC because of too many timeouts with streams open.</t>
  <t hangText='QUIC_TOO_MANY_RTOS (0x80000055):'>
  QUIC timed out after too many RTOs.</t>
  <t hangText='QUIC_ENCRYPTION_LEVEL_INCORRECT (0x8000002c):'>
  A packet was received with the wrong encryption level (i.e. it should
have been encrypted but was not.)</t>
  <t hangText='QUIC_VERSION_NEGOTIATION_MISMATCH (0x80000037):'>
  This connection involved a version negotiation which appears to have been
tampered with.</t>
  <t hangText='QUIC_IP_ADDRESS_CHANGED (0x80000050):'>
  IP address changed causing connection close.</t>
  <t hangText='QUIC_ADDRESS_VALIDATION_FAILURE (0x80000051):'>
  Client address validation failed.</t>
  <t hangText='QUIC_TOO_MANY_FRAME_GAPS (0x8000005d):'>
  Stream frames arrived too discontiguously so that stream sequencer buffer
maintains too many gaps.</t>
  <t hangText='QUIC_TOO_MANY_SESSIONS_ON_SERVER (0x80000060):'>
  Connection closed because server hit max number of sessions allowed.</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>truncate_connection_id</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="May"/>
  </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="May"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-tls"/>
</reference>




<reference  anchor="RFC2119" target='http://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="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='April' day='28' 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-20' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-tls-tls13-20.txt' />
</reference>



<reference  anchor="RFC3629" target='http://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='http://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='http://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='http://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='http://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='BCP' value='26'/>
<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='http://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='http://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="RFC4086" target='http://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="RFC7301" target='http://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="RFC7540" target='http://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-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 (#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:
H4sIAExtIlkAA+y9a3vcxpUu+r1+BUb6EDLTTZHUxbKcyWxapGLu6DYi7Zw8
TkYGu9EkRt2NHgBNipG9f/tZ91oFoEl6Ys32yRzNxRIJFOqyat3Xu8bjcWjL
dl48y+7927fHz59lB9m3h2/HX+dNMc1eredtuZoXH+Hv+XKanRSTdV1kp3W+
bFZV3d4L+dlZXVw+y/Dd+PPsbV211aSah2k1WeYLGH1a57N2XBbtbPyf63Iy
bvXZ8Txvi6YNU/jPs2x/d++L8e7jMIF/nVf19bOsaaehXNXPsrZeN+3+7u6X
u/shr4v8WfxeuKrqD+d1tV7xTEJoWpjv+3xeLWHQ66IJq/JZ9j3MaZQ18EJd
zBr42/WC/wKzXOSrVbk8/2sI+bq9qOpnIcvG8H9ZVi6bZ9n/3smOr4vleV7T
z3hN/ztf5smPq/r8WfaHqjqfF/TvYpGX82fZf9Tl/zqnn+5MqgX9pq5wy4tp
2VZ1+qVXO9npRbVoqqX70qu8bstl8gv61qvqb+V8nvuPLejRnZYf/V/n+NPh
z4ZlVS/ytrwsngX4LW7c+N3R8zffHb378zN63FNG9rJqmuywaItJW1ZLoofn
1fIczg7/CX9tYfR79F56lviTpqjLoimXs4pHzrLjZVvUy6IdHyJl9AmkLibV
ZVFf0+PxTPDPWP47fDY3nM/QGQ2cxsA3jneyk6uibTtfOM6XnZ/fOrzu9OnL
k3STv4XtOXd36GV+XdR85cr2OtuCF7azttJLiIP8crvdzpvbN7pDmjeS5yCJ
3m2vT+Aza5hs9zhPCtjtzm/oE83yYT3dsNu4CZ7Kjw7evfzz+PDo5PgPr/tE
/ixhefEs3gAlIl+8N7RJRoXvquZDuZymh/JwvLc/BpZFn8rr8wJ2/95F266a
Zw8eAFfYOZ8/mL76rn1R3sP5nbx886eXb94dd4jjT8Uc7nBB5z+vruZVXTY7
Ozs3zOcdzOdkmX8osm9gFcUymdXul+PdJ35K/K7N66o428nryQXs2g5sMf77
Aazl8e5D+L/Hj54+fPoAH4UnL/KdyYeibuixRqf2ANYSxuNxlp81wOknbQin
F2WDjHa9KJZtNi1m5bJosvaiyCYVkHM1o78TpzHZkK1EjuxkWfJ+mBbNpC7P
YIRJtVwKSwJWlJ/Ny+YCHxllqxxm1mZ8/qNsoSeL1wy5V13My/ysnMPt2gkH
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

-->

</rfc>

