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

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

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

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

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

    <abstract>


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



    </abstract>


    <note title="Note to Readers">


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

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


    </note>


  </front>

  <middle>


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

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

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

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

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

<t>The words “MUST”, “MUST NOT”, “SHOULD”, and “MAY” are used in this document.
It’s not shouting; when they are capitalized, they have the special meaning
defined in <xref target="RFC2119"/>.</t>

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

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

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

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

<t><list style="hanging">
  <t hangText='[x]'>
  Indicates that x is optional</t>
  <t hangText='{x}'>
  Indicates that x is encrypted</t>
  <t hangText='x (A)'>
  Indicates that x is A bits long</t>
  <t hangText='x (A/B/C) …'>
  Indicates that x is one of A, B, or C bits long</t>
  <t hangText='x (*) …'>
  Indicates that x is variable-length</t>
</list></t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>QUIC versions are identified using a 32-bit 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 0x00000001 of QUIC uses TLS as a cryptographic handshake protocol, as
described in <xref target="QUIC-TLS"/>.</t>

<t>Versions with the most significant 16 bits of the version number cleared are
reserved for use in future IETF consensus documents.</t>

<t>Versions that follow the pattern 0x?a?a?a?a are reserved for use in forcing
version negotiation to be exercised.  That is, any version number where the low
four bits of all octets is 1010 (in binary).  A client or server MAY advertise
support for any of these reserved versions.</t>

<t>Reserved version numbers will probably never represent a real protocol; a client
MAY use one of these version numbers with the expectation that the server will
initiate version negotiation; a server MAY advertise support for one of these
versions and can expect that clients ignore the value.</t>

<t>[[RFC editor: please remove the remainder of this section before
publication.]]</t>

<t>The version number for the final version of this specification (0x00000001), is
reserved for the version of the protocol that is published as an RFC.</t>

<t>Version numbers used to identify IETF drafts are created by adding the draft
number to 0xff000000.  For example, draft-ietf-quic-transport-13 would be
identified as 0xff00000D.</t>

<t>Implementors are encouraged to register version numbers of QUIC that they
are using for private experimentation on the
<eref target="https://github.com/quicwg/base-drafts/wiki/QUIC-Versions">github wiki</eref>.</t>

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

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

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

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

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

<figure title="Long Header Format" anchor="fig-long-header"><artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+
|1|   Type (7)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                       Connection ID (64)                      +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                       Packet Number (32)                      |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         Version (32)                          |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Payload (*)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>Long headers are used for packets that are sent prior to the completion of
version negotiation and establishment of 1-RTT keys. Once both conditions are
met, a sender SHOULD switch to sending short-form headers. While inefficient,
long headers MAY be used for packets encrypted with 1-RTT keys. The long form
allows for special packets - such as the Version Negotiation packet - to be
represented in this uniform fixed-length packet format. A long header contains
the following fields:</t>

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

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

<texttable title="Long Header Packet Types" anchor="long-packet-types">
      <ttcol align='left'>Type</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Section</ttcol>
      <c>0x01</c>
      <c>Version Negotiation</c>
      <c><xref target="packet-version"/></c>
      <c>0x02</c>
      <c>Client Initial</c>
      <c><xref target="packet-client-initial"/></c>
      <c>0x03</c>
      <c>Server Stateless Retry</c>
      <c><xref target="packet-server-stateless"/></c>
      <c>0x04</c>
      <c>Server Cleartext</c>
      <c><xref target="packet-server-cleartext"/></c>
      <c>0x05</c>
      <c>Client Cleartext</c>
      <c><xref target="packet-client-cleartext"/></c>
      <c>0x06</c>
      <c>0-RTT Protected</c>
      <c><xref target="packet-protected"/></c>
      <c>0x07</c>
      <c>1-RTT Protected (key phase 0)</c>
      <c><xref target="packet-protected"/></c>
      <c>0x08</c>
      <c>1-RTT Protected (key phase 1)</c>
      <c><xref target="packet-protected"/></c>
</texttable>

<t>The header form, packet type, connection ID, packet number and version fields of
a long header packet are version-independent. The types of packets defined in
<xref target="long-packet-types"/> are version-specific.  See <xref target="version-specific"/> for
details on how packets from different versions of QUIC are interpreted.</t>

<t>(TODO: Should the list of packet types be version-independent?)</t>

<t>The interpretation of the fields and the payload are specific to a version and
packet type.  Type-specific semantics for this version are described in the
following sections.</t>

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

<figure title="Short Header Format" anchor="fig-short-header"><artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+
|0|C|K| Type (5)|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                     [Connection ID (64)]                      +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                      Packet Number (8/16/32)                ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                     Protected Payload (*)                   ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

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

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

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

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

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

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

<t>A Version Negotiation packet has long headers with a type value of 0x01 and is
sent only by servers.  The Version Negotiation packet is a response to a client
packet that contains a version that is not supported by the server.</t>

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

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

<t>The payload of the Version Negotiation packet is a list of 32-bit versions which
the server supports, as shown below.</t>

<figure title="Version Negotiation Packet" anchor="version-negotiation-format"><artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    Supported Version 1 (32)                 ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                   [Supported Version 2 (32)]                ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
                               ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                   [Supported Version N (32)]                ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

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

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

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

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

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

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

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

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

<t>The packet number used for Client Initial packets is initialized with a random
value each time the new contents are created for the packet.  Retransmissions of
the packet contents increment the packet number by one, see
(<xref target="packet-numbers"/>).</t>

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

<t>The client uses the Client Initial Packet type for any packet that contains an
initial cryptographic handshake message.  This includes all cases where a new
packet containing the initial cryptographic message needs to be created, this
includes the packets sent after receiving a Version Negotiation
(<xref target="packet-version"/>) or Server Stateless Retry packet
(<xref target="packet-server-stateless"/>).</t>

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

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

<t>The packet number and connection ID fields echo the corresponding fields from
the triggering client packet.  This allows a client to verify that the server
received its packet.</t>

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

<t>After receiving a Server Stateless Retry packet, the client uses a new Client
Initial packet containing the next cryptographic handshake message.  The client
retains the state of its cryptographic handshake, but discards all transport
state.  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="connection-id" title="Connection ID">

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

<t>The client MUST choose a random connection ID and use it in Client Initial
packets (<xref target="packet-client-initial"/>) and 0-RTT packets (<xref target="packet-protected"/>).
If the client has received any packet from the server, it uses the connection ID
it received from the server for all packets other than 0-RTT packets.</t>

<t>When the server receives a Client Initial packet and decides to proceed with the
handshake, it chooses a new value for the connection ID and sends that in a
Server Cleartext packet.  The server MAY choose to use the value that the client
initially selects.</t>

<t>Once the client receives the connection ID that the server has chosen, it uses
this for all subsequent packets that it sends, except for any 0-RTT packets,
which all have the same connection ID.</t>

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

<t>The packet number is a 64-bit unsigned number and is used as part of a
cryptographic nonce for packet encryption.  Each endpoint maintains a separate
packet number for sending and receiving.  The packet number for sending MUST
increase by at least one after sending any packet, unless otherwise specified
(see <xref target="initial-packet-number"/>).</t>

<t>A QUIC endpoint MUST NOT reuse a packet number within the same connection (that
is, under the same cryptographic keys).  If the packet number for sending
reaches 2^64 - 1, the sender MUST close the connection without sending a
CONNECTION_CLOSE frame or any further packets; the sender MAY send a Public
Reset packet in response to further packets that it receives.</t>

<t>To reduce the number of bits required to represent the packet number over the
wire, only the least significant bits of the packet number are transmitted.  The
actual packet number for each packet is reconstructed at the receiver based on
the largest packet number received on a successfully authenticated packet.</t>

<t>A packet number is decoded by finding the packet number value that is closest to
the next expected packet.  The next expected packet is the highest received
packet number plus one.  For example, if the highest successfully authenticated
packet had a packet number of 0xaa82f30e, then a packet containing a 16-bit
value of 0x1f94 will be decoded as 0xaa831f94.</t>

<t>The sender MUST use a packet number size able to represent more than twice as
large a range than the difference between the largest acknowledged packet and
packet number being sent.  A peer receiving the packet will then correctly
decode the packet number, unless the packet is delayed in transit such that it
arrives after many higher-numbered packets have been received.  An endpoint
SHOULD use a large enough packet number encoding to allow the packet number to
be recovered even if the packet arrives after packets that are sent afterwards.</t>

<t>As a result, the size of the packet number encoding is at least one more than
the base 2 logarithm of the number of contiguous unacknowledged packet numbers,
including the new packet.</t>

<t>For example, if an endpoint has received an acknowledgment for packet 0x6afa2f,
sending a packet with a number of 0x6b4264 requires a 16-bit or larger packet
number encoding; whereas a 32-bit packet number is needed to send a packet with
a number of 0x6bc107.</t>

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

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

<t>The initial value for packet number MUST be selected from an uniform random
distribution between 0 and 2^31-1.  That is, the lower 31 bits of the packet
number are randomized.  <xref target="RFC4086"/> provides guidance on the generation of
random values.</t>

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

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

<t>A client MUST NOT generate a new initial packet number if it discards the server
packet.  This might happen if the information the client retransmits its Client
Initial packet.</t>

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

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

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

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

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

<t>The payload of cleartext packets and the plaintext after decryption of protected
payloads consists of a sequence of frames, as shown in <xref target="packet-frames"/>.</t>

<figure title="Contents of Protected Payload" anchor="packet-frames"><artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Frame 1 (*)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Frame 2 (*)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
                               ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Frame N (*)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>Protected payloads MUST contain at least one frame, and MAY contain multiple
frames and multiple frame types.</t>

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

<figure title="Generic Frame Layout" anchor="frame-layout"><artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|   Type (8)    |           Type-Dependent Fields (*)         ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

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

<texttable title="Frame Types" anchor="frame-types">
      <ttcol align='left'>Type Value</ttcol>
      <ttcol align='left'>Frame Type Name</ttcol>
      <ttcol align='left'>Definition</ttcol>
      <c>0x00</c>
      <c>PADDING</c>
      <c><xref target="frame-padding"/></c>
      <c>0x01</c>
      <c>RST_STREAM</c>
      <c><xref target="frame-rst-stream"/></c>
      <c>0x02</c>
      <c>CONNECTION_CLOSE</c>
      <c><xref target="frame-connection-close"/></c>
      <c>0x04</c>
      <c>MAX_DATA</c>
      <c><xref target="frame-max-data"/></c>
      <c>0x05</c>
      <c>MAX_STREAM_DATA</c>
      <c><xref target="frame-max-stream-data"/></c>
      <c>0x06</c>
      <c>MAX_STREAM_ID</c>
      <c><xref target="frame-max-stream-id"/></c>
      <c>0x07</c>
      <c>PING</c>
      <c><xref target="frame-ping"/></c>
      <c>0x08</c>
      <c>BLOCKED</c>
      <c><xref target="frame-blocked"/></c>
      <c>0x09</c>
      <c>STREAM_BLOCKED</c>
      <c><xref target="frame-stream-blocked"/></c>
      <c>0x0a</c>
      <c>STREAM_ID_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>0x0c</c>
      <c>STOP_SENDING</c>
      <c><xref target="frame-stop-sending"/></c>
      <c>0xa0 - 0xbf</c>
      <c>ACK</c>
      <c><xref target="frame-ack"/></c>
      <c>0xc0 - 0xff</c>
      <c>STREAM</c>
      <c><xref target="frame-stream"/></c>
</texttable>

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

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

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

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

<t>A QUIC connection begins with a client sending a handshake packet. The details
of the handshake mechanisms are described in <xref target="handshake"/>, but all of the
initial packets sent from the client to the server MUST use the long header
format and MUST specify the version of the protocol being used.</t>

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

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

<t>A server sends a Version Negotiation packet for every packet that it receives
with an unacceptable version.  This allows a server to process packets with
unsupported versions without retaining state.  Though either the initial client
packet or the version negotiation packet that is sent in response could be lost,
the client will send new packets until it successfully receives a response.</t>

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

<t>When the client receives a Version Negotiation packet from the server, it should
select an acceptable protocol version.  If the server lists an acceptable
version, the client selects that version and reattempts to create a connection
using that version.  Though the contents of a packet might not change in
response to version negotiation, a client MUST increase the packet number it
uses on every packet it sends.  Packets MUST continue to use long headers and
MUST include the new negotiated protocol version.</t>

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

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

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

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

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

<t>For a server to use a new version in the future, clients must correctly handle
unsupported versions. To help ensure this, a server SHOULD include a reserved
version (see <xref target="versions"/>) while generating a Version Negotiation packet.</t>

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

<t>A pseudorandom function that takes client address information (IP and port) and
the client selected version as input would ensure that there is sufficient
variability in the values that a server uses.</t>

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

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

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

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

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

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

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

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

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

<t>During connection establishment, both endpoints make authenticated declarations
of their transport parameters.  These declarations are made unilaterally by each
endpoint.  Endpoints are required to comply with the restrictions implied by
these parameters; the description of each parameter includes rules for its
handling.</t>

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

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

   enum {
      initial_max_stream_data(0),
      initial_max_data(1),
      initial_max_stream_id(2),
      idle_timeout(3),
      omit_connection_id(4),
      max_packet_size(5),
      stateless_reset_token(6),
      (65535)
   } TransportParameterId;

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

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

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

         case new_session_ticket:
            struct {};
      };
      TransportParameter parameters<30..2^16-1>;
   } TransportParameters;
]]></artwork></figure>

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

<t>QUIC encodes transport parameters into a sequence of octets, which are then
included in the cryptographic handshake.  Once the handshake completes, the
transport parameters declared by the peer are available.  Each endpoint
validates the value provided by its peer.  In particular, version negotiation
MUST be validated (see <xref target="version-validation"/>) before the connection
establishment is considered properly complete.</t>

<t>Definitions for each of the defined transport parameters are included in
<xref target="transport-parameter-definitions"/>.</t>

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

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

<t><list style="hanging">
  <t hangText='initial_max_stream_data (0x0000):'>
  The initial stream maximum data parameter contains the initial value for the
maximum data that can be sent on any newly created stream.  This parameter is
encoded as an unsigned 32-bit integer in units of octets.  This is equivalent
to an implicit MAX_STREAM_DATA frame (<xref target="frame-max-stream-data"/>) being sent on
all streams immediately after opening.</t>
  <t hangText='initial_max_data (0x0001):'>
  The initial maximum data parameter contains the initial value for the maximum
amount of data that can be sent on the connection.  This parameter is encoded
as an unsigned 32-bit integer in units of 1024 octets.  That is, the value
here is multiplied by 1024 to determine the actual maximum value.  This is
equivalent to sending a MAX_DATA (<xref target="frame-max-data"/>) for the connection
immediately after completing the handshake.</t>
  <t hangText='initial_max_stream_id (0x0002):'>
  The initial maximum stream ID parameter contains the initial maximum stream
number the peer may initiate, encoded as an unsigned 32-bit integer.  This is
equivalent to sending a MAX_STREAM_ID (<xref target="frame-max-stream-id"/>) immediately
after completing the handshake.</t>
  <t hangText='idle_timeout (0x0003):'>
  The idle timeout is a value in seconds that is encoded as an unsigned 16-bit
integer.  The maximum value is 600 seconds (10 minutes).</t>
  <t hangText='stateless_reset_token (0x0005):'>
  The Stateless Reset Token is used in verifying a stateless reset, see
<xref target="stateless-reset"/>.  This parameter is a sequence of 16 octets.</t>
</list></t>

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

<t><list style="hanging">
  <t hangText='omit_connection_id (0x0004):'>
  The omit connection identifier parameter indicates that packets sent to the
endpoint that advertises this parameter can omit the connection ID.  This can
be used by an endpoint where it knows that source and destination IP address
and port are sufficient for it to identify a connection.  This parameter is
zero length.  Absence this parameter indicates that the endpoint relies on the
connection ID being present in every packet.</t>
  <t hangText='max_packet_size (0x0005):'>
  The maximum packet size parameter places a limit on the size of packets that
the endpoint is willing to receive, encoded as an unsigned 16-bit integer.
This indicates that packets larger than this limit will be dropped.  The
default for this parameter is the maximum permitted UDP payload of 65527.
Values below 1200 are invalid.  This limit only applies to protected packets
(<xref target="packet-protected"/>).</t>
</list></t>

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

<t>Transport parameters from the server MUST be remembered by the client for use
with 0-RTT data.  If the TLS NewSessionTicket message includes the
quic_transport_parameters extension, then those values are used for the server
values when establishing a new connection using that ticket.  Otherwise, the
transport parameters that the server advertises during connection establishment
are used.</t>

<t>A server can remember the transport parameters that it advertised, or store an
integrity-protected copy of the values in the ticket and recover the information
when accepting 0-RTT data.  A server uses the transport parameters in
determining whether to accept 0-RTT data.</t>

<t>A server MAY accept 0-RTT and subsequently provide different values for
transport parameters for use in the new connection.  If 0-RTT data is accepted
by the server, the server MUST NOT reduce any limits or alter any values that
might be violated by the client with its 0-RTT data.  In particular, a server
that accepts 0-RTT data MUST NOT set values for initial_max_data or
initial_max_stream_data that are smaller than the remembered value of those
parameters.  Similarly, a server MUST NOT reduce the value of
initial_max_stream_id.</t>

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

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

<t>New transport parameters can be used to negotiate new protocol behavior.  An
endpoint MUST ignore transport parameters that it does not support.  Absence of
a transport parameter therefore disables any optional protocol feature that is
negotiated using the parameter.</t>

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

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

<t>The transport parameters include three fields that encode version information.
These retroactively authenticate the version negotiation (see
<xref target="version-negotiation"/>) that is performed prior to the cryptographic handshake.</t>

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

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

<t><list style="symbols">
  <t>The negotiated_version is the version that was finally selected for use.  This
MUST be identical to the value that is on the packet that carries the
ClientHello.  A server that receives a negotiated_version that does not match
the version of QUIC that is in use MUST terminate the connection with a
VERSION_NEGOTIATION_ERROR error code.</t>
  <t>The initial_version is the version that the client initially attempted to use.
If the server did not send a version negotiation packet <xref target="packet-version"/>,
this will be identical to the negotiated_version.</t>
</list></t>

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

<t>A server that does not maintain state for every packet it receives (i.e., a
stateless server) uses a different process. If the initial and negotiated
versions are the same, a stateless server can accept the value.</t>

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

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

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

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

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

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

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

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

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

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

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

<t>This technique is used primarily to avoid QUIC from being used for traffic
amplification attack.  In such an attack, a packet is sent to a server with
spoofed source address information that identifies a victim.  If a server
generates more or larger packets in response to that packet, the attacker can
use the server to send more data toward the victim than it would be able to send
on its own.</t>

<t>Several methods are used in QUIC to mitigate this attack.  Firstly, the initial
handshake packet is padded to at least 1280 octets.  This allows a server to
send a similar amount of data without risking causing an amplification attack
toward an unproven remote address.</t>

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

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

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

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

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

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

<t>If QUIC decides to request address validation, it provides the cryptographic
handshake with a token.  The contents of this token are consumed by the server
that generates the token, so there is no need for a single well-defined format.
A token could include information about the claimed client address (IP and
port), a timestamp, and any other supplementary information the server will need
to validate the token in the future.</t>

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

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

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

<t>A server MAY provide clients with an address validation token during one
connection that can be used on a subsequent connection.  Address validation is
especially important with 0-RTT because a server potentially sends a significant
amount of data to a client in response to 0-RTT data.</t>

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

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

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

<t>An address validation token MUST be difficult to guess.  Including a large
enough random value in the token would be sufficient, but this depends on the
server remembering the value it sends to clients.</t>

<t>A token-based scheme allows the server to offload any state associated with
validation to the client.  For this design to work, the token MUST be covered by
integrity protection against modification or falsification by clients.  Without
integrity protection, malicious clients could generate or guess values for
tokens that would be accepted by the server.  Only the server requires access to
the integrity protection key for tokens.</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t><list style="numbers">
  <t>Explicit Shutdown: An endpoint sends a CONNECTION_CLOSE frame to
terminate the connection.  An endpoint MAY use application-layer mechanisms
prior to a CONNECTION_CLOSE to indicate that the connection will soon be
terminated.  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>Stateless Reset: An endpoint that loses state can use this procedure to cause
the connection to terminate early, see <xref target="stateless-reset"/> for details.</t>
</list></t>

<t>After receiving either a CONNECTION_CLOSE frame or a Public Reset, an
endpoint MUST NOT send additional packets on that connection. After
sending either a CONNECTION_CLOSE frame or a Public Reset packet,
implementations MUST NOT send any non-closing packets on that
connection. If additional packets are received after this time and
before idle_timeout seconds has passed, implementations SHOULD respond
to them by sending a CONNECTION_CLOSE (which MAY just be a duplicate
of the previous CONNECTION_CLOSE packet) but MAY also send a Public
Reset packet.  Implementations SHOULD throttle these responses, for
instance by exponentially backing off the number of packets which are
received before sending a response.  After this time, implementations
SHOULD respond to unexpected packets with a Public Reset packet.</t>

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

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

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

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

<figure><artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+
|0|C|K|  00001  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                     [Connection ID (64)]                      +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                                                               +
|                                                               |
+                   Stateless Reset Token (128)                 +
|                                                               |
+                                                               +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Random Octets (*)                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

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

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

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

<t>After the Stateless Reset Token, the endpoint pads the message with an arbitrary
number of octets containing random values.</t>

<t>This design ensures that a stateless reset packet is - to the extent possible -
indistinguishable from a regular packet.</t>

<t>A stateless reset is not appropriate for signaling error conditions.  An
endpoint that wishes to communicate a fatal connection error MUST use a
CONNECTION_CLOSE frame if it has sufficient state to do so.</t>

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

<t>A client detects a potential stateless reset when a packet with a short header
cannot be decrypted.  The client then performs a constant-time comparison of the
16 octets that follow the Connection ID with the Stateless Reset Token provided
by the server in its transport parameters.  If this comparison is successful,
the connection MUST be terminated immediately.  Otherwise, the packet can be
discarded.</t>

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

<t>The stateless reset token MUST be difficult to guess.  In order to create a
Stateless Reset Token, a server could randomly generate <xref target="RFC4086"/> a secret
for every connection that it creates.  However, this presents a coordination
problem when there are multiple servers in a cluster or a storage problem for a
server that might lose state.  Stateless reset specifically exists to handle the
case where state is lost, so this approach is suboptimal.</t>

<t>A single static key can be used across all connections to the same endpoint by
generating the proof using a second iteration of a preimage-resistant function
that takes three inputs: the static key, a the connection ID for the connection
(see <xref target="connection-id"/>), and an identifier for the server instance.  A server
could use HMAC <xref target="RFC2104"/> (for example, HMAC(static_key, server_id ||
connection_id)) or HKDF <xref target="RFC5869"/> (for example, using the static key as input
keying material, with server and connection identifiers as salt).  The output of
this function is truncated to 16 octets to produce the Stateless Reset Token
for that connection.</t>

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

<t>This design relies on the client always sending a connection ID in its packets
so that the server can use the connection ID from a packet to reset the
connection.  A server that uses this design cannot allow clients to omit a
connection ID (that is, it cannot use the truncate_connection_id transport
parameter <xref target="transport-parameter-definitions"/>).</t>

<t>Revealing the Stateless Reset Token allows any entity to terminate the
connection, so a value can only be used once.  This method for choosing the
Stateless Reset Token means that the combination of server instance, connection
ID, and static key cannot occur for another connection.  A connection ID from a
connection that is reset by revealing the Stateless Reset Token cannot be
reused for new connections at the same server without first changing to use a
different static key or server identifier.</t>

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

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

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

<t>The PADDING frame (type=0x00) has no semantic value.  PADDING frames can be used
to increase the size of a packet.  Padding can be used to increase an initial
client packet to the minimum required size, or to provide protection against
traffic analysis for protected packets.</t>

<t>A PADDING frame has no content.  That is, a PADDING frame consists of the single
octet that identifies the frame as a PADDING frame.</t>

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

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

<t>After sending a RST_STREAM, an endpoint ceases transmission 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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Stream ID (32)                         |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Error Code (32)                        |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                       Final Offset (64)                       +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The fields are:</t>

<t><list style="hanging">
  <t hangText='Stream ID:'>
  The 32-bit Stream ID of the stream being terminated.</t>
  <t hangText='Error code:'>
  A 32-bit error code which indicates why the stream is being closed.</t>
  <t hangText='Final offset:'>
  A 64-bit unsigned integer indicating the absolute byte offset of the end of
data written on this stream by the RST_STREAM sender.</t>
</list></t>

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

<t>An endpoint sends a CONNECTION_CLOSE frame (type=0x02) to notify its peer that
the connection is being closed.  If there are open streams that haven’t been
explicitly closed, they are implicitly closed when the connection is closed.
The frame is as follows:</t>

<figure><artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Error Code (32)                        |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|   Reason Phrase Length (16)   |      [Reason Phrase (*)]    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

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

<t><list style="hanging">
  <t hangText='Error Code:'>
  A 32-bit error code which indicates the reason for closing this connection.</t>
  <t hangText='Reason Phrase Length:'>
  A 16-bit unsigned number specifying the length of the reason phrase in bytes.
Note that a CONNECTION_CLOSE frame cannot be split between packets, so in
practice any limits on packet size will also limit the space available for a
reason phrase.</t>
  <t hangText='Reason Phrase:'>
  A human-readable explanation for why the connection was closed.  This can be
zero length if the sender chooses to not give details beyond the Error Code.
This SHOULD be a UTF-8 encoded string <xref target="RFC3629"/>.</t>
</list></t>

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

<t>The MAX_DATA frame (type=0x04) is used in flow control to inform the peer of
the maximum amount of data that can be sent on the connection as a whole.</t>

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

<figure><artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                        Maximum Data (64)                      +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

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

<t><list style="hanging">
  <t hangText='Maximum Data:'>
  A 64-bit unsigned integer indicating the maximum amount of data that can be
sent on the entire connection, in units of 1024 octets.  That is, the updated
connection-level data limit is determined by multiplying the encoded value by
1024.</t>
</list></t>

<t>All data sent in STREAM frames counts toward this limit, with the exception of
data on stream 0.  The sum of the largest received offsets on all streams -
including closed streams, but excluding stream 0 - MUST NOT exceed the value
advertised by a receiver.  An endpoint MUST terminate a connection with a
QUIC_FLOW_CONTROL_RECEIVED_TOO_MUCH_DATA error if it receives more data than the
maximum data value that it has sent, unless this is a result of a change in the
initial limits (see <xref target="zerortt-parameters"/>).</t>

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

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

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

<figure><artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Stream ID (32)                         |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                    Maximum Stream Data (64)                   +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

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

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

<t>When counting data toward this limit, an endpoint accounts for the largest
received offset of data that is sent or received on the stream.  Loss or
reordering can mean that the largest received offset on a stream can be greater
than the total size of data received on that stream.  Receiving STREAM frames
might not increase the largest received offset.</t>

<t>The data sent on a stream MUST NOT exceed the largest maximum stream data value
advertised by the receiver.  An endpoint MUST terminate a connection with a
FLOW_CONTROL_ERROR error if it receives more data than the largest maximum
stream data that it has sent for the affected stream, unless this is a result of
a change in the initial limits (see <xref target="zerortt-parameters"/>).</t>

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

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

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

<figure><artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    Maximum Stream ID (32)                     |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

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

<t><list style="hanging">
  <t hangText='Maximum Stream ID:'>
  ID of the maximum peer-initiated stream ID for the connection.</t>
</list></t>

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

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

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

<t>Endpoints can use PING frames (type=0x07) to verify that their peers are still
alive or to check reachability to the peer. The PING frame contains no
additional fields. The receiver of a PING frame simply needs to acknowledge the
packet containing this frame. 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-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-new-connection-id" title="NEW_CONNECTION_ID Frame">

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

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

<figure><artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|       Sequence (16)           |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                        Connection ID (64)                     +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                                                               +
|                                                               |
+                   Stateless Reset Token (128)                 +
|                                                               |
+                                                               +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The fields are:</t>

<t><list style="hanging">
  <t hangText='Sequence:'>
  A 16-bit sequence number.  This value starts at 0 and increases by 1 for each
connection ID that is provided by the server.  The sequence value can wrap;
the value 65535 is followed by 0.  When wrapping the sequence field, the
server MUST ensure that a value with the same sequence has been received and
acknowledged by the client.  The connection ID that is assigned during the
handshake is assumed to have a sequence of 65535.</t>
  <t hangText='Connection ID:'>
  A 64-bit connection ID.</t>
  <t hangText='Stateless Reset Token:'>
  A 128-bit value that will be used to for a stateless reset when the associated
connection ID is used (see <xref target="stateless-reset"/>).</t>
</list></t>

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

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

<figure><artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Stream ID (32)                         |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Error Code (32)                        |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The fields are:</t>

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

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

<t>Receivers send ACK frames to inform senders which packets they have received and
processed, as well as which packets are considered missing.  The ACK frame
contains between 1 and 256 ACK blocks.  ACK blocks are ranges of acknowledged
packets. Implementations SHOULD NOT generate ACK packets in response to packets
which only contain ACKs. However, they SHOULD ACK those packets when sending
ACKs for other packets.</t>

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

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

<t>To limit receiver state or the size of ACK frames, a receiver MAY limit the
number of ACK blocks it sends.  A receiver can do this even without receiving
acknowledgment of its ACK frames, with the knowledge this could cause the sender
to unnecessarily retransmit some data.  When this is necessary, the receiver
SHOULD acknowledge newly received packets and stop acknowledging packets
received in the past.</t>

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

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

<t>QUIC ACK frames contain a timestamp section with up to 255 timestamps.
Timestamps enable better congestion control, but are not required for correct
loss recovery, and old timestamps are less valuable, so it is not guaranteed
every timestamp will be received by the sender.  A receiver SHOULD send a
timestamp exactly once for each received packet containing retransmittable
frames. A receiver MAY send timestamps for non-retransmittable packets.
A receiver MUST not send timestamps in unprotected packets.</t>

<t>A sender MAY intentionally skip packet numbers to introduce entropy into the
connection, to avoid opportunistic acknowledgement attacks.  The sender SHOULD
close the connection if an unsent packet number is acknowledged.  The format of
the ACK frame is efficient at expressing blocks of missing packets; skipping
packet numbers between 1 and 255 effectively provides up to 8 bits of efficient
entropy on demand, which should be adequate protection against most
opportunistic acknowledgement attacks.</t>

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

<t><list style="symbols">
  <t>The first three bits must be set to 101 indicating that this is an ACK frame.</t>
  <t>The <spanx style="verb">N</spanx> bit indicates whether the frame contains a Num Blocks field.</t>
  <t>The two <spanx style="verb">LL</spanx> bits encode the length of the Largest Acknowledged field.
The values 00, 01, 02, and 03 indicate lengths of 8, 16, 32, and 64
bits respectively.</t>
  <t>The two <spanx style="verb">MM</spanx> bits encode the length of the ACK Block Length fields.
The values 00, 01, 02, and 03 indicate lengths of 8, 16, 32, and 64
bits respectively.</t>
</list></t>

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

<figure title="ACK Frame Format" anchor="ack-format"><artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|[Num Blocks(8)]|   NumTS (8)   |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                Largest Acknowledged (8/16/32/64)            ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|        ACK Delay (16)         |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                     ACK Block Section (*)                   ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                     Timestamp Section (*)                   ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

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

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

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

<t>The ACK Block Section contains between one and 256 blocks of packet numbers
which have been successfully received. If the Num Blocks field is absent, only
the First ACK Block length is present in this section. Otherwise, the Num Blocks
field indicates how many additional blocks follow the First ACK Block Length
field.</t>

<figure title="ACK Block Section" anchor="ack-block-format"><artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|              First ACK Block Length (8/16/32/64)            ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|  [Gap 1 (8)]  |       [ACK Block 1 Length (8/16/32/64)]     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|  [Gap 2 (8)]  |       [ACK Block 2 Length (8/16/32/64)]     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
                             ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|  [Gap N (8)]  |       [ACK Block N Length (8/16/32/64)]     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

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

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

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

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

<figure title="Timestamp Section" anchor="timestamp-format"><artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+
| [Delta LA (8)]|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    [First Timestamp (32)]                     |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|[Delta LA 1(8)]| [Time Since Previous 1 (16)]  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|[Delta LA 2(8)]| [Time Since Previous 2 (16)]  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
                       ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|[Delta LA N(8)]| [Time Since Previous N (16)]  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

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

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

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

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

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

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

</section>
</section>
<section anchor="ack-frames-and-packet-protection" title="ACK Frames and Packet Protection">

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

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

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

<t>Packets that a client sends with 0-RTT packet protection MUST be acknowledged by
the server in packets protected by 1-RTT keys.  This can mean that the client is
unable to use these acknowledgments if the server cryptographic handshake
messages are delayed or lost.  Note that the same limitation applies to other
data sent by the server protected by the 1-RTT keys.</t>

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

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

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

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

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

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

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

<figure title="STREAM Frame Format" anchor="stream-format"><artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    Stream ID (8/16/24/32)                   ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                      Offset (0/16/32/64)                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|       [Data Length (16)]      |        Stream Data (*)      ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

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

<t><list style="hanging">
  <t hangText='Stream ID:'>
  The stream ID of the stream (see <xref target="stream-id"/>).</t>
  <t hangText='Offset:'>
  A variable-sized unsigned number specifying the byte offset in the stream for
the data in this STREAM frame.  When the offset length is 0, the offset is 0.
The first byte in the stream has an offset of 0.  The largest offset delivered
on a stream - the sum of the re-constructed offset and data length - MUST be
less than 2^64.</t>
  <t hangText='Data Length:'>
  An optional 16-bit unsigned number specifying the length of the Stream Data
field in this STREAM frame.  This field is present when the <spanx style="verb">D</spanx> bit is set to
1.</t>
  <t hangText='Stream Data:'>
  The bytes from the designated stream to be delivered.</t>
</list></t>

<t>A stream frame’s Stream Data MUST NOT be empty, unless the FIN bit is set.  When
the FIN flag is sent on an empty STREAM frame, the offset in the STREAM frame is
the offset of the next byte that would be sent.</t>

<t>Stream multiplexing is achieved by interleaving STREAM frames from multiple
streams into one or more QUIC packets.  A single QUIC packet can include
multiple STREAM frames from one or more streams.</t>

<t>Implementation note: One of the benefits of QUIC is avoidance of head-of-line
blocking across multiple streams.  When a packet loss occurs, only streams with
data in that packet are blocked waiting for a retransmission to be received,
while other streams can continue making progress.  Note that when data from
multiple streams is bundled into a single QUIC packet, loss of that packet
blocks all those streams from making progress.  An implementation is therefore
advised to bundle as few streams as necessary in outgoing packets without losing
transmission efficiency to underfilled packets.</t>

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

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

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

<t>In the absence of these mechanisms, QUIC endpoints SHOULD NOT send IP packets
larger than 1280 octets. Assuming the minimum IP header size, this results in
a QUIC packet size of 1232 octets for IPv6 and 1252 octets for IPv4.</t>

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

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

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

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

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

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

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

<t>A sender SHOULD minimize per-packet bandwidth and computational costs by
bundling as many frames as possible within a QUIC packet.  A sender MAY wait for
a short period of time to bundle multiple frames before sending a packet that is
not maximally packed, to avoid sending out large numbers of small packets.  An
implementation may use heuristics about expected application sending behavior to
determine whether and for how long to wait.  This waiting period is an
implementation decision, and an implementation should be careful to delay
conservatively, since any delay is likely to increase application-visible
latency.</t>

<t>Regular QUIC packets are “containers” of frames; a packet is never retransmitted
whole.  How an endpoint handles the loss of the frame depends on the type of the
frame.  Some frames are simply retransmitted, some have their contents moved to
new frames, and others are never retransmitted.</t>

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

<t><list style="symbols">
  <t>All application data sent in STREAM frames MUST be retransmitted, unless the
endpoint has sent a RST_STREAM for that stream.  When an endpoint sends a
RST_STREAM frame, data outstanding on that stream SHOULD NOT be retransmitted,
since subsequent data on this stream is expected to not be delivered by the
receiver.</t>
  <t>ACK and PADDING frames MUST NOT be retransmitted.  ACK frames
containing updated information will be sent as described in <xref target="frame-ack"/>.</t>
  <t>STOP_SENDING frames MUST be retransmitted, unless the stream has become closed
in the appropriate direction.  See <xref target="solicited-state-transitions"/>.</t>
  <t>All other frames MUST be retransmitted.</t>
</list></t>

<t>Upon detecting losses, a sender MUST take appropriate congestion control action.
The details of loss detection and congestion control are described in
<xref target="QUIC-RECOVERY"/>.</t>

<t>A packet MUST NOT be acknowledged until packet protection has been successfully
removed and all frames contained in the packet have been processed.  For STREAM
frames, this means the data has been queued (but not necessarily delivered to
the application).  This also means that any stream state transitions triggered
by STREAM or RST_STREAM frames have occurred. Once the packet has been fully
processed, a receiver acknowledges receipt by sending one or more ACK frames
containing the packet number of the received packet.</t>

<t>To avoid creating an indefinite feedback loop, an endpoint MUST NOT 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="stream-states" title="Life of a Stream">

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>If an endpoint is no longer interested in the data being received, it MAY send a
STOP_SENDING frame on a stream in the “open” or “half-closed (local)” state to
prompt closure of the stream in the opposite direction.  This typically
indicates that the receiving application is no longer reading from the stream,
but is not a guarantee that incoming data will be ignored.</t>

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

<t>Upon receipt of a STOP_SENDING frame on a stream in the “open” or “half-closed
(remote)” states, an endpoint MUST send a RST_STREAM with an error code of
QUIC_RECEIVED_RST.  If the STOP_SENDING frame is received on a stream that is
already in the “half-closed (local)” or “closed” states, a RST_STREAM frame MAY
still be sent in order to cancel retransmission of previously-sent STREAM
frames.</t>

<t>While STOP_SENDING frames are retransmittable, an implementation MAY choose not
to retransmit a lost STOP_SENDING frame if the stream has already been closed
in the appropriate direction since the frame was first generated.
See <xref target="packetization"/>.</t>

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

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

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

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

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

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

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

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

<t>An endpoint MUST NOT send data on any stream without ensuring that it is within
the data limits set by its peer.  The cryptographic handshake stream, Stream 0,
is exempt from the connection-level data limits established by MAX_DATA.  Stream
0 is still subject to stream-level data limits and MAX_STREAM_DATA.</t>

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

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

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

<t>QUIC does not provide frames for exchanging prioritization information.  Instead
it relies on receiving priority information from the application that uses QUIC.
Protocols that use QUIC are able to define any prioritization scheme that suits
their application semantics.  A protocol might define explicit messages for
signaling priority, such as those defined in HTTP/2; it could define rules that
allow an endpoint to determine priority based on context; or it could leave the
determination to the application.</t>

<t>A QUIC implementation SHOULD provide ways in which an application can indicate
the relative priority of streams.  When deciding which streams to dedicate
resources to, QUIC SHOULD use the information provided by the application.
Failure to account for priority of streams can result in suboptimal performance.</t>

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

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

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

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

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

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

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

<t>A 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 FLOW_CONTROL_ERROR error
(<xref target="error-handling"/>) if the peer violates the advertised connection or stream
data limits.</t>

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

<t>A receiver advertises credit for a stream by sending a MAX_STREAM_DATA frame
with the Stream ID set appropriately. A receiver could use the current offset of
data consumed to determine the flow control offset to be advertised.  A receiver
MAY send MAX_STREAM_DATA frames in multiple packets in order to make sure that
the sender receives an update before running out of flow control credit, even if
one of the packets is lost.</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>The final offset is the count of the number of octets that are transmitted on a
stream.  For a stream that is reset, the final offset is carried explicitly in
the RST_STREAM frame.  Otherwise, the final offset is the offset of the end of
the data carried in STREAM frame marked with a FIN flag.</t>

<t>An endpoint will know the final offset for a stream when the stream enters the
“half-closed (remote)” state.  However, if there is reordering or loss, an
endpoint might learn the final offset prior to entering this state if it is
carried on a STREAM frame.</t>

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

<t>Once a final offset for a stream is known, it cannot change.  If a RST_STREAM or
STREAM frame causes the final offset to change for a stream, an endpoint SHOULD
respond with a FINAL_OFFSET_ERROR error (see <xref target="error-handling"/>).  A receiver
SHOULD treat receipt of data at or beyond the final offset as a
FINAL_OFFSET_ERROR error, even after a stream is closed.  Generating these
errors is not mandatory, but only because requiring that an endpoint generate
these errors also means that the endpoint needs to maintain the final offset
state for closed streams, which could mean a significant state commitment.</t>

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

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

<t>The most appropriate error code (<xref target="error-codes"/>) SHOULD be included in the
frame that signals the error.  Where this specification identifies error
conditions, it also identifies the error code that is used.</t>

<t>A stateless reset (<xref target="stateless-reset"/>) is not suitable for any error that can
be signaled with a CONNECTION_CLOSE or RST_STREAM frame.  A stateless reset MUST
NOT be used by an endpoint that has the state necessary to send a frame on the
connection.</t>

<section anchor="connection-errors" title="Connection Errors">

<t>Errors that result in the connection being unusable, such as an obvious
violation of protocol semantics or corruption of state that affects an entire
connection, MUST be signaled using a CONNECTION_CLOSE frame
(<xref target="frame-connection-close"/>). An endpoint MAY close the connection in this
manner, even if the error only affects a single stream.</t>

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

<t>An endpoint that chooses not to retransmit packets containing CONNECTION_CLOSE
risks a peer missing the first such packet.  The only mechanism available to an
endpoint that continues to receive data for a terminated connection is to use
the stateless reset process (<xref target="stateless-reset"/>).</t>

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

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

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

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

<t>Some application protocols make other streams critical to that protocol.  An
application protocol does not need to inform the transport that a stream is
critical; it can instead generate appropriate errors in response to being
notified that the critical stream is closed.</t>

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

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

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

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

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

<t><list style="hanging">
  <t hangText='NO_ERROR (0x80000000):'>
  An endpoint uses this with CONNECTION_CLOSE to signal that the connection is
being closed abruptly in the absence of any error.  An endpoint uses this with
RST_STREAM to signal that the stream is no longer wanted or in response to the
receipt of a RST_STREAM for that stream.</t>
  <t hangText='INTERNAL_ERROR (0x80000001):'>
  The endpoint encountered an internal error and cannot continue with the
connection.</t>
  <t hangText='CANCELLED (0x80000002):'>
  An endpoint sends this with RST_STREAM to indicate that the stream is not
wanted and that no application action was taken for the stream.  This error
code is not valid for use with CONNECTION_CLOSE.</t>
  <t hangText='FLOW_CONTROL_ERROR (0x80000003):'>
  An endpoint received more data than it permitted in its advertised data limits
(see <xref target="flow-control"/>).</t>
  <t hangText='STREAM_ID_ERROR (0x80000004):'>
  An endpoint received a frame for a stream identifier that exceeded its
advertised maximum stream ID.</t>
  <t hangText='STREAM_STATE_ERROR (0x80000005):'>
  An endpoint received a frame for a stream that was not in a state that
permitted that frame (see <xref target="stream-states"/>).</t>
  <t hangText='FINAL_OFFSET_ERROR (0x80000006):'>
  An endpoint received a STREAM frame containing data that exceeded the
previously established final offset.  Or an endpoint received a RST_STREAM
frame containing a final offset that was lower than the maximum offset of data
that was already received.  Or an endpoint received a RST_STREAM frame
containing a different final offset to the one already established.</t>
  <t hangText='FRAME_FORMAT_ERROR (0x80000007):'>
  An endpoint received a frame that was badly formatted.  For instance, an empty
STREAM frame that omitted the FIN flag, or an ACK frame that has more
acknowledgment ranges than the remainder of the packet could carry.  This is a
generic error code; an endpoint SHOULD use the more specific frame format
error codes (0x800001XX) if possible.</t>
  <t hangText='TRANSPORT_PARAMETER_ERROR (0x80000008):'>
  An endpoint received transport parameters that were badly formatted, included
an invalid value, was absent even though it is mandatory, was present though
it is forbidden, or is otherwise in error.</t>
  <t hangText='VERSION_NEGOTIATION_ERROR (0x80000009):'>
  An endpoint received transport parameters that contained version negotiation
parameters that disagreed with the version negotiation that it performed.
This error code indicates a potential version downgrade attack.</t>
  <t hangText='PROTOCOL_VIOLATION (0x8000000A):'>
  An endpoint detected an error with protocol compliance that was not covered by
more specific error codes.</t>
  <t hangText='QUIC_RECEIVED_RST (0x80000035):'>
  Terminating stream because peer sent a RST_STREAM or STOP_SENDING.</t>
  <t hangText='FRAME_ERROR (0x800001XX):'>
  An endpoint detected an error in a specific frame type.  The frame type is
included as the last octet of the error code.  For example, an error in a
MAX_STREAM_ID frame would be indicated with the code (0x80000106).</t>
</list></t>

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

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

<t>An attacker receives an STK from the server and then releases the IP address on
which it received the STK.  The attacker may, in the future, spoof this same
address (which now presumably addresses a different endpoint), and initiate a
0-RTT connection with a server on the victim’s behalf.  The attacker then spoofs
ACK frames to the server which cause the server to potentially drown the victim
in data.</t>

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

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

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

<t>The attacks commonly known as Slowloris <xref target="SLOWLORIS"/> try to keep many
connections to the target endpoint open and hold them open as long as possible.
These attacks can be executed against a QUIC endpoint by generating the minimum
amount of activity necessary to avoid being closed for inactivity.  This might
involve sending small amounts of data, gradually opening flow control windows in
order to control the sender rate, or manufacturing ACK frames that simulate a
high loss rate.</t>

<t>QUIC deployments SHOULD provide mitigations for the Slowloris attacks, such as
increasing the maximum number of clients the server will allow, limiting the
number of connections a single IP address is allowed to make, imposing
restrictions on the minimum transfer speed a connection is allowed to have, and
restricting the length of time an endpoint is allowed to stay connected.</t>

</section>
<section anchor="stream-fragmentation-and-reassembly-attacks" title="Stream Fragmentation and Reassembly Attacks">

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

<t>The attack is mitigated if flow control windows correspond to available
memory.  However, some receivers will over-commit memory and advertise flow
control offsets in the aggregate that exceed actual available memory.  The
over-commitment strategy can lead to better performance when endpoints are well
behaved, but renders endpoints vulnerable to the stream fragmentation attack.</t>

<t>QUIC deployments SHOULD provide mitigations against the stream fragmentation
attack.  Mitigations could consist of avoiding over-committing memory, delaying
reassembly of STREAM frames, implementing heuristics based on the age and
duration of reassembly holes, or some combination.</t>

</section>
<section anchor="stream-commitment-attack" title="Stream Commitment Attack">

<t>An adversarial endpoint can open lots of streams, exhausting state on an
endpoint.  The adversarial endpoint could repeat the process on a large number
of connections, in a manner similar to SYN flooding attacks in TCP.</t>

<t>Normally, clients will open streams sequentially, as explained in <xref target="stream-id"/>.
However, when several streams are initiated at short intervals, transmission
error may cause STREAM DATA frames opening streams to be received out of
sequence.  A receiver is obligated to open intervening streams if a
higher-numbered stream ID is received.  Thus, on a new connection, opening
stream 2000001 opens 1 million streams, as required by the specification.</t>

<t>The number of active streams is limited by the concurrent stream limit transport
parameter, as explained in <xref target="stream-concurrency"/>.  If chosen judisciously, this
limit mitigates the effect of the stream commitment attack.  However, setting
the limit too low could affect performance when applications expect to open
large number of streams.</t>

</section>
</section>
<section anchor="iana-considerations" title="IANA Considerations">

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

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

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

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

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

<t>The nominated expert(s) verify that a specification exists and is readily
accessible.  The expert(s) are encouraged to be biased towards approving
registrations unless they are abusive, frivolous, or actively harmful (not
merely aesthetically displeasing, or architecturally dubious).</t>

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

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

</section>
</section>


  </middle>

  <back>

    <references title='Normative References'>

<reference anchor="QUIC-RECOVERY" >
  <front>
    <title>QUIC Loss Detection and Congestion Control</title>
    <author initials="J." surname="Iyengar" fullname="Jana Iyengar" role="editor">
      <organization>Google</organization>
    </author>
    <author initials="I." surname="Swett" fullname="Ian Swett" role="editor">
      <organization>Google</organization>
    </author>
    <date year="2017" month="August"/>
  </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="August"/>
  </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="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="I-D.ietf-tls-tls13">
<front>
<title>The Transport Layer Security (TLS) Protocol Version 1.3</title>

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

<date month='July' day='3' year='2017' />

<abstract><t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t></abstract>

</front>

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



<reference  anchor="RFC3629" target='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='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="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="RFC2104" target='http://www.rfc-editor.org/info/rfc2104'>
<front>
<title>HMAC: Keyed-Hashing for Message Authentication</title>
<author initials='H.' surname='Krawczyk' fullname='H. Krawczyk'><organization /></author>
<author initials='M.' surname='Bellare' fullname='M. Bellare'><organization /></author>
<author initials='R.' surname='Canetti' fullname='R. Canetti'><organization /></author>
<date year='1997' month='February' />
<abstract><t>This document describes HMAC, a mechanism for message authentication using cryptographic hash functions. HMAC can be used with any iterative cryptographic hash function, e.g., MD5, SHA-1, in combination with a secret shared key.  The cryptographic strength of HMAC depends on the properties of the underlying hash function.  This memo provides information for the Internet community.  This memo does not specify an Internet standard of any kind</t></abstract>
</front>
<seriesInfo name='RFC' value='2104'/>
<seriesInfo name='DOI' value='10.17487/RFC2104'/>
</reference>



<reference  anchor="RFC5869" target='http://www.rfc-editor.org/info/rfc5869'>
<front>
<title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
<author initials='H.' surname='Krawczyk' fullname='H. Krawczyk'><organization /></author>
<author initials='P.' surname='Eronen' fullname='P. Eronen'><organization /></author>
<date year='2010' month='May' />
<abstract><t>This document specifies a simple Hashed Message Authentication Code (HMAC)-based key derivation function (HKDF), which can be used as a building block in various protocols and applications.  The key derivation function (KDF) is intended to support a wide range of applications and requirements, and is conservative in its use of cryptographic hash functions.  This document is not an Internet  Standards Track specification; it is published for informational  purposes.</t></abstract>
</front>
<seriesInfo name='RFC' value='5869'/>
<seriesInfo name='DOI' value='10.17487/RFC5869'/>
</reference>



<reference  anchor="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-04" title="Since draft-ietf-quic-transport-04">

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

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

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

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

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

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

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

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

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

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

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

</section>
</section>


  </back>

<!-- ##markdown-source:
H4sIAOHTk1kAA+y9a3vcxpUu+r1+BUb6EDK7m2JTF8vyZDKMKMXckSVtkXZO
Ho9HBrvRJEbdjQ6AJsXIOr/9rHutAtCkPLGy/WSO9s5YIoFCXVat+3rXeDwO
bdkuiifZnf/z7fHTJ9lh9u3R6/Ef8qaYZd9sFm25XhTv4e/5apadFNNNXWSn
db5q1lXd3gn52VldXD7J8N348+x1XbXVtFqEWTVd5UsYfVbn83ZcFu18/NdN
OR23+ux4kbdF04YZ/OdJdrA/+WK8/zhM4V/nVX39JGvaWSjX9ZOsrTdNe7C/
/+X+QcjrIn8SvxeuqvrdeV1t1jyTEJoW5vs2X1QrGPS6aMK6fJJ9D3MaZQ28
UBfzBv52veS/wCyX+Xpdrs5/CCHftBdV/SRk2Rj+l2XlqnmS/e+97Pi6WJ3n
Nf2M1/S/81We/Liqz59kf6yq80VB/y6Webl4kv1XXf77Of10b1ot6Td1hVte
zMq2qtMvfbOXnV5Uy6ZauS99k9dtuUp+Qd/6pvpbuVjk/mNLenSv5Uf//Rx/
OvzZsKrqZd6Wl8WTAL/FjRu/efb01XfP3vzlCT3uKSN7UTVNdlS0xbQtqxXR
w9NqdQ5nh/+Ev7Yw+h16Lz1L/ElT1GXRlKt5xSNn2fGqLepV0Y6PkDL6BFIX
0+qyqK/p8Xgm+Gcs/x0+mxvOZ+iMBk5j4BvHe9nJVdG2nS8c56vOz28dXnf6
9MVJusnfwvacuzv0Ir8uar5yZXud7cALu1lb6SXEQX653W4Xze0b3SHNG8lz
kEQ/ba9P4DMbmGz3OE8K2O3Ob+gTzep+Pduy27gJnsqfHb558Zfx0bOT4z++
7BP5k4TlxbN4BZSIfPHO0CYZFb6pmnflapYeyv3x5GAMLIs+ldfnBez+nYu2
XTdP7t0DrrB3vrg3++a79nl5B+d38uLVn1+8enPcIY4/Fwu4wwWd/6K6WlR1
2ezt7d0wnzcwn5NV/q7IvoZVFKtkVvtfjvcf+Snxuzavq+JsL6+nF7Bre7DF
+O97sJaH+/fhfw8fPL7/+B4+Ck9e5HvTd0Xd0GONTu0erCWMx+MsP2uA00/b
EE4vygYZ7WZZrNpsVszLVdFk7UWRTSsg52pOfydOY7IhW4sc2cuy5P0wK5pp
XZ7BCNNqtRKWBKwoP1uUzQU+MsrWOcyszfj8R9lSTxavGXKvuliU+Vm5gNu1
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
eokMGdRfQS3kU+JpbpnsnQn0ZRXyuYo3uCo3uKqHOpGofXL1VrUWj2EOHa8n
XSb48vCgV264kC0FQVaPMyrb1Mng58Ti1ChlkEBRPlO/PKMinewD/N248e+E
95msI2PNPS+hzBqrPRF9znQYODpdnw548z1vvaF96rZdVtBca5FNDTlhueUr
XHcSeegiAf0gewIuAdvbRXNjWqoWNFOnqYvYH1x41a0rSG/JedeirIlVPRYM
KvWOsLxLjtObezmwy9LIlBFH8uB7y2PuQd60cDNjoEEqQOuN+oWsVRwQ0ALc
BZ8eX5yPoYUxXNnRCCAW0UrKD9U2yfe+N+BxW91nEZOAylkJsHANeRhIe6My
Z+eZDgPh1VYJ6ilaFMg0nH0Ue0F0p3hBjFBn6+gCCq80NBvme1WuCqq4PKNi
iMxRbOXe0ySOnPUk6jh5qv9rSe4S8RfUaVrVYdiS5mCF9QzVwHKwmlgGszQg
7QZpN7sQmgKsitw0HldfXpH4FltpUi41Lri7mJeTKk6z1WMZeA+1D2QaVQ/E
4edALJW44KobZRA0VptrpR1vCuvEM+KNbRZLbsJ8hmxSLNXgMr5r9mzDs6p5
cooHarMgt8XP4uwQdCVuiRukilgNLJOvINmQXOUkcbugbFHXW/FuOw+lmMin
e2+7nBp5NLtzrpj8mLdZ7pBbPOx8uYga3bih/FDGDkm8tFS3RRf29ZATFnon
bBDWxbVS6wWdNKUy1c0hei4foqtmap6wfhvlzHzU5mxhl2Oi2baBMco0Xk7T
uEF6hS0FPy7VTG5LhFaH0GIOGFe2qzgp2I3Ucc1pkmjc06Wqkr02QwrdimOB
EbiIHN+1i4q9qXBk+nIiUXB/qKOewwOK13F8q5m3mjryg0qH2G4nKqGC44vU
XZLrxUL+llb5IP2fHAJQKufLWbjPeeCuMjWZ1EFlBBFy/4jrKazgBlER7sHe
HdcU/EtF5l8KHXyYEPeA6Kcw8UhklVA31Gvv1jQVIglatSj1dxWXSbdM0T03
mlodE66/GfcOTxXVX+iEhPhu0dMLsg7qyixI2IGlGBVkuCGwDqlH1w0Zzghs
uhDiYMx3JGYosOjEYpQM+qhEtAutoDIVpJz06rIBOUOcyqo9rwCdkeqwuAJN
X0+FYSVuMVJa37lWXrvLtFQ+7mCMlAg9BXYz1RoqYJBd9PXta4UCiT3L5L6V
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
15jW2Aempo+y9semIS9MFCkvix/m0SAr9u5iO3+NU3J9V7xq5hdRexrx7IRV
s/O6mkSx9jOJ21nzYVTsRZlILNs/z6PQO49PN8XPy2n9flTsTij1viTHz90o
uBHGLzRnZ3XU6a/i5T4qTsrFHZW1vKreX9En9q6I5T3+/5oXo5DFOC5j74rT
Kh6ORT0Kv9WUqB2FX1sT41P8XlRPZnVTxD9QntsobqM4Ne+L3ykrN47DLeSo
eEVL9Xszp74Vr+N4/yhJYr+KX/jPK/1nvLiL/6yrS6FlKXZz/7LcmsBzzd7D
xJkszSh3KgBBJ6vpDRsWV+VNd434tosNJhv9ZZwFctf9EP/9j2o6itZ2fLHY
v6ivadbjBMbrryneVg2PLN4VZR310Hoyac6vRuEk/iPOZVRzfqv/Xt6V72Nb
V7NSOEl3yVXK81LNp1Gb/LbLLYJSrLN4jNlJcx1/yURbHN37QLGVJZMyf0At
rvZ8mdIMAvQECieZ7y4qZef/u64WF982c9AT8skY8++JZei6Xl7z366jasEU
xKQFfFscLbkOFE0u6SDTKRT0PaTyvWkuQ/j34i9/iXpZsT8hvsNv2uKwWVQv
//KX4i0HHAmAAQ5LB620hEj01bwGZWwN0BWNl6sQ0akhWB3x2mAQy+mUrTQK
n8GWwCag3qf0o6kUEmzihiXRdCNlc5CgPi8vFmOaG54NZzqsbUWRF8/+Yt5M
ludD5dlGWYCbnP0sn8FhmBECPXm8vrP9NDZ3zLMxKX482v1994/vV6DGETNh
5GGtqVaX86j0k/LTXi0XBCMgONrjnRc7aJa6iMBtMqoy9MnjFzuj4vH6s2f0
3+db8b8b6+v07m8y1QwCEU2SVWZys3wT9VZaPmoHix6HsrHuhyJLlYrdDAMz
2EdyWN2eVLxXT2sONAkpN49le+sZtbsXbUMrBFaVmhvwqEM69oje2F6jN95i
xyP/g0GEt720ENovDC6sMaVa6ayMW+RJnApZHSvyohVDZCq6ucpx5jfWUm/N
zM39gXBBXZdE/EbvbD/biPO+/Yzn78Aqvnm/v3ONx9++kTo4uy7eKpV6ahex
JZBD/PLOFvpNnXtBn1jMlzPCI3RUGtZvZ6WQfA7oPLGBbW6gD+FNlFedwCQR
kJBnq2DAyOPNzbU41M2N59TMr2DojEYLcUQrPvqnn1+9Hu9/vInTPH5Df0Ik
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
fIwJh6iLL+eUYxpvvM7D/weLaA9xzU0CAA==

-->

</rfc>

